/* ==== Mobile-friendly base tweaks injected ==== */
html, body { overflow-x: hidden; }
img, video, canvas, iframe { max-width: 100%; height: auto; }
*:focus-visible { outline: 2px solid rgba(0,0,0,0.5); outline-offset: 2px; }

:root {
  --bg: #0b0f0d;
  --text: #ecf6f0;
  --muted: #a9b6b0;
  --accent: #9ef01a;
  --max: 1120px;
  --radius: 18px;
}

/* RESET */
* { box-sizing: border-box; margin: 0; padding: 0; }
html, body { height: 100%; }
img { display: block; max-width: 100%; height: auto; }
body {
  font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.5;
}
.nowrap { white-space: nowrap; }
.center { text-align: center; }

/* CONTAINER */
.container {
  width: 100%;
  max-width: var(--max);
  margin: auto;
  padding: 0 20px;
}

/* BOTÕES */
.btn {
  display: inline-block;
  border: none;
  border-radius: 999px;
  padding: 12px 18px;
  font-weight: 700;
  text-decoration: none;
  background: #9ef01a;
  color: #000000; /* texto/branco para ícones SVG */
  box-shadow: none; /* remove sombra */
  cursor: pointer;
}

.btn:hover {transform: translateY(-2px); }
.btn-lg { padding: 14px 22px; font-size: 1.2rem; }
.btn-full { width: 100%; }

/* Botões finais (Depoimentos + Footer) */
.btn-final,
a.btn-final,
button.btn-final {
  /* Tamanho da letra e altura */
  font-size: 1.25rem !important;      /* aumente/decrease conforme quiser */
  padding: 1.1rem 2rem !important;    /* padding vertical controla a altura */
  min-height: 64px !important;        /* força uma altura mínima */
  line-height: 1 !important;

  /* Largura */
  width: auto !important;
  max-width: 620px !important;        /* não deixa ficar gigante */
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;

  /* Aparência */
  margin: 12px auto !important;
  text-align: center !important;
  border-radius: var(--radius) !important;
  background: var(--accent) !important;
  color: var(--bg) !important;
  font-weight: 800 !important;
  letter-spacing: 0.6px !important;
  box-shadow: 0 6px 18px rgba(0,0,0,0.25) !important;
  text-transform: uppercase !important;

  transition: transform .18s ease, box-shadow .18s ease !important;
}
.btn-final:hover {
  transform: translateY(-3px) scale(1.02) !important;
  box-shadow: 0 10px 26px rgba(0,0,0,0.32) !important;
}

.btn-final:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 14px rgba(0,0,0,0.3);
}

/* Botão personalizado da seção 2 */
.btn-franquia {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 18px 28px;
  font-size: 1.25rem;
  font-weight: 700;
  border-radius: 28px;
  background: linear-gradient(90deg, #caff58, #9ef01a);
  color: #111;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.25);
  transition: transform 0.18s ease, box-shadow 0.18s ease, filter 0.18s ease;
  margin-top: 20px;
}

.btn-franquia:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 10px 26px rgba(0,0,0,0.32);
  filter: brightness(1.05);
}

/* Responsivo: botão ocupa 100% da largura em telas pequenas */
@media (max-width: 720px) {
  .btn-franquia {
    width: 100%;
  }
}

/* CARDS */
.card {
  background: rgba(0,0,0,.55);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,.10);
  border-radius: var(--radius);
  box-shadow: 0 12px 34px rgba(0,0,0,.28);
  padding: 1rem;
}

.card-link {
  display: block;
  text-decoration: none;
  color: inherit;
}


/* SECTIONS */
.section {
  position: relative;
  min-height: 60vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 4rem 0;
}
.section.solid {
  background: #d4d4d4;
  color: #111;
}
.section .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.45) 0%, rgba(0,0,0,.55) 60%, rgba(0,0,0,.55) 100%);
  z-index: 0;
}
.section .overlay.soft {
  background: linear-gradient(180deg, rgba(0,0,0,.35), rgba(0,0,0,.55));
}
.bg-cover::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--bg) no-repeat center/cover;
  z-index: -1;
  filter: contrast(1.05) saturate(1.02);
}
.section > .container {
  position: relative;
  z-index: 1;
  width: 100%;
}

/* HERO */
#hero { min-height: 86vh; }
.hero-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: 1fr auto; /* texto + form fixo */
  align-items: start;
}

/* Alinha o bloco de texto no topo, mas desce junto com o formulário */
.hero-copy {
  margin-left: 150px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  margin-top: 200px;
}

.hero-copy .kicker {
  opacity: .9; font-weight: 700; text-transform: uppercase; letter-spacing: .4px;
}
.hero-copy h1 { font-size: clamp(36px,6.5vw,64px); line-height: 1.05; margin: .2rem 0 10px; }
.hero-copy .accent { color: var(--accent); }
.hero-copy .big { font-weight: 800; font-size: 1.05em; }
.hero-copy .suffix {color: var(--accent); font-size: .6em; margin-left: .1em; opacity: .9; }
.hero-copy .lead { color: var(--muted); max-width: 52ch; margin: .4rem 0 1rem; }

