/* ============================================================
   DESIGN TOKENS
   ============================================================ */
:root {
  --cor-principal: #fff;
  --cor-texto: #121212;
  --cor-fundo: #fff;
  --cor-footer: #f5f5f5;
  --cor-section: #e6e6e6;
  --cor-button: #336AEA;
  --cor-dashed: #dfdfe0;
  --largura-max: 1440px;
}

/* ============================================================
   BASE RESET
   ============================================================ */
html {
  scroll-behavior: smooth;
  width: 100%;
  /* FIX: prevents horizontal overflow that can cause CLS */
  overflow-x: hidden;
}

*,
*::before,
*::after {
  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;
  width: 100%;
  overflow-x: hidden;
}

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
/* Mobile-first base — scales up in min-width queries below */
h1 {
  font-size: 28px;
  line-height: 1.15;
  font-weight: 400;
  color: #181818;
}

/* FIX: h3 colour contrast — #336AEA on white passes AA for large text */
h3 {
  text-align: center;
  color: var(--cor-button);
}

/* ============================================================
   LAYOUT CONTAINERS
   ============================================================ */
.container {
  max-width: var(--largura-max);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.container-features {
  max-width: var(--largura-max);
  margin: 0 auto;
  padding: 56px 24px;
  display: flex;
  flex-direction: column;
  /* FIX: align-items: left is invalid — use flex-start */
  align-items: flex-start;
  text-align: center;
}

/* ============================================================
   NAVBAR (kept intact, not present in current HTML but kept
   for compatibility if reintroduced)
   ============================================================ */
.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: 180px;
  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;
  /* FIX: min touch target 44px per WCAG 2.5.5 */
  padding: 12px 0;
  display: inline-block;
  min-height: 44px;
}

@media (max-width: 900px) {
  .menu {
    display: none !important;
  }

  .navbar {
    height: auto;
    padding: 12px 0;
  }

  .nav-inner {
    gap: 12px;
  }
}

@media (max-width: 768px) {
  .nav-inner {
    padding: 0 16px;
  }

  .menu {
    gap: 16px;
    font-size: 14px;
    flex-wrap: wrap;
    justify-content: center;
  }
}

/* ============================================================
   HAMBURGER
   ============================================================ */
.hamburger {
  position: relative;
  z-index: 3000;
  background: transparent;
  border: 0;
  padding: 10px;
  /* FIX: increased for touch target */
  display: none;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  /* FIX: min 44×44 touch target */
  min-width: 44px;
  min-height: 44px;
  align-items: center;
  justify-content: center;
}

.hamburger .bar {
  display: block;
  width: 22px;
  height: 2px;
  background: #222;
  border-radius: 2px;
  position: relative;
  transition: transform .25s ease, background .25s ease;
}

.hamburger .bar::before,
.hamburger .bar::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background: inherit;
  border-radius: 2px;
  transition: transform .25s ease, opacity .18s ease;
}

.hamburger .bar::before {
  top: -7px;
}

.hamburger .bar::after {
  top: 7px;
}

.hamburger.active .bar {
  background: transparent;
}

.hamburger.active .bar::before {
  transform: translateY(7px) rotate(45deg);
}

.hamburger.active .bar::after {
  transform: translateY(-7px) rotate(-45deg);
  opacity: 1;
}

/* Ensure bar colours aren't overridden */
.hamburger .bar,
.hamburger .bar::before,
.hamburger .bar::after {
  background: #222 !important;
}

@media (max-width: 900px) {
  .hamburger {
    display: inline-flex;
  }
}

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero {
  color: #fff;
  /* Mobile base: tighter vertical padding */
  padding: 20px 0;
}

.hero p {
  max-width: 800px;
  /* Mobile base */
  font-size: 15px;
  margin-bottom: 20px;
  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: opacity .3s;
}

/* FIX: was 800px fixed width — causes CLS on narrow screens */
.title {
  width: min(800px, 100%);
  margin-bottom: 24px;
}

/* ============================================================
   VIDEO FACADE (YouTube lazy embed)
   ============================================================ */
