:root {
      --cor-principal: #fff;
      --cor-texto: #121212;
      --cor-fundo: #fff;
      --cor-footer: #f5f5f5;
      --cor-section: #e6e6e6;
      --cor-button: #2A99F5;
      --cor-dashed: #dfdfe0;
      --largura-max: 1440px; /* use essa variável consistentemente */
    }

    html {
      scroll-behavior: smooth;
    }

    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      font-family: "Montserrat", Arial, system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
      color: var(--cor-texto);
      background: var(--cor-fundo);
      line-height: 1.6;
    }

    /* NAV */
    .navbar {
      height: 88px;
      width: 100%;
      display: flex;
      align-items: center;
    }

    .nav-inner {
      width: 100%;
      max-width: var(--largura-max);
      margin: 0 auto;
      padding: 0 24px;
      display: flex;
      align-items: center;
      justify-content: space-between;
    }

    .logo {
      width: 240px;
      text-decoration: none;
      color: #111;
    }

    .menu {
      list-style: none;
      display: flex;
      gap: 32px;
      align-items: center;
    }

    .menu a {
      text-decoration: none;
      color: #333;
      font-weight: 500;
      line-height: 1;
      padding: 8px 0;
    }

    /* TYPO / BASE */
    h1 {
      font-size: 48px;
      line-height: 56px;
      font-weight: 400;
      color: #181818;
    }

    h3 {
      text-align: left;
      color: var(--cor-button);
    }

    /* containers */
    .container {
      max-width: var(--largura-max);
      margin: 0 auto;
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      padding: 0 24px;
    }

    /* reparar align-items: left -> use flex-start */
    .container-features {
      max-width: var(--largura-max);
      margin: 0 auto;
      padding: 56px 24px;
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      text-align: center;
    }

    /* HERO */
    .hero {
      color: #fff;
      padding: 32px 0;
    }

    .hero p {
      max-width: 700px;
      font-size: 24px;
      margin-top: 32px;
      margin-bottom: 32px;
      color: var(--cor-texto);
    }

    .hero a {
      background: #fff;
      color: var(--cor-principal);
      padding: 12px 28px;
      border-radius: 6px;
      font-weight: 600;
      text-decoration: none;
      transition: 0.3s;
    }   
    
    
.hero-benefits {
  width: 100%;
  display: flex;
  justify-content: center;
  margin-top: 32px;
}

.benefits-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;

  width: 100%;
  max-width: 560px;
  padding: 0 24px;
}

.benefit-item {
  display: flex;
  align-items: center;
  gap: 14px;

  background: #fbfcfe;
  color: var(--cor-texto);

  padding: 14px 18px;
  border-radius: 12px;

  font-size: 15px;
  font-weight: 500;
  line-height: 1.4;

  border: 1px solid #e0e6eb;
}