/* FORMULÁRIO — ALTURA MÁXIMA */
.form {
  background-color: #00B46D;
  padding: 60px 54px;        /* ALTURA MÁXIMA aumentando apenas o padding vertical */
  border-radius: 28px;
  display: grid;
  gap: 32px;                 /* espaço vertical máximo entre campos */
  width: 100%;
  max-width: 600px;
  box-shadow: 0 15px 40px rgba(0,0,0,.4);
  align-self: start;
  margin-top: 200px;
  margin-left: 100px;        /* mantido na mesma posição X */
  min-height: 450px;         /* altura mínima garantida */
}

.form h2 {
  font-size: 2.2rem;         /* título ainda maior */
  margin: 0 0 28px;
  text-align: center;
  font-weight: 700;
  line-height: 1.7;
}

.form label { 
  display: grid; 
  gap: 16px;                 /* espaço máximo entre label e input */
  font-size: 1.4rem;         /* texto ainda maior */
  line-height: 1.7;
  font-weight: 500;
}

.form input {
  padding: 28px 28px;        /* inputs com altura máxima */
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,.4);
  background: rgba(0,0,0,.25);
  color: var(--text);
  outline: none;
  font-size: 1.4rem;         /* texto ainda maior nos inputs */
  min-height: 74px;          /* altura máxima */
  line-height: 1.6;
  transition: all 0.2s ease;
}

.form button {
  padding: 30px 32px;        /* botão com altura máxima */
  min-height: 80px;
  font-size: 1.5rem;         /* texto ainda maior no botão */
  font-weight: 700;
  border-radius: 18px;
  background: linear-gradient(90deg, #caff58, #9ef01a);
  color: #111;
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
  margin-top: 24px;
}

.form input:focus { 
  border-color: var(--accent); 
  box-shadow: 0 0 0 6px rgba(158,240,26,.3);
  transform: translateY(-4px);
}

.form button:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,.35);
}

.note { 
  font-size: 1.2rem;         /* texto da nota ainda maior */
  color: #e0e8e4; 
  margin-top: 16px;
  line-height: 1.8;
}

/* BULLETS */
.narrow { max-width: 900px; margin: auto; }
.bullets {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 16px;
}


.bullet {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  padding: 12px;
  border-radius: 12px;
  background: rgba(0,0,0,.45);
  border: 1px solid rgba(255,255,255,.10);
}
.bullet .num {
  width: 32px;
  height: 32px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  background: rgba(255,255,255,.08);
  font-weight: 800;
  color: var(--accent);
}
.bullet h3 { margin: .2rem 0; }
.section h2 { font-size: clamp(26px,4vw,40px); margin: 0; }

/* BENEFÍCIOS */
.section.right .container { display: flex; justify-content: flex-end; }
.panel {
  max-width: 620px;
  background: rgba(0,0,0,.55);
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 16px;
  padding: 20px;
}
.checks {
  list-style: none;
  margin: 12px 0 18px;
  padding: 0;
  display: grid;
  gap: 10px;
}
.checks li {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.08);
  padding: 10px 12px;
  border-radius: 10px;
}

/* STATS */
.stats-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(4, 1fr);
}

.stat {
  padding: 18px;
  text-align: center;
}
.stat strong {
  display: block;
  font-size: clamp(28px,4vw,40px);
}
.stat span { opacity: .9; }

/* TESTEMUNHOS */
.testi {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(3,1fr);
}

.tcard { padding: 14px; }
.tcard .thumb {
  height: 140px;
  border-radius: 12px;
  background: linear-gradient(180deg,#2a3b31,#151d18);
  border: 1px dashed #2a3b31;
}
.tcard h3 { margin: .6rem 0 .1rem; }
.tcard p { margin: 0; color: #c3cec8; }

/* CTA & FOOTER */
.cta { padding: 48px 0; }
.footer {
  border-top: 1px solid rgba(255,255,255,.08);
  background: #0a0f0d;
  padding: 18px 0;
  color: #98a9a0;
  text-align: center;
}
.backtop {
  color: #cfe7be;
  text-decoration: none;
}
.backtop:hover { text-decoration: underline; }

/* Grid principal da seção */
.grid-2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}


/* Coluna esquerda */
.feature-img {
  border: 3px solid var(--accent);
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 1rem;
}
.feature-img img {
  width: 100%;
  border-radius: 14px;
  display: block;
}

/* Texto */
.left-block h2 {
  font-size: clamp(24px, 4vw, 34px);
  margin: 0.5rem 0;
}
.left-block .lead {
  color: var(--muted);
  margin-top: 0.5rem;
  max-width: 50ch;
}

/* Bullets numeradas */
.bullets-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
@media (max-width: 720px) {
  .bullets-grid {
    grid-template-columns: 1fr;
  }
}
.bullet2 {
  background: rgba(255,255,255,0.28);           /* branco translúcido */
  color: #111;
  border-radius: 12px;
  padding: 16px;
  position: relative;
  border: 1.5px solid rgba(90, 100, 110, 0.18); /* borda cinza translúcida */
  box-shadow: 0 3px 14px rgba(30,35,40,0.07);   /* sombra leve */
  backdrop-filter: blur(2px);                   /* leve desfoque de fundo */
  transition: box-shadow .19s, border .19s;
}
.bullet2 .icon {
  font-size: 20px;
  margin-bottom: 6px;
}
.bullet2 h3 {
  font-size: 1rem;
  margin: 0 0 6px;
}
.bullet2 p {
  font-size: 0.9rem;
  color: #444;
}
.bullet2 .num {
  position: absolute;
  bottom: 10px;
  right: 14px;
  font-weight: 700;
  font-size: 0.85rem;
  opacity: 0.6;
}

/* Stats lado a lado */
#metricas .stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  align-items: stretch;
  height: 100%;
}
#metricas .stat {
  background: #d8f8b0;
  border-radius: 14px;
  padding: 30px 20px;
  text-align: center;
  font-weight: 700;
  color: #0a0f0d;
  box-shadow: 0 6px 18px rgba(0,0,0,.11);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 120px;
  transition: box-shadow .18s, transform .18s;
}
#metricas .stat strong {
  font-size: 2.2rem;        /* número um pouco maior */
  display: block;
  margin-bottom: 8px;
  color: #111;
}
#metricas .stat span {
  font-size: 1rem;          /* texto levemente maior */
  color: #333;
}
#metricas .feature-img img {
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0,0,0,.25);
}