/* The .video-inner now acts as the facade container.
   Stable aspect-ratio is set to prevent CLS before the iframe loads. */
.video-inner {
  width: 100%;
  max-width: 900px;
  border-radius: 10px;
  overflow: hidden;
  background: #000;
  /* Stable intrinsic size — prevents layout shift */
  aspect-ratio: 16 / 9;
  position: relative;
  /* Reserve dimensions explicitly for browsers without aspect-ratio */
  contain: layout;
  margin-bottom: 32px;
  cursor: pointer;
}

/* Fallback for browsers without aspect-ratio support */
@supports not (aspect-ratio: 1) {
  .video-inner {
    height: 0;
    padding-top: 56.25%;
    /* 9/16 */
  }
}

/* Thumbnail fills the entire facade area */
.video-inner .yt-thumb,
.video-inner picture {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
}

.video-inner picture .yt-thumb,
.video-inner .yt-thumb {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Play button centred over thumbnail */
.yt-play-btn {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  /* FIX: meet WCAG 2.5.5 minimum touch target */
  min-width: 64px;
  min-height: 64px;
}

.yt-play-btn img {
  width: 64px;
  height: 64px;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, .45));
  transition: transform .2s ease;
}

.yt-play-btn:hover img,
.yt-play-btn:focus img {
  transform: scale(1.12);
}

.yt-play-btn:focus {
  outline: 3px solid var(--cor-button);
  outline-offset: 2px;
}

/* After the iframe is injected, it fills the container */
.video-inner iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

/* ============================================================
   BENEFIT BAR
   ============================================================ */
.hero-benefits {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 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;
}

/* FIX: paragraph moved outside <ul> in HTML */
.benefits-note {
  text-align: center;
  margin-top: 8px;
  font-size: 16px;
  padding: 0 24px;
}

/* ============================================================
   WHY VMPP
   ============================================================ */
.why-vmpp {
  background: #fbfcfe;
  /* Mobile base — scaled up via min-width blocks below */
  padding: 48px 0;
}

.why-vmpp .container {
  max-width: 820px;
}

.why-title {
  /* Mobile base */
  font-size: 26px;
  line-height: 1.25;
  font-weight: 500;
  color: var(--cor-texto);
  margin-bottom: 16px;
}

.why-text {
  /* Mobile base */
  font-size: 17px;
  line-height: 1.6;
  color: #3a3a3a;
  font-weight: 400;
}

.why-text strong {
  color: var(--cor-texto);
  font-weight: 600;
}

/* NOTE: why-vmpp mobile padding is set in the base above (96px).
   The 768px min-width block below overrides to 80px for tablets,
   and 901px+ restores 96px for desktop. No max-width rule needed. */

/* ============================================================
   FOR-WHOM SECTION
   ============================================================ */
.why {
  background-color: var(--cor-section);
  padding: 54px 0;
  width: 100%;
}

.why .container {
  gap: 0;
  text-align: left;
  align-items: flex-start;
  padding: 0 24px;
}

/* FIX: the second h1 on the page is now h2 in HTML.
   Style it to match the previous visual weight. */
.why h2 {
  /* Mobile base — matches h1 mobile treatment */
  font-size: 22px;
  line-height: 1.2;
  font-weight: 400;
  color: #181818;
}

/* already handled in mobile base; tablet/desktop upgrades in min-width section below */
@media (max-width: 900px) {
  .why h2 {
    /* still valid as override if min-width hasn't applied yet */
    font-size: 28px;
    line-height: 1.15;
  }
}

/* ============================================================
   FEATURES SECTION
   ============================================================ */
.features {
  background: #fafafa;
}

/* FIX: was 960px fixed — causes overflow on narrow screens */
.title-features {
  padding: 20px 0;
  width: min(960px, 100%);
  /* Mobile base */
  font-size: 28px;
  line-height: 1.1;
  text-align: center;
}

.feature-section {
  display: flex;
  /* Mobile base: stack vertically */
  flex-direction: column;
  align-items: stretch;
  padding-top: 32px;
  gap: 24px;
}