.benefit-item img {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.why-vmpp {
  background: #fbfcfe;
  padding: 96px 0;
}

.why-vmpp .container {
  max-width: 820px;
}

.why-title {
  font-size: 36px;
  line-height: 44px;
  font-weight: 500;
  color: var(--cor-texto);
  margin-bottom: 16px;
}

.why-text {
  font-size: 20px;
  line-height: 32px;
  color: #3a3a3a;
  font-weight: 400;
}

.why-text strong {
  color: var(--cor-texto);
  font-weight: 600;
}


.text-gradient {
  background: linear-gradient(
    90deg,
    #2899f5 0%,
    #75bef9 100%
  );
  
  -webkit-background-clip: text;
  background-clip: text;
  
  -webkit-text-fill-color: transparent;
  color: transparent;

  font-weight: 600; /* mantém destaque */
}


/* ---- Price section responsive fixes ---- */
.price .container {
  padding: 48px 24px; /* garante espaçamento interno em mobile/desktop */
  box-sizing: border-box;
  max-width: var(--largura-max);
  margin: 0 auto;
}

/* tipografia responsiva */
.price h1 {
  font-size: clamp(20px, 4.6vw, 34px);
  line-height: 1.1;
  margin-bottom: 16px;
}

.price p {
  font-size: clamp(15px, 3.2vw, 18px);
  margin-top: 12px;
}

/* destaque */
.price h4 {
  font-size: clamp(16px, 3.5vw, 18px);
  margin-top: 16px;
  font-weight: 600;
}

/* video wrapper - usa aspect-ratio quando disponível */
.video-wrap {
  width: 100%;
  margin-top: 24px;
  display: flex;
  justify-content: center; /* centraliza o vídeo */
}

/* inner controla proporção do vídeo */
.video-inner {
  width: 100%;
  max-width: 900px;              /* controla largura máxima no desktop */
  border-radius: 10px;
  overflow: hidden;
  background: #000;
  /* modern browsers */
  aspect-ratio: 16 / 9;
  position: relative;
}

/* fallback para navegadores sem aspect-ratio */
@supports not (aspect-ratio: 16/9) {
  .video-inner {
    /* cria caixa proporcional com padding-top */
    height: 0;
    padding-top: 56.25%; /* 9/16 = 56.25% */
  }
}

/* iframe ocupa toda a área do container proporcional */
.video-inner iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

/* ajustes mobile */
@media (max-width: 520px) {
  .price .container {
    padding: 36px 16px;
  }

  .video-inner {
    max-width: 100%;
    border-radius: 8px;
  }

  .price p, .price h4 {
    line-height: 1.45;
  }
}

/* Responsivo */
@media (max-width: 768px) {
  .why-vmpp {
    padding: 64px 0;
  }

  .why-title {
    font-size: 28px;
    line-height: 36px;
  }

  .why-text {
    font-size: 18px;
    line-height: 28px;
  }
}

    /* FEATURES container adjustments: avoid fixed 1440 width */
    .features {
      background: #fafafa;
    }

    .features .cards {
      width: 100%;
      max-width: var(--largura-max);
      display: flex;
      flex-wrap: wrap;
      gap: 30px;
      justify-content: center;
      margin-top: 40px;
    }

    .card {
      background: #fff;
      padding: 30px;
      border-radius: 10px;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
      flex: 1 1 280px;
      max-width: 320px;
      transition: transform 0.3s;
    }

    .card:hover {
      transform: translateY(-5px);
    }

    footer {
      width: var(--largura-max);
      max-width: 100%;
      margin: 0 auto;
      padding: 30px 20px;
      font-size: 0.9rem;
    }

    .title {
      width: 880px;
    }

    /* RESPONSIVO - pequenas alterações iniciais (mantendo layout desktop igual) */
    @media (max-width: 768px) {
      .hero h1 {
        font-size: 2rem;
      }

      .card {
        max-width: 100%;
      }
    }

    /* YouTube embed */
    .yt-embed {
      position: relative;
      width: 100%;
      max-width: 800px;
      aspect-ratio: 16/9;
      margin: 0 auto;
      cursor: pointer;
      overflow: hidden;
      margin-bottom: 32px;
      border-radius: 8px;
    }

    .yt-embed img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }

    .yt-play {
      position: absolute;
      left: 50%;
      top: 50%;      
    }
   

    .price {
      background-color: var(--cor-section);
      padding: 24px 0;
      width: 100%;
      gap: 24px;
    }

    .parcelas {
      font-size: 24px;
      line-height: 32px;
      font-weight: 900;
    }

    .valor {
      font-size: 64px;
      line-height: 80px;
      font-weight: 900;
    }

    .parcelado {
      display: flex;
      align-items: center;
      gap: 8px;
    }

    .btn-primary {
      display: inline-block;
      padding: 24px 32px;      
      font-size: 16px;
      line-height: 1;
      color: #fff;
      background-color: var(--cor-button);
      border: none;
      border-radius: 50px;
      box-shadow: 0 6px 18px rgba(103, 71, 161, 0.18);
      cursor: pointer;
      transition: transform .12s ease, box-shadow .12s ease, background-color .12s ease;
      font-weight: 600;
      font-family: "Montserrat", Arial, sans-serif;
      -webkit-tap-highlight-color: transparent;
    }

    .btn-zap {
      display: inline-block;
      padding: 16px 32px;
      font-size: 16px;
      line-height: 1;
      color: #fff;
      background-color: #25D366;
      border: none;
      border-radius: 50px;
      box-shadow: 0 6px 18px rgba(103, 71, 161, 0.18);
      cursor: pointer;
      transition: transform .12s ease, box-shadow .12s ease, background-color .12s ease;
      font-weight: 600;
      font-family: "Montserrat", Arial, sans-serif;
      -webkit-tap-highlight-color: transparent;
    }

    .secao-botao {
  display: flex;
  justify-content: center;
  align-items: center;
}

    .limited {
      border-radius: 12px;
      border: 1.5px dashed var(--cor-dashed);
      background-color: var(--cor-principal);
      box-shadow: 0px 8px 30px -16px rgba(13, 13, 14, .2);
      padding: 16px 24px;
      max-width: 57rem;
      margin: 0 auto;
      display: flex;
      font-size: 14px;
      align-items: center;
      text-align: left;
      gap: 3.2rem;
      margin-top: 16px;
    }

    @media (max-width:420px) {
      .btn-primary {
        padding: 0.6rem 1rem;
        font-size: 0.95rem;
      }
    }

    .icon-row {
      display: flex;
      justify-content: center;
      align-items: center;
      gap: 24px;
      flex-wrap: wrap;
      padding: 8px 0px;
      max-width: 900px;
    }

    @media (max-width: 600px) {
      .icon-row {
        gap: 16px;
      }

      .icon-row img {
        width: 48px;
      }
    }

    @media (max-width: 768px) {
      .nav-inner {
        padding: 0 16px;
      }

      .menu {
        gap: 16px;
        font-size: 14px;
        /* allow wrapping so menu doesn't overflow on small screens */
        flex-wrap: wrap;
        justify-content: center;
      }
    }

    .menu-interno {
      display: flex;
      justify-content: flex-start;
      align-items: center;
      flex-wrap: wrap;
      gap: 20px;
      padding: 10px 0;
      font-family: inherit;
    }

    .menu-interno a {
      font-size: 14px;
      font-weight: 400;
      color: #333;
      text-decoration: none;
      transition: color 0.2s ease, transform 0.2s ease;
    }

    .menu-interno a:hover {
      color: #2a99f5;
      transform: translateY(-1px);
    }

    .title-features {
      padding: 24px 0;
      width: 900px;
      font-size: 64px;
      line-height: 80px;
      text-align: left;
    }

    .feature-section {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding-top: 80px;
      gap: 40px;
    }

  

    .feature-text {
      flex: 0 0 50%;
      text-align: left;
    }

    .feature-video {
      flex: 0 0 50%;
    }

    .feature-video video {
      width: 100%;
      height: auto;
      display: block;
      border-radius: 10px;
    }

    .feature-subtitle {
      color: #2a99f5;
      font-weight: 700;
      font-size: 24px;
      letter-spacing: 0.5px;
      margin-bottom: 10px;
      text-transform: uppercase;
    }

    .feature-title {
      font-size: 32px;
      line-height: 45px;
      margin-bottom: 20px;
      color: #111;
    }

    .feature-description {
      font-size: 18px;
      line-height: 32px;
      color: #555;
      margin-bottom: 20px;
    }

    .feature-link {
      color: #2a99f5;
      font-size: 24px;
      line-height: 24px;
      font-weight: 400;
      text-decoration: none;
    }

    .feature-link:hover {
      color: #225d8d;
    }