/* Depoimentos */
#depoimentos h2 {
  font-size: clamp(24px, 5vw, 32px);
  margin-bottom: 2rem;
}
.testi {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(3,1fr);
  margin-bottom: 2rem;
}
.testi .depo {
  background: #111;
  color: #fff;
  border-radius: 12px;
  padding: 16px;
  text-align: center;
}
.testi .thumb.video {
  height: 180px;
  border-radius: 12px;
  background: #333 url('images/play-icon.svg') center/40px no-repeat;
  margin-bottom: 12px;
}
.testi h3 {
  margin: 0.5rem 0 0.2rem;
}
.testi p {
  margin: 0;
  font-size: 0.9rem;
  color: #aaa;
}

/* Responsivo */
@media (max-width: 980px) {
  #metricas .grid-2col {
    grid-template-columns: 1fr;
  }
  .testi {
    grid-template-columns: 1fr;
  }
}


/* SEÇÃO 3 - BENEFITS (customizada conforme imagem) */
.benefits-section {
  min-height: 70vh;
  display: flex;
  align-items: center;
  position: relative;
  padding: 0;
}
.benefits-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 0 40px;
  min-height: 70vh;
  z-index: 2;
}


@media (max-width: 980px) {
  .benefits-grid {
    grid-template-columns: 1fr;
    gap: 30px 0;
    justify-items: center;
    text-align: center;
  }
  .benefits-section {
    padding: 40px 0;
  }
}

/* Panda mockup à esquerda */
.benefits-image {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 420px;
}
.benefits-image img {
  max-width: 380px;
  width: 90%;
  height: auto;
  border-radius: 28px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.30);
  background: #222;
}

/* Conteúdo à direita */
.benefits-content {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  z-index: 3;
  padding: 0 0 0 14px;
}
@media (max-width: 980px) {
  .benefits-content {
    align-items: center;
    padding: 0;
  }
}
.benefits-content h2 {
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 800;
  color: #fff;
  margin-bottom: 18px;
  line-height: 1.1;
  text-shadow: 0 2px 10px rgba(0,0,0,0.14);
}

/* Itens de benefícios */
.benefits-items {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 30px;
  width: 100%;
}
.benefit-box {
  display: flex;
  align-items: center;
  background: #9ef01a;
  color: #212d14;
  border-radius: 10px;
  font-weight: 600;
  font-size: 1.02rem;
  padding: 13px 18px;
  box-shadow: 0 2px 16px rgba(158,240,26,0.13);
  transition: box-shadow .19s;
}
.benefit-box .benefit-icon {
  font-size: 1.2em;
  margin-right: 10px;
  color: #006a1b;
  flex-shrink: 0;
}
.benefit-box .benefit-text {
  flex: 1;
  font-size: 1.06em;
}
.benefit-box:not(:last-child) {
  margin-bottom: 0;
}