.feature-text {
  /* Mobile base: full width */
  flex: 1 1 100%;
  text-align: center;
}

.feature-video {
  /* Mobile base: full width */
  flex: 1 1 100%;
}

/* Mobile base: fluid video with stable aspect ratio */
.feature-video video {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 8px;
}

/* FIX: h4 → h3 in HTML for correct heading hierarchy;
   style keeps exact same visual */
.feature-subtitle {
  color: #336AEA;
  font-weight: 700;
  /* Mobile base */
  font-size: 14px;
  letter-spacing: 0.5px;
  margin-bottom: 8px;
  text-transform: uppercase;
  text-align: center;
}

.feature-title {
  /* Mobile base */
  font-size: 22px;
  line-height: 1.3;
  margin-bottom: 12px;
  color: #111;
}

.feature-description {
  /* Mobile base */
  font-size: 15px;
  line-height: 1.6;
  color: #555;
  margin-bottom: 16px;
}

.feature-link {
  color: #336AEA;
  /* Mobile base */
  font-size: 16px;
  line-height: 1;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  padding: 12px 0;
  min-height: 44px;
}

.feature-link:hover,
.feature-link:focus {
  color: #336AEA;
  text-decoration: underline;
}

.features-gif {
  margin-top: -30px;
}

@media (max-width: 900px) {
  .feature-section {
    /* already stacked in base; just reduce top-padding */
    padding-top: 24px;
  }

  .feature-text,
  .feature-video {
    margin-bottom: 16px;
  }

  .title-features {
    text-align: center;
  }

  .title {
    width: 100%;
  }
}

@media (max-width: 520px) {

  /* feature text sizes already small in base; just tighten slightly */
  .feature-title {
    font-size: 20px;
  }
}

@media (max-width: 420px) {
  .title-features {
    font-size: 24px;
  }
}

/* ============================================================
   BONUS SECTION (kept for when it's re-enabled)
   ============================================================ */
.bonus-section {
  display: flex;
  align-items: center;
  padding-top: 80px;
  gap: 40px;
}

/* ============================================================
   LAUNCH BANNER
   ============================================================ */
.launch-banner {
  width: 100%;
  background: var(--cor-button);
  color: var(--cor-principal);
  padding: 48px 0;
  box-shadow: 0 6px 24px rgba(16, 97, 171, .12);
}

.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;
}

.launch-content {
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1 1 60%;
  min-width: 0;
}

.launch-title {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.1px;
  color: var(--cor-principal);
  text-align: left;
}

.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, .06);
  padding: 10px 14px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 14px;
  color: var(--cor-principal);
  border: 1px solid rgba(255, 255, 255, .08);
}

.launch-note {
  margin-top: 8px;
  font-size: 13px;
  color: rgba(255, 255, 255, .92);
  max-width: 720px;
  line-height: 1.45;
}

.launch-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 220px;
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 22px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  letter-spacing: 0.6px;
  border: 2px solid rgba(255, 255, 255, .9);
  color: var(--cor-principal);
  background: transparent;
  transition: transform .14s ease, box-shadow .14s ease;
  text-align: center;
  /* FIX: minimum touch target */
  min-height: 44px;
}

.btn-outline:hover,
.btn-outline:focus {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(16, 97, 171, .16);
  outline: none;
}

@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;
  }

  .launch-banner {
    padding: 28px 0;
  }
}

/* ============================================================
   CTA / PRICE SECTION
   ============================================================ */
.cta {
  background-color: var(--cor-principal);
  width: 100%;
  padding: 80px 0;
}

.oferta-especial {
  display: flex;
  flex-direction: column;
  text-align: center;
  margin: 0 auto;
  gap: 8px;
}

/* FIX: was 400px fixed — causes CLS. Use min() clamp. */
.oferta {
  margin: 0 auto;
  width: min(400px, 100%);
  height: auto;
  background-color: var(--cor-section);
  border-radius: 10px;
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
}

@media (max-width: 420px) {
  .oferta {
    padding: 20px;
  }
}