/* Launch banner - baseado na imagem, fundo azul #2899f5 */
.launch-banner {
  width: 100%;  
  background: linear-gradient(90deg, #2899f5 0%, #1f85e2 100%);
  color: var(--cor-principal);
  padding: 48px;
  box-shadow: 0 6px 24px rgba(16, 97, 171, 0.12);
}

/* inner faz o alinhamento com a .container */
.launch-inner {
  width: 100%;
  max-width: var(--largura-max);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 0 24px;
}

/* Conteúdo textual (esquerda) */
.launch-content {
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1 1 60%;
  min-width: 0; /* para truncar se necessário */
}

/* Título */
.launch-title {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.1px;
  color: var(--cor-principal);
}

/* Lista de benefícios */
.launch-features {
  list-style: none;
  display: flex;
  gap: 16px;
  align-items: center;
  padding: 0;
  margin: 0;
  flex-wrap: wrap;
}

.launch-features li {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.06);
  padding: 10px 14px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 14px;
  color: var(--cor-principal);
  border: 1px solid rgba(255,255,255,0.08);
}

/* Ícones pequenos (use seus SVGs em /img) */
.launch-features img {
  width: 18px;
  height: 18px;
  display: inline-block;
  flex-shrink: 0;
  filter: invert(1) grayscale(1) brightness(2); /* garante ícone claro se for SVG preto */
}