.benefits-btn:hover {
  background: linear-gradient(90deg, #caff58, #9ef01a 68%);
  color: #000 !important;
  transform: translateY(-2px);
}

/* Seta decorativa */
.benefits-arrow {
  position: absolute;
  top: 10px;
  right: -56px;
  z-index: 4;
  animation: arrow-float 2.2s infinite cubic-bezier(.47,.1,.53,.91);
  display: block;
}

.btn-centraliza {
  grid-column: 1 / -1;  /* ocupa todas as colunas do grid */
  justify-self: center; 
}


@media (max-width: 1280px) {
  .benefits-arrow {
    right: -38px;
  }
}
@media (max-width: 980px) {
  .benefits-arrow {
    display: none;
  }
}
@keyframes arrow-float {
  0%, 100% { transform: translateY(0);}
  50% { transform: translateY(14px);}
}

/* Bullets numeradas (Hover verde na paleta do site) */
.bullet2 {
  background: rgba(255,255,255,0.28);           /* branco translúcido */
  color: #111;
  border-radius: 12px;
  padding: 16px;
  position: relative;
  border: 1.5px solid rgba(90, 100, 110, 0.18);
  box-shadow: 0 3px 14px rgba(30,35,40,0.07);
  backdrop-filter: blur(2px);
  transition: 
    box-shadow .19s,
    border .19s,
    background .18s,
    color .18s;
  cursor: pointer;
}
.bullet2:hover {
  background: #9ef01a;         /* verde da paleta */
  border-color: #9ef01a;       /* borda verde da paleta */
  color: #111;                 /* texto escuro para contraste */
  box-shadow: 0 6px 24px rgba(158,240,26,.15);
}
.bullet2:hover .icon {
  color: #006a1b;              /* ícone verde escuro no hover */
}
.bullet2 .icon {
  font-size: 20px;
  margin-bottom: 6px;
  color: #00B46D;
  transition: color .18s;
}
.bullet2 h3 {
  font-size: 1rem;
  margin: 0 0 6px;
}
.bullet2 p {
  font-size: 0.9rem;
  color: #444;
}
.bullet2 .num {
  position: absolute;
  bottom: 10px;
  right: 14px;
  font-weight: 700;
  font-size: 0.85rem;
  opacity: 0.6;
}

/* FOOTER - Títulos e textos visíveis em fundo escuro */
.footer,
.footer .container,
.footer .cta,
.footer .container.center {
    background: #0a0f0d !important;
    color: #ecf6f0 !important;
    text-align: center;
}

.footer .container.center h2,
.footer .container.center p {
    color: #ecf6f0 !important;
    margin-bottom: 10px;
    font-weight: 700;
    letter-spacing: 0.02em;
}

.footer .container.center h2 {
    font-size: clamp(1.7rem, 4vw, 2.4rem);
    margin-bottom: 12px;
}

.footer .container.center .btn.btn-lg {
    margin: 18px 0 16px 0;
}

.footer .container.center p:last-child {
    font-size: 0.98rem;
    color: #98a9a0 !important;
    margin-bottom: 0;
    margin-top: 10px;
}

@media (max-width: 700px) {
    .footer .container.center h2 {
        font-size: 1.18rem;
    }
    .footer .container.center p {
        font-size: 1rem;
    }
}

/* ...restante do seu CSS... */

/* Coluna direita (imagem) - Manter proporção igual aos cards */
#metricas .feature-img {
  aspect-ratio: 1 / 1;            /* Proporção quadrada (igual aos cards) */
  width: 100%;
  max-width: 360px;               /* Ajuste conforme o tamanho dos cards */
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 3px solid var(--accent);
  border-radius: 18px;
  overflow: hidden;
  background: transparent;
  box-sizing: border-box;
}

#metricas .feature-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;              /* Mantém a imagem preenchida e proporcional */
  border-radius: 16px;
  display: block;
}

/* Responsivo para a imagem acompanhar os cards */
@media (max-width: 980px) {
  #metricas .feature-img {
    max-width: 90vw;
    margin-top: 24px;
    aspect-ratio: 1 / 1;
  }
}

/* SEÇÃO 3 - BENEFITS (customizada conforme imagem) - ATUALIZADA */
.benefits-section {
  min-height: 85vh; /* Aumentei de 70vh para 85vh */
  display: flex;
  align-items: center;
  position: relative;
  padding: 3rem 0; /* Adicionei padding vertical */
}
.benefits-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 0 40px;
  min-height: 75vh; /* Aumentei de 70vh para 75vh */
  z-index: 2;
}
@media (max-width: 980px) {
  .benefits-grid {
    grid-template-columns: 1fr;
    gap: 30px 0;
    justify-items: center;
    text-align: center;
    min-height: auto; /* Ajuste para mobile */
  }
  .benefits-section {
    padding: 60px 0; /* Aumentei o padding para mobile */
    min-height: auto; /* Ajuste para mobile */
  }
}

/* SEÇÃO DEPOIMENTOS ATUALIZADA - 8 VÍDEOS */
#depoimentos h2 {
  font-size: clamp(32px, 6vw, 48px);
  margin-bottom: 2rem;
}

.testi-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(4, 1fr);
  margin-bottom: 2rem;
}

.testi-grid .depo {
  background: #111;
  color: #fff;
  border-radius: 12px;
  padding: 16px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testi-grid .depo:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

.testi-grid .thumb.video {
  height: 140px;
  border-radius: 12px;
  background: #333 url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%239ef01a" width="48px" height="48px"><path d="M8 5v14l11-7z"/></svg>') center/40px no-repeat;
  margin-bottom: 12px;
  border: 2px solid #9ef01a;
}

.testi-grid h3 {
  margin: 0.5rem 0 0.2rem;
  font-size: 1.1rem;
  color: #9ef01a;
}

.testi-grid p {
  margin: 0;
  font-size: 0.9rem;
  color: #aaa;
}

/* Responsivo para 8 depoimentos */
@media (max-width: 1200px) {
  .testi-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 980px) {
  .testi-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .testi-grid {
    grid-template-columns: 1fr;
  }
}

/* Ajustes para melhor espaçamento */
#depoimentos .container {
  max-width: 1200px;
}

#depoimentos .center {
  margin-top: 2rem;
}

:root {
  --bg: #0b0f0d;
  --text: #ecf6f0;
  --muted: #a9b6b0;
  --accent: #9ef01a;
  --max: 1120px;
  --radius: 18px;
}

/* RESET MELHORADO */
* { 
  box-sizing: border-box; 
  margin: 0; 
  padding: 0; 
}
html, body { 
  height: 100%; 
  overflow-x: hidden; /* Previne scroll horizontal */
}
img { 
  display: block; 
  max-width: 100%; 
  height: auto; 
}
body {
  font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.5;
  font-size: 16px; /* Tamanho base para mobile */
}
.nowrap { white-space: nowrap; }
.center { text-align: center; }