.parcelas {
  font-size: 24px;
  line-height: 32px;
  font-weight: 900;
}

.valor {
  font-size: 64px;
  line-height: 1;
  font-weight: 900;
  /* Reserves height to prevent jump when web font loads */
  min-height: 64px;
  display: inline-block;
}

.parcelado {
  display: inline-flex;
  align-items: baseline;
  gap: 12px;
  /* FIX: prevent font-swap from causing line-break changes */
  white-space: nowrap;
}

.beneficios {
  list-style: none;
  text-align: left;
  padding: 0;
  font-size: 14px;
}

.beneficios li {
  display: flex;
  align-items: center;
  margin-bottom: 5px;
  gap: 6px;
}

.beneficios img {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

.icon-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  padding: 8px 0;
  max-width: 900px;
}

@media (max-width: 600px) {
  .icon-row {
    gap: 16px;
  }

  .icon-row img {
    width: 48px;
  }
}

@media (max-width: 420px) {
  .parcelas {
    font-size: 20px;
  }

  .valor {
    font-size: 36px;
    min-height: 36px;
  }

  .parcelado {
    white-space: normal;
    flex-direction: column;
    align-items: center;
    gap: 6px;
  }

  .btn-primary {
    padding: 0.6rem 1rem;
    font-size: 0.95rem;
  }
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 24px;
  margin-top: 16px;
  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, .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;
  /* FIX: minimum touch target */
  min-height: 44px;
}

.btn-primary:hover,
.btn-primary:focus {
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(103, 71, 161, .28);
  outline: 3px solid #0048c8;
  outline-offset: 2px;
}

.btn-zap {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  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, .18);
  cursor: pointer;
  transition: transform .12s ease, box-shadow .12s ease;
  font-weight: 600;
  font-family: "Montserrat", Arial, sans-serif;
  -webkit-tap-highlight-color: transparent;
  min-height: 44px;
}

.btn-zap:hover,
.btn-zap:focus {
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(37, 211, 102, .32);
  outline: 3px solid #1aab52;
  outline-offset: 2px;
}

.secao-botao {
  display: flex;
  justify-content: center;
  align-items: center;
}

/* ============================================================
   GARANTIA
   ============================================================ */
.garantia {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

/* ============================================================
   VIDEO BONUS (kept for when bonus section is re-enabled)
   ============================================================ */
.video-bonus img {
  border-radius: 10px;
  max-width: 320px;
  height: auto;
}

.video-bonus p {
  font-size: 14px;
}

/* ============================================================
   TESTIMONIALS (kept for when testimonials are re-enabled)
   ============================================================ */
.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, .06);
  text-align: left;
  transition: transform .3s ease, box-shadow .3s ease;
}

.testimonial:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 18px rgba(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-size: 16px;
  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;
  }
}

@media (max-width: 420px) {
  .testimonial {
    width: 100%;
    max-width: 380px;
  }
}

/* ============================================================
   FAQ
   ============================================================ */
.faq-section {
  max-width: var(--largura-max);
  margin: 56px auto;
  padding: 0 20px;
  text-align: center;
  box-sizing: border-box;
}

.faq-section h2 {
  /* Mobile base */
  font-size: 28px;
  font-weight: 400;
  line-height: 1.1;
  margin-bottom: 8px;
  word-break: break-word;
}

.faq-section h2 span {
  font-weight: 800;
}

/* FIX: was sharing the base h3 (blue, left-aligned);
   these specific FAQ heading-level elements need different colour/alignment */
.faq-cta-heading {
  margin-top: 28px;
  text-align: center;
  /* Mobile base */
  font-size: 20px;
  font-weight: 400;
  line-height: 1.2;
  color: var(--cor-texto);
}

.faq-section p,
.faq-cta-text {
  margin-top: 20px;
  /* Mobile base */
  font-size: 16px;
  line-height: 1.55;
  margin-bottom: 12px;
}

.faq-container {
  margin: 0 auto;
  width: 100%;
  max-width: 800px;
  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 .3s ease;
  /* FIX: minimum touch target height */
  min-height: 44px;
  padding: 6px 0;
  text-align: left;
}