/* Nota / aviso */
.launch-note {
  margin-top: 8px;
  font-size: 13px;
  color: rgba(255,255,255,0.92);
  max-width: 720px;
  line-height: 1.45;
}

/* CTA à direita */
.launch-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 220px;
}

/* Botão outline branco (visual como na imagem) */
.btn-outline {
  display: inline-block;
  padding: 12px 22px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  letter-spacing: 0.6px;
  border: 2px solid rgba(255,255,255,0.9);
  color: var(--cor-principal);
  background: transparent;
  transition: transform .14s ease, box-shadow .14s ease;
  text-align: center;
}

/* Hover/active */
.btn-outline:hover,
.btn-outline:focus {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(16, 97, 171, 0.16);
  outline: none;
}

/* RESPONSIVO: empilha em telas menores */
@media (max-width: 880px) {
  .launch-inner {
    flex-direction: column;
    align-items: stretch;
    padding: 16px;
  }

  .launch-cta {
    margin-top: 8px;
    flex: 0 0 auto;
    align-self: center;
  }

  .launch-features {
    gap: 10px;
  }
}

@media (max-width: 420px) {
  .launch-features li {
    padding: 8px 10px;
    font-size: 13px;
  }

  .btn-outline {
    padding: 10px 18px;
    font-size: 14px;
  }
}





    /* Responsivo: stack para telas pequenas, mantendo desktop igual */
    @media (max-width: 900px) {
      .feature-section {
        flex-direction: column;
        text-align: center;
        padding-top: 32px;
      }

      .feature-text,
      .feature-video {
        flex: 0 0 100%;
        margin-bottom: 20px;
      }

      .title-features {
        width: 100%;
        font-size: 36px;
        line-height: 1.05;
        text-align: center;
      }

      .title { width: 100%; }
    }

    /* CTA */
    .cta {
      background-color: var(--cor-principal);
      width: 100%;
      padding: 80px 0;
    }

    .oferta {
      top: 100px;
      margin: 0 auto;
      width: 400px;
      height: auto;
      background-color: var(--cor-section);
      border-radius: 10px;
      padding: 40px 32px;
      display: flex;
      flex-direction: column;
      align-items: left;
      gap: 8px;
    }

    .oferta-especial {
      display: flex;
      flex-direction: column;
      text-align: center;
      margin: 0 auto;
      gap: 8px;
    }

    .beneficios {
      list-style: none;
      text-align: left;
      padding: 0;
      font-size: 14px;
    }

    .beneficios li {
      display: flex;
      align-items: center;
      margin-bottom: 5px;
    }

    .beneficios img {
      width: 24px;
      height: 24px;
    }

    .garantia {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 40px;
      flex-wrap: wrap;
    }

    .video-bonus img {
      border-radius: 10px;
      max-width: 100%;
      height: auto;
    }

    .video-bonus p {
      font-size: 14px;
    }

    .video-bonus img {
      max-width: 320px;
    }

    /* TESTIMONIALS */
    .testimonials-section {
      background-color: #fff;
      width: 100%;
      padding: 80px 20px;
    }

    .testimonials-header {
      text-align: center;
      margin-bottom: 60px;
    }

    .testimonials-header .feature-subtitle {
      color: var(--cor-button);
      font-weight: 700;
      font-size: 24px;
      letter-spacing: 1px;
    }

    .testimonials-header .feature-title {
      font-size: 50px;
      font-weight: 700;
      color: var(--cor-texto);
      margin-top: 8px;
    }

    .testimonials-grid {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 32px;
      max-width: 1200px;
      margin: 0 auto;
    }

    .testimonial {
      background-color: var(--cor-section);
      border-radius: 12px;
      padding: 32px 24px;
      width: 260px;
      display: flex;
      flex-direction: column;
      box-shadow: 0 6px 14px rgba(0, 0, 0, 0.06);
      text-align: left;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .testimonial:hover {
      transform: translateY(-6px);
      box-shadow: 0 10px 18px rgba(0, 0, 0, 0.08);
    }

    .aspas-icon {
      width: 16px;
      height: 16px;
      margin-bottom: 16px;
    }

    .testimonial-text {
      font-size: 14px;
      color: var(--cor-texto);
      line-height: 24px;
      margin-bottom: 24px;
    }

    .testimonial-user {
      display: flex;
      align-items: center;
      gap: 12px;
    }

    .testimonial-thumb {
      width: 48px;
      height: 48px;
      border-radius: 50%;
      object-fit: cover;
    }

    .testimonial-user h4 {
      font-weight: 700;
      margin: 0;
    }

    .testimonial-user p {
      font-size: 12px;
      color: #777;
      margin: 0;
    }

    @media (max-width: 900px) {
      .testimonials-grid {
        flex-direction: column;
        align-items: center;
      }

      .testimonial {
        width: 100%;
        max-width: 420px;
      }
    }

    /* FAQ */
    /* --- Corrigido para ser fluido em telas pequenas --- */
    .faq-section {
      max-width: var(--largura-max);
      margin: 56px auto;
      padding: 0 20px;
      text-align: center;
      box-sizing: border-box;
      /* não forçar largura fixa — permite que o conteúdo encolha */
    }

    .faq-section h2 {
      font-size: 56px;
      font-weight: 400;
      line-height: 64px;
      margin-bottom: 8px;
      word-break: break-word; /* evita overflow em títulos longos */
    }

    .faq-section h2 span {
      font-weight: 800;
    }

    .faq-section h3 {
      margin-top: 32px;
      text-align: center;
      font-size: 40px;
      font-weight: 400;
      line-height: 56px;
      color: var(--cor-texto);
    }

    .faq-section p {
      margin-top: 32px;
      font-size: 24px;
      line-height: 40px;
      margin-bottom: 15px;
    }

    /* Tornar o container da FAQ responsivo:
       - permite 100% da largura com um max-width para desktop
       - usa padding interno para não colar nas laterais do viewport */
    .faq-container {
      margin: 0 auto;
      width: 100%;
      max-width: 800px; /* limite visual no desktop */
      text-align: left;
      padding: 0 12px;
      box-sizing: border-box;
    }

    .faq-item {
      border-bottom: 1px solid #eee;
      padding: 20px 0;
    }

    .faq-question {
      width: 100%;
      background: none;
      border: none;
      outline: none;
      color: #111;
      font-size: 16px;
      font-weight: 700;
      line-height: 32px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      cursor: pointer;
      transition: color 0.3s ease;
    }

    .faq-question:hover {
      color: var(--cor-button);
    }

    .faq-answer {
      max-height: 0;
      overflow: hidden;
      opacity: 0;
      transition: all 0.4s ease;
    }

    .faq-answer p {
      font-size: 14px;
      margin-top: 15px;
      line-height: 24px;
    }

    .faq-item.active .faq-answer {
      max-height: 300px;
      opacity: 1;
    }

    .faq-item .icon {
      width: 20px;
      height: 20px;
      transition: filter 0.3s ease;
      filter: brightness(0);
      flex-shrink: 0;
      margin-left: 12px;
    }

    .faq-item.active .faq-question {
      color: var(--cor-button);
    }

    /* WhatsApp float */
    .whatsapp-float {
      position: fixed;
      width: 60px;
      height: 60px;
      bottom: 40px;
      right: 20px;
      background-color: #25D366;
      color: #fff;
      border-radius: 50%;
      text-align: center;
      box-shadow: 2px 2px 5px rgba(0,0,0,0.3);
      z-index: 1000;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: transform 0.3s;
    }

    .whatsapp-float:hover {
      transform: scale(1.1);
    }

    .whatsapp-float img {
      width: 35px;
      height: 35px;
    }

    /* Footer */
    .site-footer {
      max-width: var(--largura-max);
      padding: 28px 20px 36px;
    }

    .footer-inner {
      max-width: var(--largura-max);
      margin: 0 auto;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 20px;
      padding: 0 24px;
    }

    .brand-line {
      display: flex;
      align-items: center;
      gap: 18px;
      flex: 1 1 auto;
    }

    .footer-logo {
      display: block;
      height: 28px;
      width: auto;
    }

    .footer-line {
      height: 1px;
      background: linear-gradient(90deg, rgba(103,71,161,0.08), var(--cor-button));
      flex: 1 1 auto;
      border-radius: 1px;
      opacity: 0.95;
    }

    .socials {
      display: flex;
      align-items: center;
      margin-left: 12px;
    }

    .social-btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 34px;
      height: 34px;
      background: transparent;
      padding: 4px;
      text-decoration: none;
      transition: background .15s ease, transform .12s ease;
    }

    .social-btn img {
      width: 24px;
      height: 24px;
      display: block;
      filter: none;
    }

    .footer-meta {
      max-width: var(--largura-max);
      margin: 18px auto 0;
      padding: 0 6px;
    }

    .left-meta p {
      margin: 6px 0;
      font-size: 13px;
      color: #4d4d4d;
    }

    .left-meta .links a {
      color: #333;
      text-decoration: none;
      font-size: 13px;
    }

    .left-meta .links a:hover {
      color: var(--cor-button);
    }

    /* footer responsive minimal */
    @media (max-width: 800px) {
      .footer-inner {
        flex-direction: column;
        align-items: flex-start;
      }

      .brand-line {
        width: 100%;
      }

      .footer-line {
        margin-top: 6px;
      }

      .socials {
        margin-top: 12px;
        align-self: flex-end;
      }
    }

    /* Small devices adjustments (stacking, font sizes) */
    @media (max-width: 420px) {
      h1 { font-size: 20px; line-height: 1.1; }
      .title-features { font-size: 28px; line-height: 1.05; width: 100%; }
      .limited { gap: 16px; padding: 12px; }
      .oferta { width: 100%; padding: 20px; }
      .parcelas { font-size: 20px; }
      .valor { font-size: 36px; }
      .menu { gap: 10px; }
      .menu a { font-size: 14px; padding: 6px; }
      .faq-container { width: 100%; padding: 0 8px; }
      .testimonial { width: 100%; max-width: 380px; }
      .whatsapp-float { bottom: 16px; right: 12px; }
    }
    @media (max-width: 900px) {
  .menu {
    display: none !important;
  }

  /* Se houver espaço vazio no topo, ajuste o padding do hero */
  .hero { padding-top: 20px; }
}

