
    :root {
      --primary: #E52B12;
      --primary-dark: #be123c;
      --text: #1f2937;
      --muted: #6b7280;
      --success: #16a34a;
      --bg: #ffffff;
      --footer-bg: #000000;
      --purple: #ff00ff;
    }

    * { box-sizing: border-box; }

    body {
      margin: 0;
      font-family: system-ui, -apple-system, Segoe UI, Roboto, Ubuntu, Helvetica, Arial, sans-serif;
      background: var(--bg);
      color: var(--text);
    }

    .container {
      max-width: 1100px;
      margin: 0 auto;
      padding: 16px;
    }

    /* NAV - mobile first */
    nav {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 56px;
      background: #000;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 0 16px;
      z-index: 1000;
    }
    nav .logo {
      font-size: 18px;
      font-weight: 800;
      color: #ffffff; /* branco normal */
      cursor: pointer;
      transition: color .25s;
      text-decoration: none;
    }
    nav .logo:hover { color: var(--primary); } /* vermelho no hover */
    nav ul {
      display: flex;
      list-style: none;
      gap: 14px;
      margin: 0;
      padding: 0;
    }
    nav ul li a {
      color: #fff;
      text-decoration: none;
      font-size: 14px;
      font-weight: 600;
      padding-bottom: 3px;
      transition: all .25s;
    }
    nav ul li a:hover {
      color: var(--primary);
      border-bottom: 2px solid var(--primary);
    }

    /* Espaço para nav + stripe */
    .spacer { height: calc(56px + 60px); } /* nav + stripe approx on mobile */

    /* STRIPE DE OFERTA — Ajustada para mobile e tablet */
.promo-stripe {
  position: fixed;
  top: 56px;
  left: 0;
  width: 100%;
  background: var(--purple);
  color: #ffffff;
  padding: 6px 10px;            /* permite 2 linhas */
  min-height: 48px;             /* aumenta altura mínima */
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.25;            /* evita cortar o texto */
  z-index: 999;                 /* garantir que fica acima de tudo */
  white-space: normal;          /* permite quebra de linha */
}

