*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { background: #08090c; color: #ece8e0; font-family: 'DM Sans', sans-serif; overflow-x: hidden; }
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: #0f1017; }
::-webkit-scrollbar-thumb { background: #2a2a3a; border-radius: 3px; }

@keyframes fadeUp { from { opacity: 0; transform: translateY(28px); } to { opacity: 1; transform: translateY(0); } }
@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }
@keyframes glow { 0%,100% { box-shadow: 0 0 20px #4db8ff22; } 50% { box-shadow: 0 0 48px #4db8ff44; } }
@keyframes pulse { 0%,100% { opacity: .5; } 50% { opacity: 1; } }

/* NAV */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 0 2rem; height: 68px;
  display: flex; align-items: center; justify-content: space-between;
  background: rgba(8,9,12,.92); backdrop-filter: blur(16px);
  border-bottom: 1px solid #1e2030;
}
nav .logo { height: 42px; filter: drop-shadow(0 0 12px rgba(77,184,255,.35)); }
nav .links { display: flex; gap: 2rem; }
nav .links a { color: #9a9590; text-decoration: none; font-size: 14px; font-weight: 500; transition: color .18s; }
nav .links a:hover { color: #4db8ff; }
nav .actions { display: flex; gap: 10px; align-items: center; }
.btn-ghost {
  background: transparent; border: 1px solid #1e2030; border-radius: 10px;
  padding: .5rem 1.1rem; color: #ece8e0; font-size: 13px; font-weight: 600;
  cursor: pointer; font-family: 'DM Sans', sans-serif; transition: border-color .18s, background .18s;
  display: inline-flex; align-items: center; gap: 7px; text-decoration: none;
}
.btn-ghost:hover { background: rgba(77,184,255,.08); border-color: #4db8ff55; }
.btn-primary {
  background: #43d18a; border: none; border-radius: 10px;
  padding: .5rem 1.2rem; color: #061a0d; font-size: 13px; font-weight: 700;
  cursor: pointer; font-family: 'DM Sans', sans-serif;
  box-shadow: 0 4px 18px rgba(67,209,138,.3); transition: filter .18s, transform .18s;
  display: inline-flex; align-items: center; gap: 7px;
}
.btn-primary:hover { filter: brightness(1.1); transform: translateY(-1px); }
.btn-primary.lg { padding: .9rem 2rem; font-size: 15px; border-radius: 13px; box-shadow: 0 8px 28px rgba(67,209,138,.35); }
a.btn-primary, a.btn-ghost, a.plan-btn { text-decoration: none; }
.btn-trial {
  background: #4db8ff; border: none; border-radius: 10px;
  padding: .5rem 1.2rem; color: #06090f; font-size: 13px; font-weight: 700;
  cursor: pointer; font-family: 'DM Sans', sans-serif;
  box-shadow: 0 4px 18px rgba(77,184,255,.28); transition: filter .18s, transform .18s;
  display: inline-flex; align-items: center; gap: 7px; text-decoration: none;
}
.btn-trial:hover { filter: brightness(1.08); transform: translateY(-1px); }
.btn-trial.lg { padding: .9rem 2rem; font-size: 15px; border-radius: 13px; box-shadow: 0 8px 28px rgba(77,184,255,.32); }

/* CONTAINER */
.container { max-width: 1520px; margin: 0 auto; padding: 0 4%; }

/* HERO */
#hero {
  padding: 80px 0 60px; position: relative; overflow: hidden;
}
#hero .container {
  max-width: 100%;
}
#hero .blob1 {
  position: absolute; top: 50%; left: 30%; transform: translate(-50%, -50%);
  width: 900px; height: 900px;
  background: radial-gradient(circle, rgba(77,184,255,.07), transparent 65%);
  pointer-events: none;
}
#hero .blob2 {
  position: absolute; top: 40%; right: 10%;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(167,139,250,.06), transparent 65%);
  pointer-events: none;
}
.hero-main-grid { display: grid; grid-template-columns: 1fr 1.6fr; gap: 4%; align-items: center; }
.hero-logo-block { margin-bottom: 1.4rem; animation: fadeUp .5s ease both; }
.hero-logo-img { height: 140px; filter: drop-shadow(0 0 20px rgba(77,184,255,.45)); display: block; }
.hero-logo-tagline {
  font-size: 11px; font-weight: 600; letter-spacing: 4px; color: #706b63;
  text-transform: uppercase; margin-top: 12px;
}
h1.hero-title {
  font-family: 'DM Sans', sans-serif;
  font-weight: 800;
  font-size: clamp(28px, 3.4vw, 54px);
  line-height: 1.1; letter-spacing: -.5px;
  margin-bottom: 1.4rem;
  animation: fadeUp .6s .1s ease both;
}
h1.hero-title .ht-white { display: block; color: #ece8e0; }
h1.hero-title .ht-accent {
  display: block;
  background: linear-gradient(90deg, #4db8ff 0%, #a78bfa 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.gradient-text {
  background: linear-gradient(135deg, #4db8ff 0%, #a78bfa 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.accent { color: #4db8ff; }
.hero-sub {
  font-size: 16px; color: #9a9590; line-height: 1.75; max-width: 460px;
  margin: 0 0 2rem; animation: fadeUp .7s .2s ease both; opacity: 0; animation-fill-mode: forwards;
}
.hero-cta { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 1.8rem; animation: fadeUp .7s .3s ease both; opacity: 0; animation-fill-mode: forwards; }
.hero-feat-row { display: flex; gap: 12px; flex-wrap: wrap; animation: fadeUp .7s .4s ease both; opacity: 0; animation-fill-mode: forwards; }
.hero-feat {
  display: flex; align-items: center; gap: 8px;
  font-size: 12px; font-weight: 500; color: #9a9590;
  background: rgba(255,255,255,.03); border: 1px solid #1e2030;
  border-radius: 10px; padding: .45rem .9rem;
}
.hero-feat svg { flex-shrink: 0; }
.hero-credit {
  display: flex; align-items: center; justify-content: center; gap: 1.5rem;
  margin-top: 3rem; padding-top: 1.5rem; border-top: 1px solid #1a1b27;
  font-size: 12px; color: #4a4555;
}
.hero-credit::before, .hero-credit::after {
  content: ''; flex: 1; height: 1px;
  background: linear-gradient(to var(--dir, right), transparent, #1e2030 80%);
}
.hero-credit::after { --dir: left; }

/* SCREENSHOT CAROUSEL */
.screenshot-showcase {
  position: relative; width: 100%;
}
.ss-wrapper {
  background: linear-gradient(145deg, #13141e, #0f1017);
  border: 1px solid #1e2030; border-radius: 20px; overflow: hidden;
  box-shadow: 0 40px 80px rgba(0,0,0,.6), 0 0 0 1px rgba(77,184,255,.08);
  animation: float 4s ease-in-out infinite, glow 3s ease-in-out infinite;
}
.ss-topbar {
  height: 30px; background: #0d0e14;
  display: flex; align-items: center; padding: 0 12px; gap: 6px;
  border-bottom: 1px solid #1a1b27; flex-shrink: 0;
}
.ss-tb-dot { width: 9px; height: 9px; border-radius: 50%; flex-shrink: 0; }
.ss-tb-dot.r { background: #ff5f5688; }
.ss-tb-dot.y { background: #ffbd2e88; }
.ss-tb-dot.g { background: #27c93f88; }
.ss-tb-url {
  flex: 1; height: 16px; background: #13141e; border-radius: 4px;
  margin-left: 6px; display: flex; align-items: center; justify-content: center; gap: 4px;
}
.ss-tb-url-text { font-size: 9px; color: #3a3a4a; letter-spacing: .3px; }
.ss-slider {
  position: relative; overflow: hidden;
  aspect-ratio: 16 / 9; background: #0d0e14;
}
.ss-slide {
  position: absolute; inset: 0; opacity: 0; transition: opacity .65s ease;
}
.ss-slide.active { opacity: 1; }
.ss-slide img {
  width: 100%; height: 100%;
  object-fit: contain; display: block;
}
.ss-slide-label {
  position: absolute; bottom: 8px; left: 8px;
  background: rgba(8,9,12,.72); backdrop-filter: blur(6px);
  border: 1px solid #2a2a3a; border-radius: 6px;
  padding: 3px 9px; font-size: 10px; color: #9a9590;
  font-weight: 500; letter-spacing: .3px;
}
.ss-controls {
  display: flex; align-items: center; justify-content: center; gap: 7px;
  padding: 9px 0 10px; background: #0d0e14; border-top: 1px solid #1a1b27;
}
.ss-nav-dot {
  width: 6px; height: 6px; border-radius: 3px;
  background: #2a2a3a; border: none; cursor: pointer;
  transition: all .25s ease; padding: 0;
}
.ss-nav-dot.active { width: 18px; background: #4db8ff; }
.ss-prev-btn, .ss-next-btn {
  position: absolute; top: 50%;
  background: rgba(8,9,12,.82); border: 1px solid #2a2a3a;
  border-radius: 50%; width: 28px; height: 28px; color: #9a9590;
  cursor: pointer; opacity: 0; transition: opacity .2s, color .2s, border-color .2s;
  display: flex; align-items: center; justify-content: center;
  padding: 0; transform: translateY(-50%);
}
.ss-prev-btn { left: 10px; }
.ss-next-btn { right: 10px; }
.screenshot-showcase:hover .ss-prev-btn,
.screenshot-showcase:hover .ss-next-btn { opacity: 1; }
.ss-prev-btn:hover, .ss-next-btn:hover { color: #4db8ff; border-color: #4db8ff55; }

/* SECTION COMMON */
section { padding: 80px 0; }
.section-tag {
  display: inline-flex; align-items: center; gap: 7px;
  background: #4db8ff18; border: 1px solid #4db8ff33;
  border-radius: 999px; padding: .35rem .9rem; margin-bottom: 1rem;
}
.section-tag span { font-size: 11px; font-weight: 700; color: #4db8ff; letter-spacing: .6px; }
.section-center { text-align: center; margin-bottom: 3.5rem; }
h2.section-title {
  font-family: 'Bebas Neue', sans-serif; font-size: clamp(30px, 4vw, 50px);
  color: #ece8e0; letter-spacing: 1px; line-height: 1.1; margin-bottom: .75rem;
}
.section-sub { font-size: 15px; color: #9a9590; max-width: 520px; margin: 0 auto; line-height: 1.7; }

/* FEATURES */
.feat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.feat-card {
  background: linear-gradient(145deg, #13141e, #0f1017);
  border: 1px solid #1e2030; border-radius: 18px; padding: 1.5rem;
  box-shadow: 0 8px 32px rgba(0,0,0,.3);
  transition: transform .2s, border-color .2s, box-shadow .2s;
}
.feat-card:hover { transform: translateY(-5px); border-color: #4db8ff44; box-shadow: 0 20px 48px rgba(0,0,0,.5), 0 0 0 1px #4db8ff22; }
.feat-icon {
  width: 46px; height: 46px; border-radius: 13px;
  background: #4db8ff18; border: 1px solid #4db8ff30;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1rem; font-size: 20px;
}
.feat-title { font-weight: 700; font-size: 16px; color: #ece8e0; margin-bottom: 8px; }
.feat-desc { font-size: 13.5px; color: #9a9590; line-height: 1.65; }

/* STATS */
.stats-band {
  background: linear-gradient(135deg, rgba(77,184,255,.07), rgba(167,139,250,.05));
  border: 1px solid #4db8ff22; border-radius: 24px; padding: 2.5rem 2rem; margin: 0 0 0 0;
}
.stats-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.stat-item { text-align: center; }
.stat-value { font-family: 'Bebas Neue', sans-serif; font-size: 44px; color: #4db8ff; letter-spacing: 1px; line-height: 1; }
.stat-label { font-size: 13px; color: #9a9590; margin-top: 6px; }

/* HOW IT WORKS */
.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.step-card {
  background: linear-gradient(145deg, #13141e, #0f1017);
  border: 1px solid #1e2030; border-radius: 20px; padding: 2rem; position: relative;
}
.step-num {
  position: absolute; top: 1.5rem; right: 1.5rem;
  font-family: 'Bebas Neue', sans-serif; font-size: 52px; color: #1e2030; letter-spacing: 1px; line-height: 1;
}
.step-icon {
  width: 50px; height: 50px; border-radius: 14px;
  background: #4db8ff18; border: 1px solid #4db8ff30;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.25rem; font-size: 22px;
}
.step-title { font-weight: 700; font-size: 17px; color: #ece8e0; margin-bottom: 10px; }
.step-desc { font-size: 13.5px; color: #9a9590; line-height: 1.65; }

/* PLANS */
#plans { background: #08090c; }
.plans-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; align-items: stretch; }
.plan-card {
  background: linear-gradient(145deg, #13141e, #0f1017);
  border: 1px solid #1e2030; border-radius: 22px; padding: 2rem 1.6rem;
  position: relative; box-shadow: 0 12px 36px rgba(0,0,0,.3);
  transition: transform .2s, border-color .2s;
}
.plan-card:hover { transform: translateY(-6px); }
.plan-card.highlight {
  background: linear-gradient(145deg, #131828, #0e1220);
  border-color: #4db8ff55;
  box-shadow: 0 24px 56px rgba(0,0,0,.5), 0 0 0 1px #4db8ff20;
}
.plans-cta-wrap { text-align: center; margin-top: 2rem; }
.plans-cta-btn {
  display: inline-flex; align-items: center; gap: 10px;
  background: #43d18a; border: none; border-radius: 14px;
  padding: 1rem 2.4rem; color: #061a0d; font-size: 15px; font-weight: 700;
  cursor: pointer; font-family: 'DM Sans', sans-serif; text-decoration: none;
  box-shadow: 0 8px 28px rgba(67,209,138,.32);
  transition: filter .18s, transform .18s;
}
.plans-cta-btn:hover { filter: brightness(1.1); transform: translateY(-2px); }
.plan-badge {
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  background: #4db8ff; color: #06090f;
  border-radius: 999px; padding: 4px 16px;
  font-size: 10px; font-weight: 800; letter-spacing: .6px; white-space: nowrap;
}
.plan-name { font-weight: 700; font-size: 16px; color: #ece8e0; margin-bottom: 6px; }
.plan-sub { font-size: 13px; color: #9a9590; margin-bottom: 1.25rem; line-height: 1.5; }
.plan-price { margin-bottom: 1.25rem; }
.plan-price-val { font-family: 'Bebas Neue', sans-serif; font-size: 46px; letter-spacing: 1px; color: #ece8e0; line-height: 1; }
.plan-card.highlight .plan-price-val { color: #4db8ff; }
.plan-period { font-size: 13px; color: #9a9590; margin-left: 4px; }
.economy-badge {
  display: inline-flex; align-items: center; gap: 5px;
  background: #43d18a15; color: #43d18a;
  border-radius: 999px; padding: 4px 10px; font-size: 11px; font-weight: 700; margin-bottom: 1.5rem;
}
.plan-btn {
  background: rgba(255,255,255,.04); border: 1px solid #252638; border-radius: 12px;
  padding: .85rem; text-align: center; font-weight: 700; font-size: 14px;
  color: #ece8e0; display: flex; align-items: center; justify-content: center; gap: 8px;
  cursor: pointer; margin-top: 1.5rem;
}
.plan-card.highlight .plan-btn {
  background: #4db8ff; border-color: #4db8ff; color: #06090f;
  box-shadow: 0 8px 24px rgba(77,184,255,.28); margin-top: 0;
}
.plans-note { text-align: center; margin-top: 1.5rem; font-size: 13px; color: #706b63; }

/* BENEFITS */
.benefit-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.benefit-card {
  background: linear-gradient(145deg, #13141e, #0f1017);
  border: 1px solid #1e2030; border-radius: 18px; padding: 1.6rem 1.4rem;
  text-align: center;
}
.benefit-icon {
  width: 52px; height: 52px; border-radius: 16px;
  background: #4db8ff18; border: 1px solid #4db8ff28;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1rem; font-size: 22px;
}
.benefit-title { font-weight: 700; font-size: 15px; color: #ece8e0; margin-bottom: 8px; }
.benefit-desc { font-size: 13px; color: #9a9590; line-height: 1.6; }

/* CTA */
.cta-grid {
  display: grid; grid-template-columns: 1fr 1.5fr; gap: 5%;
  align-items: center; max-width: 1100px; margin: 0 auto;
}
.cta-box {
  text-align: center;
  background: linear-gradient(135deg, rgba(77,184,255,.08), rgba(167,139,250,.06));
  border: 1px solid #4db8ff25; border-radius: 28px; padding: 3.5rem 2.5rem;
  box-shadow: 0 40px 80px rgba(0,0,0,.4);
}
/* MOBILE SLIDES */
.mobile-showcase-wrap { display: flex; flex-direction: column; align-items: center; gap: 18px; }
.mobile-slider {
  width: 340px;
  border-radius: 28px;
  overflow: hidden;
  aspect-ratio: 9 / 19.5;
  position: relative;
  box-shadow: 0 30px 80px rgba(0,0,0,.8), 0 0 0 1px rgba(77,184,255,.18);
  animation: float 4s ease-in-out infinite;
}
.mobile-slide {
  position: absolute; inset: 0; opacity: 0; transition: opacity .65s ease;
}
.mobile-slide.active { opacity: 1; }
.mobile-slide img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: top; display: block;
}
.mobile-nav-dots {
  display: flex; justify-content: center; gap: 6px;
}
.mobile-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: #2a2a3a; border: none; cursor: pointer;
  transition: all .25s; padding: 0;
}
.mobile-dot.active { width: 18px; border-radius: 3px; background: #4db8ff; }
.cta-title { font-family: 'Bebas Neue', sans-serif; font-size: clamp(30px, 5vw, 54px); color: #ece8e0; letter-spacing: 1px; line-height: 1.1; margin-bottom: 1rem; }
.cta-sub { font-size: 15px; color: #9a9590; line-height: 1.7; max-width: 440px; margin: 0 auto 2rem; }
.cta-checks { display: flex; gap: 20px; justify-content: center; flex-wrap: wrap; margin-top: 1.5rem; }
.cta-check { display: flex; align-items: center; gap: 6px; font-size: 12.5px; color: #9a9590; }

/* FOOTER */
footer {
  border-top: 1px solid #1e2030; padding: 2rem 4%;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 1rem; max-width: 1520px; margin: 0 auto;
}
.footer-left { display: flex; align-items: center; gap: 1.5rem; }
.footer-logo { height: 36px; opacity: .85; }
.footer-copy { font-size: 12px; color: #706b63; }
.footer-copy .hl { color: #4db8ff; font-weight: 700; }
.footer-right { display: flex; align-items: center; gap: 1.5rem; }
.footer-year { font-size: 12px; color: #706b63; }

/* MOBILE STICKY CTA BAR — só existe (via markup) nas páginas que a incluem no body */
.mobile-cta-bar { display: none; }

/* Slides do produto no hero — só aparece no mobile (ver media query abaixo) */
.hero-mobile-showcase { display: none; }

/* ============================================================
   RESPONSIVE — mobile reconstruído como experiência própria,
   não uma versão espremida do desktop. Tudo acima deste bloco
   permanece intacto para telas >900px.
   ============================================================ */
@media (max-width: 900px) {
  /* Seções */
  section { padding: 44px 0; }
  #hero { padding: 90px 0 32px; }

  /* Hero grid: 1 coluna */
  .hero-main-grid { grid-template-columns: 1fr; gap: 0; }

  /* Esconde carousel desktop no mobile */
  .screenshot-showcase { display: none; }

  /* Hero texto — mais enxuto, menos altura antes do fold, tudo centralizado */
  .hero-main-grid > div:first-child { text-align: center; }
  .hero-logo-img { height: 84px; margin: 0 auto; }
  .hero-logo-block { margin-bottom: 1rem; }
  .hero-sub { max-width: 100%; font-size: 14.5px; margin-bottom: 1.4rem; }
  .hero-cta { margin-bottom: 1.2rem; justify-content: center; }
  .hero-feat-row { gap: 6px; justify-content: center; }
  .hero-feat { font-size: 11px; padding: .35rem .7rem; }
  /* Some no mobile: a barra fixa de CTA (mobile-cta-bar) já cobre essa ação */
  .hero-cta-hide-mobile { display: none; }

  /* Slides do produto sobem para logo abaixo do hero — não precisa rolar até o fim pra ver o app */
  .hero-mobile-showcase {
    display: flex; flex-direction: column; align-items: center; gap: 14px;
    margin-top: 1.8rem;
  }
  .hero-mobile-showcase .mobile-slider { max-width: 240px; }
  /* Esconde o carrossel da seção CTA — mesmo conteúdo já mostrado no topo */
  .mobile-showcase-wrap { display: none; }

  /* FUNCIONALIDADES: grid de 6 cards vira faixa horizontal com auto-slide contínuo.
     Sem scroll-snap de propósito — ele briga com o drift automático e trava a animação.
     .feat-scroll clipa a barra de rolagem nativa (que insiste em aparecer mesmo com
     ::-webkit-scrollbar/scrollbar-width em alguns navegadores): o .feat-grid ganha uma
     faixa extra de padding-bottom onde a barra é desenhada, e essa faixa fica fora da
     área visível porque o wrapper corta com overflow:hidden. */
  .feat-scroll { overflow: hidden; }
  .feat-grid {
    display: flex; grid-template-columns: unset;
    overflow-x: auto; -webkit-overflow-scrolling: touch;
    gap: 10px; margin: 0 -4% -24px; padding: 0 4% 24px;
    scrollbar-width: none; -ms-overflow-style: none;
  }
  .feat-grid::-webkit-scrollbar { display: none; }
  .feat-card {
    flex: 0 0 132px; padding: 1rem .85rem; text-align: center;
  }
  .feat-icon { width: 38px; height: 38px; font-size: 16px; margin: 0 auto .55rem; }
  .feat-title { font-size: 13px; margin-bottom: 0; }
  .feat-desc { display: none; }

  /* Cabeçalho de seção — menos espaço vazio antes do conteúdo */
  .section-center { margin-bottom: 1.6rem; }

  /* COMO FUNCIONA: cards bem mais enxutos, ainda centralizados */
  .steps-grid { grid-template-columns: 1fr; gap: 8px; }
  .step-card { padding: .8rem 1rem; text-align: center; }
  .step-num { display: none; }
  .step-icon { width: 32px; height: 32px; font-size: 14px; margin: 0 auto .4rem; border-radius: 10px; }
  .step-title { font-size: 13.5px; margin-bottom: 2px; }
  .step-desc { font-size: 11.5px; line-height: 1.4; }

  /* BENEFÍCIOS: mantém 2x2, só reduz densidade */
  .benefit-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .benefit-card { padding: 1.2rem .9rem; }
  .benefit-icon { width: 44px; height: 44px; font-size: 19px; margin-bottom: .7rem; }
  .benefit-title { font-size: 13.5px; }
  .benefit-desc { font-size: 12px; }

  /* PLANOS: cards bem mais enxutos, ainda centralizados */
  .plans-grid { grid-template-columns: 1fr; max-width: 340px; margin: 0 auto; gap: 10px; }
  .plan-card { text-align: center; padding: 1.1rem 1.2rem; }
  .plan-badge { top: -10px; padding: 3px 12px; font-size: 9px; }
  .plan-name { font-size: 14.5px; margin-bottom: 3px; }
  .plan-sub { font-size: 11.5px; margin-bottom: .6rem; }
  .plan-price { margin-bottom: .5rem; }
  .plan-price-val { font-size: 30px; }
  .plan-period { font-size: 11.5px; }
  .economy-badge { padding: 3px 9px; font-size: 10px; margin-bottom: 0; }

  /* STATS: 3 colunas compactas — evita o 3º item sobrando sozinho e o card vazio/desproporcional */
  .stats-band { padding: 1.2rem .8rem; }
  .stats-grid { grid-template-columns: repeat(3, 1fr); gap: .4rem; }
  .stat-value { font-size: 21px; }
  .stat-label { font-size: 9.5px; line-height: 1.25; margin-top: 3px; }

  /* Nav */
  nav .links { display: none; }

  /* CTA section */
  .cta-grid { grid-template-columns: 1fr; gap: 2.2rem; }
  .mobile-slider { width: 100%; max-width: 280px; }
  .cta-box { padding: 2.2rem 1.4rem; }

  /* Footer */
  footer { justify-content: center; text-align: center; }
  .footer-left { flex-direction: column; gap: .6rem; }
  .footer-right { justify-content: center; }
}

@media (max-width: 640px) {
  /* Nav mobile: oculta o menu inteiro — a barra fixa de CTA assume esse papel */
  nav { display: none; }
  #hero { padding-top: 24px; }

  /* Botões de planos: largura total, texto centralizado */
  .plans-cta-btn {
    width: 100%; justify-content: center; text-align: center;
    font-size: 14px; padding: .85rem 1.2rem;
  }
  .plans-trial-wrap .btn-trial {
    width: 100%; justify-content: center; text-align: center;
  }

  /* Barra fixa de CTA no rodapé da tela — sempre visível, foco nunca se perde */
  body { padding-bottom: 76px; }
  .mobile-cta-bar {
    display: flex; position: fixed; left: 0; right: 0; bottom: 0; z-index: 150;
    padding: 10px 5% calc(10px + env(safe-area-inset-bottom));
    background: rgba(8,9,12,.94); backdrop-filter: blur(16px);
    border-top: 1px solid #1e2030;
  }
  .mobile-cta-bar a { width: 100%; justify-content: center; }
}

@media (max-width: 540px) {
  section { padding: 36px 0; }
  .container { padding: 0 5%; }
  h1.hero-title { font-size: clamp(24px, 8vw, 36px); }
  h1.hero-title { line-height: 1.15; }
  .mobile-slider { max-width: 250px; }
  .plans-grid { max-width: 100%; }
  h2.section-title { font-size: clamp(24px, 7.5vw, 40px); }

  /* Botões nav ainda menores em telas muito pequenas */
  .btn-trial, .btn-primary { padding: .44rem .85rem; font-size: 12px; }
}

/* SVG icons inline */
.icon { display: inline-block; vertical-align: middle; }