/* 1) Reserva de espaço e evita wrap inesperado que causa reflow ao carregar a font */
.price { /* área inteira */
  /* garante que a altura não "salte" quando a fonte trocar */
  min-height: 140px; /* ajustável: garanta que cubra o conteúdo do desktop */
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px 12px;
}

/* Mantém a linha com parcelas + valor sem quebra no render inicial,
   reduzindo reflows quando a fonte for carregada */
.parcelado {
  display: inline-flex;
  align-items: baseline;
  gap: 12px;
  white-space: nowrap;    /* evita quebra durante o carregamento da font */
}

/* Garante altura consistente para o número grande */
.valor {
  font-size: 64px;
  line-height: 1;
  min-height: 80px; /* evita que o elemento mude de altura ao trocar a fonte */
  display: inline-block;
}

/* SMALL SCREENS: permite que quebre e fique legível em telas pequenas */
@media (max-width: 420px) {
  .price { min-height: auto; padding: 18px 12px; }
  .parcelado {
    white-space: normal;   /* permite quebra no mobile */
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
  }
  .valor { font-size: 36px; min-height: 1; }
}

/* --- Media queries específicos para FAQ (ajustes de fonte e espaçamento) --- */
@media (max-width: 900px) {
  .faq-section h2 {
    font-size: 36px;
    line-height: 1.08;
    margin-bottom: 6px;
  }
  .faq-section h3 {
    font-size: 28px;
    line-height: 1.1;
  }
  .faq-section p {
    font-size: 18px;
    line-height: 28px;
  }
  .faq-container {
    max-width: 720px;
    padding: 0 10px;
  }
  .faq-question {
    font-size: 15px;
    line-height: 28px;
  }
  .faq-item .icon { width: 18px; height: 18px; }
}