/* CONTAINER OTIMIZADO */
.container {
  width: 100%;
  max-width: var(--max);
  margin: auto;
  padding: 0 16px; /* Reduzido para mobile */
}

@media (max-width: 480px) {
  .container {
    padding: 0 12px; /* Ainda menor para telas muito pequenas */
  }
}

/* BOTÕES RESPONSIVOS */
.btn {
  display: inline-block;
  border: 2px solid rgba(158,240,26,.25);
  border-radius: 999px;
  padding: 10px 16px; /* Aumentado para melhor toque */
  font-weight: 700;
  text-decoration: none;
  background:#9ef01a;
  color: #0b210f;
  cursor: pointer;
  font-size: 0.9rem; /* Tamanho garantido */
  min-height: 40px; /* Altura mínima para toque */
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.btn:hover { transform: translateY(-2px); }

.btn-full { width: 100%; }

@media (max-width: 480px) {
  .btn {
    padding: 12px 18px;
    font-size: 0.95rem;
  }
  .btn-lg {
    padding: 14px 20px;
    font-size: 1rem;
  }
}
.btn-seta {
  background: transparent;
  color: #fff !important;
  border: 2px solid  #9ef01a;
  padding: 4px 12px; /* diminui altura e largura do botão */
  max-width: 50%;   /* evita que o botão seja muito largo */
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.btn-seta:hover {
  transform: translateY(-2px);
}


/* SECTIONS OTIMIZADAS */
.section {
  position: relative;
  min-height: 50vh; /* Reduzido para mobile */
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 3rem 0; /* Reduzido para mobile */
}

@media (max-width: 768px) {
  .section {
    min-height: auto; /* Altura automática em mobile */
    padding: 2rem 0; /* Menos padding */
  }
}

.section.solid {
  background: #d4d4d4;
  color: #111;
}
.section .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.45) 0%, rgba(0,0,0,.55) 60%, rgba(0,0,0,.55) 100%);
  z-index: 0;
}
.section .overlay-benefits {
  position: absolute;
  inset: 0;
 background: linear-gradient(
  180deg,
  rgba(0,0,0,.15) 0%,
  rgba(0,0,0,.25) 60%,
  rgba(0,0,0,.25) 100%
);
  z-index: 0;
}

/* HERO RESPONSIVO */
#hero { 
  min-height: 80vh; /* Reduzido para mobile */
}
.hero-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: 1.1fr 1fr;
  align-items: center;
}
@media (max-width: 980px) {
  .hero-grid { 
    grid-template-columns: 1fr;
    gap: 32px; /* Mais espaço entre elementos */
  }
  #hero {
    min-height: auto;
    padding: 2rem 0;
  }
}

.hero-copy .kicker {
  opacity: .9;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .4px;
  font-size: 0.9rem;
}
.hero-copy h1 {
  font-size: clamp(32px, 6vw, 64px); /* Ajuste mais responsivo */
  line-height: 1.1; /* Melhor para mobile */
  margin: .5rem 0 12px;
}
.hero-copy .lead { 
  color: var(--muted); 
  max-width: 100%; /* Ocupa toda largura em mobile */
  margin: .8rem 0 1.5rem;
  font-size: 1.1rem;
}

@media (max-width: 768px) {
  .hero-copy h1 {
    font-size: clamp(28px, 8vw, 42px);
    line-height: 1.15;
  }
  .hero-copy .lead {
    font-size: 1rem;
    line-height: 1.4;
  }
}

/* FORMULÁRIO MOBILE-FIRST */
.form {
  padding: 20px;
  background-color: #00B46D;
  display: grid;
  gap: 12px;
  border-radius: var(--radius);
}
.form h2 { 
  font-size: 1.2rem; 
  margin: 0 0 12px;
  text-align: center;
}
.form label { 
  display: grid; 
  gap: 8px; 
  font-size: 1rem;
}
.form input {
  padding: 14px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(0,0,0,.35);
  color: var(--text);
  outline: none;
  font-size: 1rem;
  min-height: 48px; /* Melhor toque */
}
.form input:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(158,240,26,.15);
}

@media (max-width: 768px) {
  .form {
    padding: 16px;
    gap: 10px;
  }
  .form input {
    padding: 12px;
    min-height: 44px;
  }
}

/* LAYOUT GRID RESPONSIVO */
.grid-2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: start;
}
@media (max-width: 980px) {
  .grid-2col {
    grid-template-columns: 1fr;
    gap: 40px; /* Mais espaço entre seções */
  }
}

@media (max-width: 768px) {
  .grid-2col {
    gap: 32px;
  }
}

/* BULLETS RESPONSIVAS */
.bullets-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
@media (max-width: 720px) {
  .bullets-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
}

.bullet2 {
  background: rgba(255,255,255,0.28);
  color: #111;
  border-radius: 12px;
  padding: 20px;
  position: relative;
  border: 1.5px solid rgba(90, 100, 110, 0.18);
  backdrop-filter: blur(2px);
  transition: all 0.3s ease;
}

@media (max-width: 768px) {
  .bullet2 {
    padding: 16px;
  }
  .bullet2 h3 {
    font-size: 1.1rem;
  }
  .bullet2 p {
    font-size: 0.95rem;
  }
}