.faq-question:hover {
  color: var(--cor-button);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  /* FIX: use separate properties instead of shorthand 'all' to avoid
     accidentally transitioning layout-triggering properties */
  transition: max-height .4s ease, opacity .4s ease;
}

.faq-answer p {
  font-size: 14px;
  margin-top: 15px;
  line-height: 24px;
}

.faq-item.active .faq-answer {
  max-height: 400px;
  opacity: 1;
}

.faq-item .icon {
  width: 20px;
  height: 20px;
  transition: filter .3s ease;
  filter: brightness(0);
  flex-shrink: 0;
  margin-left: 12px;
}

.faq-item.active .faq-question {
  color: var(--cor-button);
}

@media (max-width: 900px) {

  /* FAQ sizes already set in mobile base; these are now tablet overrides only */
  .faq-section h2 {
    font-size: 32px;
    line-height: 1.08;
    margin-bottom: 6px;
  }

  .faq-cta-heading {
    font-size: 26px;
    line-height: 1.1;
  }

  .faq-section p,
  .faq-cta-text {
    font-size: 17px;
    line-height: 1.55;
  }

  .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-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;
  }
}

/* ============================================================
   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, .3);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform .3s;
  /* Visible after JS sets opacity (avoids layout shift) */
  opacity: 1;
}

.whatsapp-float:hover {
  transform: scale(1.1);
}

.whatsapp-float img {
  width: 35px;
  height: 35px;
}

@media (max-width: 420px) {
  .whatsapp-float {
    bottom: 16px;
    right: 12px;
  }
}

/* ============================================================
   FOOTER
   ============================================================ */
footer {
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  padding: 30px 20px;
  font-size: 0.9rem;
}

.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, .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;
  /* FIX: minimum touch target */
  width: 44px;
  height: 44px;
  background: transparent;
  padding: 10px;
  text-decoration: none;
  transition: background .15s ease, transform .12s ease;
}

.social-btn img {
  width: 24px;
  height: 24px;
  display: block;
}

.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);
}

@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;
  }
}

/* ============================================================
   COUNTDOWN (styles kept for when the banner is re-enabled)
   ============================================================ */
.countdown-header {
  width: 100%;
  background: transparent;
  padding: 18px 0;
}

.countdown-container {
  display: flex;
  justify-content: center;
  align-items: center;
}

.countdown-inner {
  width: 100%;
  max-width: var(--largura-max);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  padding: 0 24px;
}

.countdown-left {
  display: flex;
  align-items: center;
  gap: 12px;
}

.clock-icon {
  color: var(--cor-button);
  flex-shrink: 0;
}

.countdown-text .highlight {
  color: var(--cor-button);
  font-weight: 600;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  font-size: 14px;
}

.countdown-right {
  display: flex;
  align-items: center;
}

.time-boxes {
  display: flex;
  align-items: center;
  gap: 12px;
  background: transparent;
}

.time-box {
  background: #fff;
  min-width: 62px;
  padding: 10px 12px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(18, 18, 18, .06);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(0, 0, 0, .06);
}

.time-value {
  font-size: 20px;
  font-weight: 700;
  line-height: 1;
  color: #121212;
  font-family: "Montserrat", Arial, sans-serif;
}

.time-label {
  font-size: 10px;
  text-transform: uppercase;
  margin-top: 6px;
  color: #6b6b6b;
  font-weight: 600;
}

.colon {
  font-size: 20px;
  font-weight: 700;
  color: var(--cor-button);
  padding: 0 4px;
  user-select: none;
}

@media (max-width: 640px) {
  .countdown-inner {
    flex-direction: column;
    gap: 12px;
    padding: 12px;
  }

  .countdown-left {
    order: 1;
    text-align: center;
  }

  .countdown-right {
    order: 2;
  }

  .time-boxes {
    gap: 8px;
    flex-wrap: wrap;
    justify-content: center;
  }

  .time-box {
    min-width: 54px;
    padding: 8px 10px;
    border-radius: 8px;
  }

  .colon {
    display: none;
  }
}