@media (max-width: 420px) {
  .faq-section {
    margin: 28px auto;
    padding: 0 12px;
  }
  .faq-section h2 {
    font-size: 28px;
    line-height: 1.05;
  }
  .faq-section h3 {
    font-size: 20px;
    line-height: 1.1;
  }
  .faq-section p {
    font-size: 16px;
    line-height: 22px;
  }
  .faq-container {
    padding: 0 8px;
    max-width: 100%;
  }
  .faq-question {
    font-size: 14px;
    line-height: 24px;
  }
  .faq-item .icon { width: 16px; height: 16px; margin-left: 8px; }
  .faq-answer p { font-size: 13px; line-height: 20px; }
  .faq-item { padding: 14px 0; }
}

/* ---- idioma / lang-selector (leve) ---- */
.lang-selector{position:relative;display:inline-flex;align-items:center;margin-left:12px}
#lang-toggle{background:transparent;border:0;padding:6px;cursor:pointer;display:flex;align-items:center;gap:6px;color:var(--cor-text, #222)}
#lang-toggle:focus{outline:2px solid #00000033;border-radius:6px}
#lang-menu{position:absolute;right:0;top:calc(100% + 8px);min-width:190px;background:#fff;border:1px solid #e6e6e6;border-radius:8px;box-shadow:0 6px 20px rgba(0,0,0,.08);padding:6px 0;list-style:none;margin:0;display:none;z-index:999}
#lang-menu[aria-hidden="false"], #lang-menu.show{display:block}
#lang-menu li{padding:0;margin:0}
.lang-item{display:block;width:100%;text-align:left;padding:8px 12px;border:0;background:transparent;cursor:pointer;font:inherit;font-size: 14px;}
.lang-item:hover,.lang-item:focus{background:#f5f5f5}
.lang-selector .sr-only{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);border:0}
@media (max-width:820px){
  /* no mobile, coloque à direita mas com menos margem */
  .lang-selector{margin-left:8px}
  #lang-menu{right:8px}
}