/* SEÇÃO BENEFÍCIOS MOBILE */
.benefits-section {
  min-height: 70vh;
  display: flex;
  align-items: center;
  position: relative;
  padding: 2rem 0;
}
.benefits-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 0 40px;
  min-height: 60vh;
  z-index: 2;
}
@media (max-width: 980px) {
  .benefits-grid {
    grid-template-columns: 1fr;
    gap: 30px 0;
    justify-items: center;
    text-align: center;
    min-height: auto;
  }
  .benefits-section {
    padding: 40px 0;
    min-height: auto;
  }
}

.benefits-content h2 {
  font-size: clamp(24px, 5vw, 38px);
  font-weight: 800;
  color: #fff;
  margin-bottom: 20px;
  line-height: 1.2;
}

.benefits-items {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 25px;
  width: 100%;
}

.benefit-box {
  display: flex;
  align-items: center;
  background: #9ef01a;
  color: #212d14;
  border-radius: 10px;
  font-weight: 600;
  font-size: 1rem;
  padding: 14px 16px;
  min-height: 60px;
}

@media (max-width: 768px) {
  .benefits-content h2 {
    font-size: clamp(22px, 6vw, 32px);
    margin-bottom: 16px;
  }
  .benefit-box {
    font-size: 0.95rem;
    padding: 12px 14px;
    min-height: 56px;
  }
}

/* DEPOIMENTOS RESPONSIVOS */
.testi-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(4, 1fr);
  margin-bottom: 2rem;
}

@media (max-width: 1200px) {
  .testi-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 980px) {
  .testi-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }
}

@media (max-width: 600px) {
  .testi-grid {
    grid-template-columns: 1fr;
    gap: 12px;
    max-width: 400px;
    margin-left: 0 auto;
    margin-right: auto;
  }
}

.testi-grid .depo {
  background: #111;
  color: #fff;
  border-radius: 12px;
  padding: 16px;
  text-align: center;
  transition: transform 0.3s ease;
}

.testi-grid .thumb.video {
  height: 120px;
  border-radius: 10px;
  background: #333 url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%239ef01a" width="48px" height="48px"><path d="M8 5v14l11-7z"/></svg>') center/35px no-repeat;
  margin-bottom: 10px;
  border: 2px solid #9ef01a;
}

@media (max-width: 768px) {
  .testi-grid .thumb.video {
    height: 100px;
  }
  .testi-grid h3 {
    font-size: 1rem;
  }
  .testi-grid p {
    font-size: 0.85rem;
  }
}

/* METRICAS RESPONSIVAS */
#metricas .stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

#metricas .stat {
  background: #d8f8b0;
  border-radius: 14px;
  padding: 24px 16px;
  text-align: center;
  font-weight: 700;
  color: #0a0f0d;
  min-height: 100px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

@media (max-width: 768px) {
  #metricas .stats-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  #metricas .stat {
    padding: 20px 12px;
    min-height: 90px;
  }
  #metricas .stat strong {
    font-size: 1.8rem;
  }
}

/* FOOTER MOBILE */
.footer {
  border-top: 1px solid rgba(255,255,255,.08);
  background: #0a0f0d;
  padding: 2rem 0 1rem;
  color: #98a9a0;
  text-align: center;
}

.footer .container.center h2 {
  font-size: clamp(1.4rem, 5vw, 2.4rem);
  margin-bottom: 1rem;
  line-height: 1.2;
}

.footer .container.center p {
  font-size: clamp(0.9rem, 3vw, 1rem);
  line-height: 1.4;
  margin-bottom: 1rem;
}

/* SEÇÃO MÉTRICAS - CENTRALIZADA E ALINHADA */
#metricas .grid-2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center; /* Centraliza verticalmente */
}

#metricas .stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  align-items: stretch; /* Faz todos os items terem mesma altura */
  height: 100%; /* Ocupa toda altura disponível */
}

#metricas .stat {
  background: #d8f8b0;
  border-radius: 14px;
  padding: 30px 20px;
  text-align: center;
  font-weight: 700;
  color: #0a0f0d;
  box-shadow: 0 6px 18px rgba(0,0,0,.11);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 120px; /* Altura mínima igual para todos */
  transition: box-shadow .18s, transform .18s;
}

/* Para números "normais" */
#metricas .stat strong {
  font-size: 2.4rem;
  display: block;
  margin-bottom: 8px;
  color: #00B46D; /* Verde sólido */
  line-height: 1;
}

/* Para números especiais com gradiente */
#metricas .stat.gradient strong {
  background: linear-gradient(135deg, #00B46D, #9ef01a);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

#metricas .stat span {
  font-size: 1rem;
  color: #333;
  line-height: 1.2;
}

/* IMAGEM - mesma altura das métricas */
#metricas .feature-img {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 3px solid var(--accent);
  border-radius: 18px;
  overflow: hidden;
  background: transparent;
}

#metricas .feature-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
  display: block;
}

/* RESPONSIVO */
@media (max-width: 980px) {
  #metricas .grid-2col {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  #metricas .stats-grid {
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    order: 1;
  }
  
  #metricas .feature-img {
    order: 2;
    height: 300px; /* Altura fixa em mobile */
    max-width: 100%;
  }
  
  #metricas .stat {
    padding: 25px 15px;
    min-height: 110px;
  }
  
  #metricas .stat strong {
    font-size: 2rem;
  }
}

@media (max-width: 600px) {
  #metricas .stats-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  
  #metricas .stat {
    min-height: 100px;
    padding: 20px 15px;
  }
  
  #metricas .stat strong {
    font-size: 1.8rem;
  }
  
  #metricas .feature-img {
    height: 250px;
  }
}