/* TABLET */
@media (min-width: 768px) {
  .promo-stripe {
    font-size: 18px;
    min-height: 50px;
    padding: 8px 16px;
    top: 60px; /* combina com nav maior */
  }
}


    /* HERO - mobile first */
    header.hero {
      display: flex;
      flex-direction: column;
      gap: 24px;
      align-items: center;
      padding: 24px 0;
    }
    .hero-text { text-align: center; }
    .hero h1 {
      margin: 6px 0 10px;
      line-height: 1.05;
      font-weight: 800;
    }
    .bf span.black { color: #000; }
    .bf span.red { color: var(--primary); }

    /* HERO text */

/* MOBILE ONLY — Make "Black Friday" stronger and more visible */
@media (max-width: 480px) {
  .hero h1 .bf {
    font-weight: 900;
    letter-spacing: -1px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.25);
  }
}

    .hero h1 .bf {
      display: block;
      font-size: clamp(72px, 12vw, 144px);
      letter-spacing: .5px;
    }
    .hero h1 .title {
      display: block;
      font-size: clamp(28px, 4.5vw, 48px);
      color: var(--primary);
    }
    .edition {
      display: block;
      font-size: clamp(16px, 2vw, 22px);
      color: var(--muted);
      margin-top: 6px;
      font-weight: 500;
    }

    .price {
      display: flex;
      justify-content: center;
      align-items: baseline;
      gap: 8px;
      margin: 8px 0 10px;
    }
    .old {
      text-decoration: line-through;
      color: #9ca3af;
      font-size: 26px;
      font-weight: 500;
    }
    .new {
      color: var(--success);
      font-size: 36px;
      font-weight: 800;
    }

    /* CTA */
    .btn-primary {
      background: var(--primary);
      color: #fff;
      padding: 14px 20px;
      border-radius: 12px;
      font-size: 16px;
      font-weight: 700;
      text-decoration: none;
      border: none;
      cursor: pointer;
      width: 100%;
      max-width: 460px;
      display: inline-block;
      text-align: center;
    }
    .btn-primary:hover { background: var(--primary-dark); }

    .btn-primary .subline {
      display: block;
      font-size: 13px;
      margin-top: 4px;
    }

    /* Loading state for button */
    .btn-primary.loading {
      position: relative;
      opacity: 0.9;
      cursor: wait;
    }
    .btn-primary.loading::before {
      content: "";
      display: inline-block;
      width: 16px;
      height: 16px;
      border-radius: 999px;
      border: 2px solid rgba(255,255,255,0.6);
      border-top-color: #ffffff;
      margin-right: 8px;
      vertical-align: middle;
      animation: spin 0.7s linear infinite;
    }

    @keyframes spin {
      to { transform: rotate(360deg); }
    }

    /* COUNTDOWN */
    .countdown {
      display: flex;
      justify-content: center;
      gap: 16px;
      margin-top: 18px;
    }
    .time-box { text-align: center; min-width: 60px; }
    .time-number {
      font-size: 22px;
      font-weight: 800;
      color: var(--primary);
      display: block;
    }
    .time-label {
      font-size: 11px;
      color: var(--muted);
      display: block;
      margin-top: 4px;
    }

    .hero picture,
    .hero img {
      width: 100%;
      max-width: 320px;
      border-radius: 12px;
      display: block;
    }


        header { background-color: transparent; color: white; padding: 20px; display: flex; justify-content: space-between; align-items: center; }
        header nav a { margin-left: 20px; color: white; text-decoration: none; font-weight: bold; }
        .contador-banner { background: #ff00ff; color: white; text-align: center; padding: 15px; font-size: 22px; font-weight: bold; }
        .contador { display: flex; justify-content: center; gap: 40px; margin: 20px 0; }
        .contador-item { text-align: center; }
        .contador-item span.num { font-size: 40px; font-weight: bold; }
        
        .carousel-container {
          width: 100%;
          text-align: center;
          margin-top: 40px;
        }
        .carousel-wrapper {
          max-width: 1000px;
          margin: 0 auto;
          position: relative;
          overflow: hidden;
        }
        .carousel-track {
          display: flex;
          will-change: transform;
        }
        .carousel-item {
          flex: 0 0 100%;
          padding: 10px;
        }
        .carousel-item img {
          width: 100%;
          height: 260px;
          object-fit: cover;
          border-radius: 12px;
        }
        /* hide arrows but keep them in DOM */
        .carousel-btn {
          display: none;
        }
        .carousel-dots {
          margin-top: 10px;
        }
        .carousel-dots span {
          display: inline-block;
          width: 10px;
          height: 10px;
          margin: 5px;
          background: #87bfff;
          border-radius: 50%;
          cursor: default;
        }
        .carousel-dots .active {
          background: #0062ff;
          width: 12px;
          height: 12px;
        }

    /* TEXTO APÓS CAPA, DENTRO DA ÁREA DE BENEFÍCIOS */
    .hero-extra {
      margin-top: 16px;
      font-size: 16px;
      line-height: 1.5;
      text-align: center;
      color: var(--text);
      max-width: 900px;
    }
    .hero-extra-purple {
      color: var(--purple);
      font-weight: 800;
    }

    .benefits-intro {
      text-align: center;
      font-size: 26px;      /* 2x maior */
      line-height: 1.6;
      color: var(--muted);  /* cinza */
      max-width: 900px;
      margin: 0 auto 36px;
      font-weight: 400;
    }

    .benefits-intro .hero-extra-purple {
      color: var(--muted);  /* força cinza */
      font-weight: 400;
    }

    /* BENEFÍCIOS + FORM */
    .benefits-form-section {
      margin: 40px 0 60px;
      padding: 40px 20px;
      border-radius: 18px;
      background: #fff1e5;
    }

    .benefits {
      display: flex;
      flex-direction: column;
      gap: 18px;
      margin-bottom: 32px;
    }

    .card {
      background: #fff;
      border: 1px solid #e8e8e8;
      border-radius: 18px;
      padding: 20px;
      text-align: center;
      transition: all .25s ease;
    }
    .card:hover {
      outline: 3px solid var(--primary);
      background: #fff7f4;
      transform: translateY(-3px);
    }
    .card h3 {
      margin: 0 0 10px;
      font-size: 18px;
      font-weight: 700;
      color: var(--primary);
    }
    .card p {
      margin: 0;
      font-size: 18px;
      line-height: 1.5;
      color: #4b5563;
    }

    /* FORM + CHEESECAKE LADO A LADO */
    #registo.form-cheesecake {
      display: flex;
      flex-direction: column;
      gap: 24px;
      margin-top: 24px;
    }

    .form-image {
      width: 100%;
      height: 100%;
    }

    .form-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;       /* Faz a imagem preencher toda a área */
      object-position: center; /* Centraliza */
      border-radius: 16px;
      display: block;
    }

    .form-wrap {
      background: #fff;
      border: 1px solid #f3f4f6;
      border-radius: 16px;
      padding: 20px 14px 24px;
      text-align: center;
    }

    .promo-title {
      color: var(--primary);
      font-size: 20px;
      font-weight: 600;
      margin-bottom: 22px;
      text-decoration: underline;
    }

    .form-wrap h2 {
      margin-top: 0;
      font-size: 24px;
      font-weight: 700;
      color: #000;
      margin-bottom: 26px;
    }

    .form-grid {
      display: flex;
      flex-direction: column;
      gap: 10px;
      margin: 24px 0 24px;
    }

    .form-grid input {
      padding: 12px;
      border-radius: 10px;
      border: 1px solid #e5e7eb;
      font-size: 15px;
      width: 100%;
    }

    .note {
      margin-top: 10px;
      font-size: 12px;
      color: var(--muted);
    }

    /* FAQ */
    .faq-section {
      margin: 40px 0 32px;
      padding: 0 4px;
    }
    .faq-section h2 {
      text-align: center;
      margin-bottom: 10px;
      color: var(--primary);
      font-size: 32px;
      font-weight: 700;
    }
    .faq-subtitle {
      text-align: center;
      color: var(--muted);
      margin-top: 14px;
      margin-bottom: 22px;
      font-size: 18px;
      font-weight: 500;
    }

    .faq-item {
      border-bottom: 1px solid #e5e7eb;
      padding: 12px 4px;
      cursor: pointer;
      text-align: center;
    }
    .faq-question {
      font-weight: 700;
      font-size: 18px;
      text-align: center;
    }

    .faq-answer {
      display: none;
      font-size: 18px;
      color: var(--muted);
      margin-top: 10px;
      text-align: center;
      line-height: 1.6;
    }

    /* FOOTER */
    footer {
      background: var(--footer-bg);
      padding: 40px 0 56px;
      text-align: center;
      color: #6b7280;
    }

    .social-icons {
      display: flex;
      justify-content: center;
      flex-wrap: wrap;
      gap: 12px;
      margin-bottom: 32px;
    }
    .social-icons a {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 40px;
      height: 40px;
      border-radius: 999px;
      background: #fff;
      border: 1px solid #f3f4f6;
      text-decoration: none;
    }
    .social-icons svg {
      width: 20px;
      height: 20px;
      fill: var(--primary);
    }

    .about-title {
      max-width: 900px;
      margin: 0 auto 20px;
      font-size: 16px;
      font-weight: 700;
      color: #e4e4e4;
    }

    .about {
      max-width: 900px;
      margin: 0 auto 24px;
      font-size: 14px;
      color: #e4e4e4;
      line-height: 1.55;
      padding: 0 16px;
    }

    .footer-links {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 14px;
      margin: 10px 0 26px;
      padding: 0 12px;
    }

    .footer-link {
      color: #e4e4e4;
      text-decoration: none;
      font-size: 14px;
      transition: color .25s;
    }

    .footer-link:hover {
      color: var(--primary);
      text-decoration: underline;
    }

    .copyright {
      margin-top: 10px;
      font-size: 12px;
      color: var(--purple);
    }

    
    /* TESTIMONIALS */
    .testimonial-section {
    min-height: 100px;
      margin: 40px auto 60px;
      padding: 0 16px;
      max-width: 1100px;
    
  
}
    .testimonial-wrapper {
      background: #efeeee;
      border-radius: 20px;
      padding: 48px 16px 52px;
      
    }
    .testimonial-title {
      text-align: center;
      font-size: 24px;
      font-weight: 800;
      color: var(--primary);
      margin: 0 0 24px;
    }
    .testimonial-subtitle {
      text-align: center;
      font-size: 16px;
      color: var(--muted);
      margin: 0 0 46px;
    }
    .testimonial-carousel {
      display: flex;
      align-items: center;
      gap: 10px;
    }
    .testimonial-window {
      overflow: hidden;
      flex: 1;
    }
    .testimonial-track {
      display: flex;
      transition: transform 0.4s ease;
      will-change: transform;
    }
    .testimonial-slide {
      flex: 0 0 100%;
      padding: 4px 2px;
      display: flex;
      flex-direction: column;
      gap: 16px;
      align-items: stretch;
    }
    .testimonial-card {
    min-height: 330px;
      max-width: 360px;
      margin: 0 auto;
      background: #ffffff;
      border-radius: 18px;
      padding: 16px 14px 18px;
      text-align: center;
      
      border: 1px solid #f3f4f6;
    }
    .testimonial-avatar {
      margin-bottom: 10px;
    }
    .testimonial-avatar img {
    object-position: center 20%;
      width: 100px;
      height: 100px;
      border-radius: 999px;
      object-fit: cover;
      display: block;
      margin: 0 auto;
    }
    .testimonial-text {
      font-size: 16px;
      color: #4b5563;
      margin: 0 0 10px;
      line-height: 1.6;
    }
    .testimonial-name {
      font-weight: 700;
      font-size: 14px;
      margin: 0;
    }
    .testimonial-role {
      font-size: 13px;
      color: var(--muted);
      margin: 2px 0 0;
    }
    .testimonial-arrow {
      border: none;
      background: transparent;
      color: var(--primary);
      font-size: 28px;
      cursor: pointer;
      padding: 0 4px;
      line-height: 1;
      display: flex;
      align-items: center;
      justify-content: center;
    }
    .testimonial-arrow:disabled {
      opacity: 0.3;
      cursor: default;
    }
    .testimonial-dots {
      display: flex;
      justify-content: center;
      gap: 8px;
      margin-top: 14px;
    }
    .testimonial-dot {
      width: 9px;
      height: 9px;
      border-radius: 999px;
      border: 1px solid var(--primary);
      background: transparent;
      padding: 0;
      cursor: pointer;
    }
    .testimonial-dot.active {
      background: var(--primary);
    }

    @media (min-width: 768px) {
      .testimonial-wrapper {
        padding: 28px 22px 30px;
      }
      .testimonial-title {
        font-size: 26px;
      }
      .testimonial-subtitle {
        font-size: 15px;
      }
      .testimonial-slide {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
      }
      .testimonial-card {
    min-height: 330px;
        flex: 0 1 calc(50% - 18px);
        margin: 0;
      }
    }

    @media (min-width: 980px) {
      .testimonial-card {
    min-height: 330px;
        flex: 0 1 calc(33.333% - 20px);
      }
    }