/* Container principal */
.container-bonus{
  max-width: 1440px;
  margin: 0 auto;
  padding: 40px 20px;
  box-sizing: border-box;
}

/* Cada "bonus-section" forma uma grade com duas colunas que se encontram no centro */
.bonus-section{
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 40px;
  margin-bottom: 48px;
  box-sizing: border-box;
}

/* Faz com que a primeira coluna fique encostada à linha central (lado direito da coluna)
   e a segunda coluna encostada à linha central (lado esquerdo da coluna) */
.bonus-section > *:first-child{
  justify-self: end;
  width: 100%;
  box-sizing: border-box;
}
.bonus-section > *:last-child{
  justify-self: start;
  width: 100%;
  box-sizing: border-box;
}

/* Imagens */
.bonus-section img{
  display: block;
  width: 100%;
  max-width: 560px; /* ajustar se quiser imagens maiores/menores */
  height: auto; 
}

/* Bloco de texto */
.feature-text{
  max-width: 620px; /* largura máxima do bloco de texto */
  padding: 8px 16px;
  box-sizing: border-box;
}

/* Tipografia básica (troque conforme seu estilo) */
.feature-subtitle{ font-size: 14px; text-transform: uppercase; margin: 0 0 8px; }
.feature-title{ font-size: 28px; margin: 0 0 12px; }
.feature-description{ font-size: 16px; margin: 0; line-height: 1.5; }
.feature-link{ display: inline-block; margin-top: 8px; }

/* RESPONSIVO: em larguras menores empilha verticalmente.
   Para #bonus2 invertemos a ordem (imagem em cima) já que no HTML ele vem com texto primeiro */
@media (max-width: 900px) {
  .bonus-section{
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: stretch;
  }

  .bonus-section > *:first-child,
  .bonus-section > *:last-child{
    justify-self: auto;
    width: 100%;
  }

  /* Caso o HTML tenha texto antes da imagem (como #bonus2), essa regra garante que a imagem
     apareça acima do texto no mobile (vertical). #bonus1 já tem img primeiro no HTML. */
  .bonus-section#bonus2{
    flex-direction: column-reverse;
  }

  .feature-title{ font-size: 20px; }
}

/* Segurança visual em telas >1440px (mantém o conteúdo centralizado) */
@media (min-width: 1441px){
  .container-bonus{
    padding-left: 20px;
    padding-right: 20px;
  }
}