.form {
  padding: 7px 10px;
  background-color: #1F7F27;
  display: grid;
  gap: 6px;
  border-radius: var(--radius);
  max-width: 400px;
}
.form h2 { font-size: 1rem; margin: 0 0 6px; }
.form label { gap: 4px; font-size: 0.95rem; }
.form input {
  padding: 5px 10px;
  min-height: 26px;
  font-size: 0.95rem;
  border-radius: 10px;
}
.form button {
  padding: 8px 10px;
  min-height: 32px;
  font-size: 0.95rem;
  border-radius: 10px;
}

@media (max-width: 800px) {
  .form {
    margin-top: 0 !important;
    margin-left:0 auto !important;
    max-width: 100%;
    width: 100%;
  }
}
@media (max-width: 720px) {
  .hero-copy {
    margin-top: 0 !important;
    align-items: center;
    text-align: center;
  }
}
@media (max-width: 480px) {
  .feature-img,
  .benefits-image {
    max-width: 100vw;
    min-width: 0;
    margin: 0 auto 1rem;
  }
}
@media (max-width: 480px) {
  .btn, .btn-lg, .btn-full {
    min-height: 48px;
    font-size: 1rem;
    padding: 12px 0;
  }
}
@media (max-width: 720px) {
  input, select, textarea {
    font-size: 16px !important;
  }
}

@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; gap: 16px; }
  .form { max-width: 100%; padding: 10px 12px; margin-top: 0; } /* em mobile volta a grudar */
}

@media (max-width: 980px) { .hero-grid { grid-template-columns: 1fr; } }

@media (max-width: 980px) {
  .bullets { grid-template-columns: 1fr; }
}

@media (max-width: 980px) {
  .stats-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 980px) {
  .testi { grid-template-columns: 1fr; }
}

@media (max-width: 980px) {
  .grid-2col {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .footer {
    padding: 1.5rem 0 1rem;
  }
  .footer .container.center .btn.btn-lg {
    margin: 1rem 0;
  }
}

/* MELHORIAS GERAIS PARA MOBILE */
@media (max-width: 768px) {
  /* Ajusta padding geral das seções */
  .section {
    padding: 1.5rem 0;
  }
  
  /* Melhora espaçamento de textos */
  h1, h2, h3 {
    line-height: 1.2;
    margin-bottom: 0.8rem;
  }
  
  /* Ajusta tamanhos de fonte */
  body {
    font-size: 15px;
  }
  
  /* Melhora a legibilidade */
  p, li {
    line-height: 1.5;
  }
}

/* PREVENÇÃO DE ZOOM EM INPUTS iOS */
@media screen and (max-width: 768px) {
  input, select, textarea {
    font-size: 16px; /* Previne zoom no iOS */
  }
}

/* MELHORIAS DE ACESSIBILIDADE TOUCH */
@media (max-width: 768px) {
  /* Garante tamanho mínimo para toque */
  a, button, .btn {
    min-height: 44px;
    min-width: 44px;
  }
  
  /* Melhora feedback visual */
  .btn:active {
    transform: scale(0.98);
  }
}

@media (max-width: 720px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    text-align: center;
  }

  .hero-copy h1 {
    font-size: clamp(28px, 8vw, 48px);
  }

  .hero-copy .lead {
    max-width: 90%;
    margin: 0 auto 1.2rem;
  }

  .form {
    padding: 16px;
  }
}


@media (max-width: 720px) {
  .grid-2col {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .left-block .lead {
    max-width: 100%;
  }

  .feature-img {
    max-width: 90%;
    margin: 0 auto 1rem;
  }
}


@media (max-width: 720px) {
  .benefits-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .benefits-content {
    padding: 0;
    align-items: center;
  }

  .benefits-image {
    min-height: 300px;
    margin-bottom: 20px;
  }

  .benefits-items .benefit-box {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .benefit-box .benefit-icon {
    margin-bottom: 6px;
    margin-right: 0;
  }
}


@media (max-width: 720px) {
  #metricas .stats-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  #metricas .feature-img {
    max-width: 90%;
    margin: 24px auto 0;
  }
}


@media (max-width: 720px) {
  .testi-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .testi-grid .thumb.video {
    height: 160px;
  }

  .testi-grid h3 {
    font-size: 1rem;
  }

  .testi-grid p {
    font-size: 0.85rem;
  }
}


@media (max-width: 480px) {
  .footer .container.center h2 {
    font-size: 1.2rem;
  }

  .footer .container.center p {
    font-size: 0.9rem;
  }

  .footer .container.center .btn.btn-lg {
    padding: 12px 18px;
    font-size: 0.95rem;
  }
}

@media (max-width: 480px) {
  .btn-final {
    width: 90% !important;
    max-width: 360px !important;
    font-size: 1.05rem !important;
    padding: 0.9rem 1.6rem !important;
    min-height: 56px !important;
  }
}
.testi-grid .thumb.video {
  width: 100%;
  aspect-ratio: 9 / 16;    /* formato retrato */
  height: auto;
  border-radius: 12px;
  background: #000 center / cover no-repeat;
  border: 2px solid #9ef01a;
  margin-bottom: 12px;
}
/* Esconde a seção extra no desktop/tablet */
.mobile-only { display: none; }
/* ===== DEPOIMENTOS — 12 cards (6x2 no desktop) ===== */
.testi-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(6, minmax(0, 1fr)); /* 6 colunas */
  margin-bottom: 2rem;
  align-items: start;
}