/* ============================================================
   MENU INTERNO (utility nav kept for compatibility)
   ============================================================ */
.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: 13px;
  font-weight: 400;
  color: #333;
  text-decoration: none;
  transition: color .2s ease, transform .2s ease;
  padding: 10px 0;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}

.menu-interno a:hover {
  color: #6747A1;
  transform: translateY(-1px);
}

/* ============================================================
   CARD (kept for compatibility)
   ============================================================ */
.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, .08);
  flex: 1 1 280px;
  max-width: 320px;
  transition: transform .3s;
}

.card:hover {
  transform: translateY(-5px);
}

@media (max-width: 768px) {
  .hero h1 {
    font-size: 2rem;
  }

  .card {
    max-width: 100%;
  }
}

/* ============================================================
   LIMITED (kept for compatibility)
   ============================================================ */
.limited {
  border-radius: 12px;
  border: 1.5px dashed var(--cor-dashed);
  background-color: var(--cor-principal);
  box-shadow: 0 8px 30px -16px rgba(13, 13, 14, .2);
  padding: 16px 24px;
  max-width: 57rem;
  margin: 16px auto 0;
  display: flex;
  font-size: 14px;
  align-items: center;
  text-align: left;
  gap: 3.2rem;
}

@media (max-width: 420px) {
  .limited {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    padding: 12px;
  }
}

/* ============================================================
   MOBILE HERO REORDER / RESPONSIVE TWEAKS
   ============================================================ */
@media (max-width: 768px) {
  .hero .container {
    gap: 14px;
    padding-top: 20px;
    align-items: center;
    text-align: center;
  }

  .hero .title {
    order: 1;
    margin-bottom: 0;
  }

  .hero p {
    order: 2;
    margin: 0;
    font-size: 15px;
    line-height: 1.45;
    max-width: 520px;
  }

  .hero .video-inner {
    order: 3;
    margin-top: 10px;
    width: 100%;
    max-width: 560px;
    border-radius: 10px;
  }

  .hero a,
  .hero .btn-primary {
    order: 4;
  }

  .hero h1 {
    font-size: 28px;
    line-height: 1.12;
  }
}

@media (max-width: 900px) {
  h1 {
    font-size: 36px;
    line-height: 1.1;
  }
}

@media (max-width: 520px) {

  .container,
  .container-features,
  .nav-inner,
  .launch-inner,
  .footer-inner,
  .countdown-inner {
    padding-left: 16px;
    padding-right: 16px;
  }
}

@media (max-width: 420px) {
  h1 {
    font-size: 20px;
    line-height: 1.1;
  }

  .menu {
    gap: 10px;
  }

  .menu a {
    font-size: 14px;
    padding: 8px;
  }

  .faq-container {
    width: 100%;
    padding: 0 8px;
  }
}

@media (max-width: 520px) {
  .video-inner {
    max-width: 100%;
    border-radius: 8px;
  }
}

/* ============================================================
   MOBILE-FIRST PROGRESSIVE ENHANCEMENTS
   Base styles above target mobile (≤ 599px).
   Below: layout, typography, and spacing scale UP progressively.
   ============================================================ */

/* ── 600px+: small tablets, large phones landscape ───────── */
@media (min-width: 600px) {
  h1 {
    font-size: 36px;
    line-height: 1.12;
  }

  .hero {
    padding: 28px 0;
  }

  .hero p {
    font-size: 16px;
    margin-bottom: 24px;
  }

  .title-features {
    font-size: 36px;
    line-height: 1.05;
    padding: 24px 0;
  }

  .feature-subtitle {
    font-size: 16px;
  }

  .feature-title {
    font-size: 26px;
    line-height: 1.25;
    margin-bottom: 16px;
  }

  .feature-description {
    font-size: 16px;
    line-height: 1.65;
  }

  .feature-link {
    font-size: 18px;
  }

  .faq-section h2 {
    font-size: 36px;
    line-height: 1.1;
  }

  .faq-cta-heading {
    font-size: 28px;
    line-height: 1.15;
    margin-top: 32px;
  }

  .faq-section p,
  .faq-cta-text {
    font-size: 18px;
    line-height: 1.6;
    margin-top: 28px;
  }

  .why h2 {
    font-size: 32px;
    line-height: 1.15;
  }
}