/* MODAL BASE (centralizada para não cortar no topo) */
    .modal-overlay {
      position: fixed;
      inset: 0;
      background: rgba(0,0,0,0.65);
      display: none;
      justify-content: center;
      align-items: center;   /* centro vertical */
      padding: 16px;
      z-index: 9999;
    }
    .modal-box {
      background: #fff;
      max-width: 700px;
      width: 100%;
      padding: 20px;
      border-radius: 12px;
      text-align: left;
      max-height: 80vh;
      overflow-y: auto;
    }
    .modal-box h2 {
      margin-top: 0;
      color: var(--primary);
      font-size: 22px;
      font-weight: 700;
    }
    .modal-box p {
      font-size: 14px;
      line-height: 1.5;
      color: #4b5563;
    }
    .modal-close {
      display: inline-block;
      margin-top: 16px;
      background: var(--primary);
      color: #fff;
      padding: 10px 18px;
      border-radius: 8px;
      cursor: pointer;
      font-weight: 600;
      font-size: 14px;
    }

    /* MODAL SUCESSO extra */
    .modal-success-title {
      color: var(--success);  /* verde */
      font-size: 24px;
      font-weight: 800;
      margin-top: 0;
      margin-bottom: 12px;
      text-align: left;
    }
    .modal-success-text {
      font-size: 15px;
      line-height: 1.6;
      margin-bottom: 12px;
    }
    .modal-success-socials {
      display: flex;
      align-items: center;
      gap: 10px;
      margin: 8px 0 14px;
      flex-wrap: wrap;
    }
    .modal-success-socials a {
      display: inline-flex;
      width: 32px;
      height: 32px;
      border-radius: 999px;
      align-items: center;
      justify-content: center;
      background: #fff;
      border: 1px solid #e5e7eb;
      text-decoration: none;
    }
    .modal-success-socials svg {
      width: 18px;
      height: 18px;
      fill: var(--primary);
    }

    /* DESKTOP / TABLET */
    @media (min-width: 768px) {
      nav {
        height: 60px;
        padding: 0 40px;
      }
      nav .logo { font-size: 20px; }
      nav ul li a { font-size: 15px; }

      .promo-stripe {
        top: 60px;
      }

      .spacer { height: calc(60px + 60px); } /* nav + stripe approx */

      header.hero {
        padding: 30px 0;
      }

      .price { gap: 12px; }

      .btn-primary {
        font-size: 18px;
        padding: 16px 24px;
        max-width: 460px;
      }

      .btn-primary .subline { font-size: 15px; }

      .time-number { font-size: clamp(26px, 3vw, 40px); }
      .time-label  { font-size: 13px; }

      .hero picture,
      .hero img { max-width: 380px; }

      .benefits-form-section {
        margin: 40px 0 60px;
        padding: 40px 20px;
      }

      .benefits {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
        gap: 22px;
        margin-bottom: 40px;
      }
      .card { padding: 24px; }

      .promo-title { font-size: 24px; margin-bottom: 28px; }
      .form-wrap h2 { font-size: 32px; margin-bottom: 32px; }

      .form-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
        gap: 12px;
        margin: 32px 0 28px;
      }

      /* cheesecake + form lado a lado */
      #registo.form-cheesecake {
        display: grid;
        grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
        align-items: center;
        gap: 32px;
      }

      .faq-section h2 { font-size: 30px; }

      footer { padding: 60px 0 80px; }
      .social-icons { margin-bottom: 42px; }
      .about-title { font-size: 18px; }
      .about { font-size: 15px; max-width: 900px; margin-bottom: 30px; }
      .footer-links { gap: 20px; margin-bottom: 40px; }
      .footer-link { font-size: 15px; }
      .copyright { font-size: 14px; }

      .modal-box { padding: 28px; }
      .modal-box h2 { font-size: 24px; }
      .modal-success-title { font-size: 26px; }
    }

    @media (min-width: 980px) {
      header.hero {
        display: grid;
        grid-template-columns: 1.1fr 1fr;
        gap: 30px;
        align-items: center;
      }
      .hero-text { text-align: center; }
      .hero picture,
      .hero img { max-width: 440px; }
    }
    
  

    /* Carousel responsive items: 1 mobile, 2 tablet, 3 desktop */
    @media (min-width: 768px) {
      .carousel-item {
        flex: 0 0 50%;
      }
    }

    @media (min-width: 980px) {
      .carousel-item {
        flex: 0 0 33.3333%;
      }
    }