.tcard.depo { padding: 12px; }

.testi-grid .thumb.video {
  width: 100%;
  aspect-ratio: 9 / 16;   /* mantém retrato */
  height: auto;
  border-radius: 8px;
  background: #000 center / cover no-repeat;
  border: 2px solid #9ef01a;
  margin-bottom: 8px;
}

.testi-grid h3 {
  margin: 0.4rem 0 0;
  font-size: 0.9rem;      /* menor pra caber 6 por linha */
  color: #00B46D;
  text-align: center;
}

/* Breakpoints responsivos */
@media (max-width: 1200px) {
  .testi-grid { grid-template-columns: repeat(4, 1fr); }
}
@media (max-width: 980px) {
  .testi-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 720px) {
  .testi-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .testi-grid { grid-template-columns: 1fr; }
}
/* Botão destacado */
.benefits-btn {
  display: block;
  margin-left: auto;
  margin-top: 12px;
  margin-right: -475px;
  width: 100%;
  max-width: 420px;
  background: #9ef01a;
  color: #111 !important;
  font-size: 1.08rem;
  letter-spacing: 0.5px;
  font-weight: 800;
  border: none;
  box-shadow: 0 6px 28px rgba(158,240,26,0.18);
  text-align: center;
  text-transform: uppercase;
}
#franquia {
  position: relative;
  background-color: #d4d4d4;
  /* Listras só no topo, centralizadas horizontalmente */
  background-image: url('img/Imgs-panda/listras.png');
  background-repeat: no-repeat;
  background-position: top center;
  background-size: 100% auto; /* 100% largura, altura automática */
}

#metricas {
  position: relative;
  background-color: #d4d4d4;
  /* Listras só no topo, centralizadas horizontalmente */
  background-image: url('img/Imgs-panda/listras.png');
  background-repeat: no-repeat;
  background-position: top center;
  background-size: 100% auto; /* 100% largura, altura automática */
}

/* Botão "Quero ser franqueado!" embaixo da imagem (coluna direita) */
#metricas .btn-central {
  grid-column: 2;        /* põe na coluna da direita */
  justify-self: center;  /* centraliza na própria coluna */
  align-self: start;     /* gruda no topo da célula */
  margin-top: 16px;
  display: block;
}

/* ===== iPhone Video Mockup for .thumb.video ===== */
.testi-grid .thumb.video {
  position: relative;
  width: 100%;
  aspect-ratio: 9 / 19.5;
  height: auto;
  background: #111 center / cover no-repeat;
  border-radius: 36px;
  border: 3px solid #222;
  box-shadow: 0 6px 28px rgba(0,0,0,0.22), 0 0 0 4px #fff;
  overflow: hidden;
}

/* Simula moldura iPhone — botão Home/Face ID, speaker, sensor */
.testi-grid .thumb.video::before,
.testi-grid .thumb.video::after {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  background: #222;
  border-radius: 32px;
  opacity: 0.22;
  pointer-events: none;
  z-index: 2;
}
.testi-grid .thumb.video::before {
  top: 10px;
  width: 60px;
  height: 6px;
  background: #444;
  border-radius: 6px;
  opacity: 0.5;
}
.testi-grid .thumb.video::after {
  bottom: 13px;
  width: 38px;
  height: 38px;
  background: #444;
  border-radius: 50%;
  opacity: 0.15;
}

/* Adiciona brilho sutil nas bordas */
.testi-grid .thumb.video {
  box-shadow:
    0 1px 8px 0 #fff inset,
    0 8px 32px rgba(0,0,0,0.22),
    0 0 0 4px #fff;
}

/* Simula tela interna — use um <img> ou <video> absoluto dentro */
.testi-grid .thumb.video > .iphone-screen {
  position: absolute;
  top: 24px;
  left: 0;
  width: 100%;
  height: calc(100% - 48px); /* deixa espaço para moldura */
  border-radius: 28px;
  background: #000 center/cover no-repeat;
  z-index: 1;
  overflow: hidden;
}


/* Para links, mantém a responsividade e o toque */
@media (max-width: 720px) {
  .testi-grid .thumb.video {
    border-radius: 28px;
  }
}

/* Opcional: animação de brilho (reflexo) */
.testi-grid .thumb.video::after {
  animation: shine-iphone 4s linear infinite;
}
@keyframes shine-iphone {
  0% { opacity: 0.22; }
  48% { opacity: 0.32; }
  85% { opacity: 0.12; }
  100% { opacity: 0.22; }
}

/* tira a tela de fundo preta dos videos
*/
.testi-grid .thumb.video,
.testi .thumb.video,
.thumb.video {
  background-color: transparent !important; /* clear any black color */
  background-blend-mode: normal !important;
}

.testi-grid .thumb.video > .iphone-screen,
.thumb.video > .iphone-screen {
  background-color: transparent !important;
  background-image: none !important; /* inner wrapper shouldn't block the visible thumbnail */
}

/* If thumbnails still show a black bar from element backgrounds or padding,
   this forces any ancestor .depo/.tcard backgrounds to be transparent for the thumb area. */
.testi-grid .depo,
.testi-grid .tcard {
  background-color: transparent !important;
}