/* ── 768px+: tablets ─────────────────────────────────────── */
@media (min-width: 768px) {
  h1 {
    font-size: 40px;
    line-height: 1.1;
  }

  .hero {
    padding: 32px 0;
  }

  .hero p {
    font-size: 17px;
    margin-bottom: 28px;
  }

  .feature-subtitle {
    font-size: 18px;
  }

  .feature-title {
    font-size: 28px;
    line-height: 1.3;
    margin-bottom: 18px;
  }

  .feature-description {
    font-size: 17px;
  }

  .feature-link {
    font-size: 20px;
  }

  .why-vmpp {
    padding: 80px 0;
  }

  .why-title {
    font-size: 32px;
    line-height: 40px;
  }

  .why-text {
    font-size: 19px;
    line-height: 30px;
  }

  .why h2 {
    font-size: 40px;
    line-height: 1.1;
  }

  .faq-section h2 {
    font-size: 44px;
    line-height: 1.08;
  }

  .faq-cta-heading {
    font-size: 32px;
    line-height: 1.2;
  }

  .faq-section p,
  .faq-cta-text {
    font-size: 20px;
    line-height: 1.65;
  }
}

/* ── 901px+: desktop ─────────────────────────────────────── */
@media (min-width: 901px) {
  h1 {
    font-size: 48px;
    line-height: 56px;
  }

  .hero {
    padding: 40px 0;
  }

  .hero p {
    font-size: 18px;
    margin-bottom: 30px;
  }

  /* Feature sections: side-by-side on desktop */
  .feature-section {
    flex-direction: row;
    align-items: stretch;
    /* both columns match height */
    justify-content: space-between;
    padding-top: 80px;
    gap: 40px;
  }

  /* Text column */
  .feature-text {
    flex: 0 0 45%;
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  /* === DESKTOP FEATURE VIDEO: 480px height === */
  .feature-video {
    flex: 0 0 52%;
    height: 480px;
  }

  .feature-video video {
    width: 100%;
    height: 100%;
    /* fills the fixed-height column */
    object-fit: cover;
    border-radius: 10px;
    aspect-ratio: unset;
    /* height is now authoritative */
  }

  /* Restore desktop label sizes */
  .feature-subtitle {
    font-size: 24px;
    letter-spacing: 0.5px;
    margin-bottom: 10px;
    text-align: left;
  }

  .feature-title {
    font-size: 32px;
    line-height: 45px;
    margin-bottom: 20px;
  }

  .feature-description {
    font-size: 18px;
    line-height: 32px;
    margin-bottom: 20px;
  }

  .feature-link {
    font-size: 24px;
    font-weight: 400;
  }

  .title-features {
    font-size: 64px;
    line-height: 80px;
    text-align: left;
    padding: 24px 0;
  }

  .why h2 {
    font-size: 48px;
    line-height: 56px;
  }

  .why-vmpp {
    padding: 96px 0;
  }

  .why-title {
    font-size: 36px;
    line-height: 44px;
  }

  .why-text {
    font-size: 20px;
    line-height: 32px;
  }

  .faq-section h2 {
    font-size: 56px;
    line-height: 64px;
    margin-bottom: 8px;
  }

  .faq-cta-heading {
    font-size: 40px;
    line-height: 56px;
    margin-top: 32px;
  }

  .faq-section p,
  .faq-cta-text {
    font-size: 24px;
    line-height: 40px;
    margin-top: 32px;
    margin-bottom: 15px;
  }

  .menu-interno a {
    font-size: 14px;
  }
}

/* ── 1200px+: large desktop ──────────────────────────────── */
@media (min-width: 1200px) {
  h1 {
    font-size: 52px;
    line-height: 60px;
  }
}