.modal-x {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 22px;
  cursor: pointer;
}

.modal-box {
    position: relative;
    padding-top: 50px !important; /* space for X button */
}

.modal-x {
    position: absolute;
    top: 15px;
    right: 20px;
    width: 28px;
    height: 28px;
    background: #fff;
    border-radius: 50%;
    color: #333;
    font-size: 20px;
    font-weight: bold;
    line-height: 28px;
    text-align: center;
    cursor: pointer;
    
    z-index: 9999;
    transition: transform 0.15s ease;
}

.modal-x:hover {
    transform: scale(1.15);
}



/* Back to Top Button (B2 - Red Circle) */
.back-to-top {
  position: fixed;
  bottom: 25px;
  right: 25px;
  width: 48px;
  height: 48px;
  background: #FF4A4A;
  color: #ffffff;
  border: none;
  border-radius: 50%;
  font-size: 22px;
  font-weight: bold;
  cursor: pointer;
  
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.back-to-top:hover {
  transform: scale(1.15);
}


.testimonial-card img { margin-top: 20px; }


.testimonial-avatar img[src="Testimonial-Carousel-6.jpg"] {
    object-position: center 0% !important;
}

/* Ajuste específico para a imagem Testimonial-Carousel-2.jpg */
.testimonial-avatar img[src="Testimonial-Carousel-2.jpg"] {
    object-position: center 55% !important; /* Sobe ligeiramente */
}



/* FINAL CTA SECTION */
.final-cta-section {
  background: #fff1e5;
  padding: 40px 20px 50px;
  text-align: center;
  border-top: 1px solid #f3d5c4;
  margin-top: 40px;
}

.final-cta-wrapper {
  max-width: 800px;
  margin: 0 auto;
}

.final-cta-title {
  font-size: 26px;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 20px;
}

.final-cta-btn {
  margin-top: 10px;
  width: 100%;
  max-width: 460px;
}

@media (min-width: 768px) {
  .final-cta-section {
    padding: 60px 20px 70px;
  }
  .final-cta-title {
    font-size: 30px;
  }
}

@media (min-width: 980px) {
  .final-cta-title {
    font-size: 34px;
  }
}


.promo-bf-image img {
  width: 90%;
  max-width: 360px;
  height: auto;
  margin: 0 auto;
}

.promo-bf-image {
  width: 100%;
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
}

.promo-bf-image img {
  margin-top: -75px; /* ajusta para tocar o topo */
}


/* FINAL CTA TEXT — DESKTOP & TABLET OVERRIDE */
@media (min-width: 768px) {
  /* --- FINAL CTA TEXT CONTROLS (Black Friday paragraph) ---
   Ajuste aqui font-size, line-height, cores e espaçamento
---------------------------------------------------------- */
.final-cta-paragraph {
    font-size: 20px;
  }
}


/* WhatsApp Share Button Responsive Behavior */
.modal-success-whatsapp-btn {
  display: block;
  margin: 20px auto 18px auto;
  padding: 14px 24px;
  background-color: #25D366;
  color: #ffffff;
  text-decoration: none;
  border-radius: 10px;
  font-size: 16px;
  font-weight: bold;
  max-width: 300px;
  text-align: center;
  white-space: nowrap;
}
@media (max-width: 480px) {
  .modal-success-whatsapp-btn {
    white-space: normal;
    line-height: 1.25;
    padding: 14px 18px;
  }
}
.modal-success-socials {
  display: flex !important;
  justify-content: center;
  gap: 12px;
  margin-top: 10px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.share-whatsapp-main {
  background-color:#25D366;
  color:#fff;
  padding:14px 20px;
  border-radius:12px;
  font-size:18px;
  font-weight:700;
  text-align:center;
  width:100%;
  max-width:460px;
  margin:12px auto;
  display:block;
}



/* WHATSAPP SHARE BUTTON — OPÇÃO 3 */
.whatsapp-share-btn {
  display: block;
  margin: 25px auto;
  padding: 14px 24px;
  background-color: #ffffff;
  color: #25D366;
  border: 2px solid #25D366;
  border-radius: 10px;
  font-size: 18px;
  font-weight: bold;
  text-align: center;
  max-width: 320px;
  text-decoration: none;
  transition: 0.2s ease;
}
.whatsapp-share-btn:hover {
  background-color: #25D366;
  color: #ffffff;
}
@media (max-width: 480px) {
  .whatsapp-share-btn {
    font-size: 16px;
    line-height: 1.3;
    max-width: 280px;
  }
}

/* WHATSAPP SHARE BUTTON — MODAL (OPÇÃO 3) */
.modal-success-whatsapp-btn {
  display: block;
  margin: 22px auto 10px auto;
  padding: 14px 24px;
  background-color: #ffffff;
  border: 2px solid #25D366;
  color: #25D366;
  text-decoration: none;
  border-radius: 12px;
  font-size: 18px;
  font-weight: 700;
  width: 100%;
  max-width: 460px;
  text-align: center;
  line-height: 1.25;
  transition: all 0.2s ease;
}

/* Hover: verde sólido + texto branco + sem borda */
.modal-success-whatsapp-btn:hover {
  background-color: #25D366;
  color: #ffffff;
  border-color: transparent;
}

/* MOBILE — permite 2 linhas, sempre centrado */
@media (max-width: 480px) {
  .modal-success-whatsapp-btn {
    font-size: 16px;
    padding: 16px 20px;
    line-height: 1.3;
  }
}

