/* ════════════════════════════════════════════════════
   VARIÁVEIS E RESET
════════════════════════════════════════════════════ */
:root {
  --verde-escuro : #013029;
  --verde-medio  : #00968C;
  --verde-claro  : #02a09a;
  --verde-hero   : #008985;
  --branco       : #ffffff;
  --cinza-texto  : #2A2A2A;
}

@font-face {
  font-family: 'Lakaran Black';
  src: url('../fonts/lakaran_black.woff2') format('woff2'),
       url('../fonts/lakaran_black.woff')  format('woff');
  font-style: normal;
  font-weight: 800;
  font-display: swap;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html  { scroll-behavior: smooth; }
body  {
  font-family: 'Montserrat', Helvetica, Arial, Lucida, sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: var(--cinza-texto);
  background: var(--branco);
  line-height: 1.7em;
}
a   { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; display: block; }

/* Container padrão Divi: 80 % / max 1080 px */
.container {
  width: 80%;
  max-width: 1080px;
  margin: 0 auto;
}


/* ════════════════════════════════════════════════════
   HEADER — fixo, transparente → branco ao rolar
════════════════════════════════════════════════════ */
#header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: transparent;
  transition: background .3s, box-shadow .3s;
}
#header.scrolled {
  background: #fff;
  box-shadow: 0 2px 10px rgba(0,0,0,.10);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}

/* Logo branca sobre o hero; colorida depois de rolar */
.logo-nav { height: 44px; transition: filter .3s; }
#header:not(.scrolled) .logo-nav { filter: brightness(0) invert(1); }

/* Menu desktop */
.nav-menu {
  display: flex;
  list-style: none;
  align-items: stretch;
}
.nav-menu > li { display: flex; align-items: stretch; }
.nav-menu > li > a {
  display: flex;
  align-items: center;
  padding: 0 13px;
  font-size: 14px;
  font-weight: 600;
  color: rgba(255,255,255,.85);
  transition: color .2s;
  white-space: nowrap;
}
#header.scrolled .nav-menu > li > a { color: rgba(1,48,41,.7); }
#header.scrolled .nav-menu > li > a:hover,
#header.scrolled .nav-menu > li.active > a { color: var(--verde-escuro); }
.nav-menu > li > a:hover { color: #fff; }

/* Submenu */
.has-sub { position: relative; }
.submenu {
  display: none;
  position: absolute;
  top: 100%; left: 0;
  background: var(--verde-claro);
  min-width: 200px;
  list-style: none;
  border-top: 3px solid #fff;
  z-index: 200;
}
.has-sub:hover .submenu { display: block; }
.submenu li a {
  display: block;
  padding: 10px 18px;
  font-size: 13px;
  color: #fff;
  border-bottom: 1px solid rgba(255,255,255,.15);
  transition: background .2s;
}
.submenu li a:hover { background: rgba(255,255,255,.12); }

/* Hambúrguer mobile */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.nav-toggle span {
  display: block; width: 24px; height: 2px;
  background: #fff; border-radius: 2px; transition: background .3s;
}
#header.scrolled .nav-toggle span { background: var(--verde-escuro); }

/* Menu mobile overlay */
.mobile-menu {
  display: none;
  position: fixed;
  top: 70px; left: 0; right: 0; bottom: 0;
  background: rgba(1,48,41,.97);
  z-index: 999;
  padding: 24px;
  overflow-y: auto;
}
.mobile-menu.aberto { display: block; }
.mobile-menu ul { list-style: none; }
.mobile-menu ul a {
  display: block; color: #fff;
  font-size: 16px; padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.mobile-menu .sub-links a { font-size: 14px; opacity: .8; padding-left: 16px; }


/* ════════════════════════════════════════════════════
   HERO — foto + gradiente descendente
════════════════════════════════════════════════════ */
#hero {
  background-image:
    linear-gradient(180deg,
      rgba(0,0,0,0)        0%,
      rgba(0,62,60,.04)   30%,
      rgba(0,100,97,.45)  65%,
      rgba(0,137,133,.88) 85%,
      #008985             100%
    ),
    url('../images/section1-background-3.webp');
  background-size: 100% auto;
  background-position: center top;
  background-repeat: no-repeat;
  padding: 120px 0 80px;
  text-align: center;
}

.hero-logo {
  max-width: 120px;
  margin: 0 auto 36px;
}

#hero h1 {
  font-size: 22px; font-weight: 700;
  color: rgba(255,255,255,.9);
  letter-spacing: .5px;
  line-height: 1.2em;
  margin-bottom: 18px;
}

#hero h2 {
  font-size: 33px; font-weight: 700;
  text-transform: uppercase;
  color: #fff;
  line-height: 1.2em;
  margin-bottom: 20px;
  max-width: 900px;
  margin-left: auto; margin-right: auto;
}

#hero p {
  font-size: 18px; font-weight: 300;
  color: rgba(255,255,255,.9);
  max-width: 620px;
  margin: 0 auto;
  line-height: 1.4em;
}


/* ════════════════════════════════════════════════════
   SEÇÃO 1 — SOBRE + VÍDEO (fundo teal)
════════════════════════════════════════════════════ */
#sobre {
  background: linear-gradient(180deg, #008985 0%, #00968C 100%);
  padding: 60px 0;
}

.sobre-grid {
  display: flex;
  gap: 50px;
  align-items: center;
}

.sobre-texto { flex: 1; }

/* Heading: primeira parte escura (contraste sobre teal), resto branco e grande */
.sobre-texto h2 {
  font-size: 36px; font-weight: 800;
  color: #fff;
  line-height: 1.2em;
  margin-bottom: 24px;
}
.sobre-texto h2 em {
  font-style: normal;
  color: var(--verde-escuro);
}

.sobre-texto p {
  font-size: 16px;
  color: rgba(255,255,255,.9);
  line-height: 1.75em;
  margin-bottom: 14px;
}

/*texto que está abaixo do h1 e h2 quando abre o site*/
.sobre-texto .subhero {
  font-size: 50px;
}

/*fonte do texto que está abaixo da "pilates no mundo"*/
.sobre-texto .section2 {
  font-size: 20px;
  font-weight: 350;
}


/* Linha de destaque final */
.sobre-texto .destaque {
  font-size: 25px;
  font-weight: 700;
  color: var(--verde-escuro);
}

/* Coluna do vídeo */
.sobre-video { flex: 1; }

/* Container do thumbnail — posição relative para o play button */
.video-wrap {
  position: relative;
  cursor: pointer;
  border-radius: 10px;
  overflow: hidden;
}
.video-wrap img { width: 100%; border-radius: 10px; }

/* Círculo vermelho com triângulo de play (igual ao original) */
.play-btn {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 72px; height: 72px;
  background: #e00;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  opacity: 0;
  transition: background .2s, transform .2s, opacity .2s;
}
.play-btn::after {
  content: '';
  display: block;
  border-style: solid;
  border-width: 14px 0 14px 26px;
  border-color: transparent transparent transparent #fff;
  margin-left: 4px;
}
.video-wrap:hover .play-btn {
  opacity: 1;
  background: #c00;
  transform: translate(-50%, -50%) scale(1.08);
}

#videoContainer iframe {
  width: 100%; aspect-ratio: 16/9;
  border: none; border-radius: 10px;
}


/* ════════════════════════════════════════════════════
   SEÇÃO 2A — CONTADORES
   Fundo teal, caixa semitransparente arredondada
════════════════════════════════════════════════════ */
#contadores {
  background: var(--verde-medio);
  padding: 0 0 50px;
}

.contadores-box {
  background: linear-gradient(
    to bottom,
    rgba(255,255,255,.18) 0%,
    rgba(255,255,255,.10) 60%,
    rgba(255,255,255,0)   100%
  );
  border-radius: 14px 14px 0 0;
  padding: 36px 30px 48px;
  display: flex;
  gap: 10px;
  text-align: center;
}

.contador-item { flex: 1; }

.contador-item h3 {
  font-family: 'Lakaran Black', sans-serif;
  font-size: 35px; font-weight: 800;
  color: #fff;
  line-height: 1.1em;
  margin-bottom: 8px;
}

.contador-item p {
  font-size: 14px; font-weight: 500;
  color: var(--verde-escuro);
  line-height: 1.5em;
}

.contador-item:nth-child(odd) h3 {
  color: var(--verde-escuro);
}


/* ════════════════════════════════════════════════════
   SEÇÃO 2B — CARDS DE PRODUTO (fundo teal, cards brancos)
════════════════════════════════════════════════════ */
#produtos {
  background: var(--verde-medio);
  padding: 20px 0 60px;
}

#produtos .container {
  width: 92%;
  max-width: 1400px;
}

.produtos-row {
  display: flex;
  gap: 24px;
  align-items: stretch;
}

.produto-card {
  flex: 1;
  text-align: center;
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,.13);
  display: flex;
  flex-direction: column;
}

.produto-card img { width: 100%; height: 220px; object-fit: cover; }

.produto-card-corpo {
  padding: 24px 22px 32px;
  display: flex; flex-direction: column;
  flex: 1;
}

.produto-card h2 {
  font-size: 20px; font-weight: 700;
  color: var(--cinza-texto);
  margin-bottom: 14px;
  line-height: 1.3em;
}

.produto-card p {
  font-size: 15px; color: #555;
  line-height: 1.75em; margin-bottom: 24px;
  flex: 1;
}

.produto-card p.cardscursos {
  font-size: 18px;
  font-weight: 500;
}

/* Botão sólido marrom-escuro — igual ao original */
.btn-conheca {
  display: inline-block;
  align-self: center;
  font-size: 13px; font-weight: 700;
  color: #fff;
  background: #5c4010;
  border: none;
  padding: 10px 24px; border-radius: 4px;
  text-transform: uppercase; letter-spacing: .5px;
  white-space: nowrap;
  transition: background .2s;
}
.btn-conheca:hover { background: #3e2b0a; }


/* ════════════════════════════════════════════════════
   SEÇÃO 3 — DEPOIMENTOS
   Fundo teal / label em verde-escuro / cards brancos
════════════════════════════════════════════════════ */
#depoimentos {
  background: var(--verde-medio);
  padding: 80px 0;
}

.depo-grid {
  display: flex;
  flex-direction: row;
  gap: 25px;
  align-items: flex-start;
  background: linear-gradient(
    to bottom,
    var(--verde-escuro) 0%,
    var(--verde-escuro) 55%,
    rgba(1,48,41,0)    100%
  );
  border-radius: 24px 24px 0 0;
  padding: 60px 50px 80px;
  width: 92%;
  max-width: 1200px;
  margin: 0 auto;
}

/* Caixa do título e descrição no canto superior esquerdo */
.depo-label {
  flex: 0 0 27%;
  background: transparent;
  padding: 0;
  text-align: left;
  margin-bottom: 0;
}

.depo-label h2 {
  font-size: 28px;
  font-weight: 800;
  color: var(--verde-medio);
  line-height: 1.25em;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.depo-label p {
  font-size: 14px;
  color: rgba(255,255,255,.9);
  line-height: 1.75em;
}

/* Container externo: botões + slider em linha */
.depo-slider-outer {
  flex: 1;
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 15px;
}

/* Clip do carrossel — ocupa todo o espaço entre os botões */
.depo-slider-wrap {
  flex: 1;
  min-width: 0;
  overflow: hidden;
}

.depo-track {
  display: flex;
  gap: 20px;
  transition: transform .4s ease;
  will-change: transform;
}

.depo-card {
  background: #fff;
  border-radius: 24px;
  padding: 30px 20px;
  box-shadow: 0 4px 20px rgba(0,0,0,.08);
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  aspect-ratio: 1 / 1;
}

.depo-foto {
  width: 75px;
  height: 75px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 15px;
  border: 3px solid #fff;
  box-shadow: 0 4px 10px rgba(0,0,0,.08);
}

/* Texto primeiro, estrelas depois */
.depo-texto {
  font-size: 12.5px;
  color: #4a5568;
  line-height: 1.65em;
  margin-bottom: 15px;
  flex-grow: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.depo-estrelas {
  color: #f5a623;
  font-size: 18px;
  margin-bottom: 12px;
}

.depo-nome {
  font-size: 14px;
  font-weight: 700;
  color: #00615A;
  margin-bottom: 4px;
}

.depo-cidade {
  font-size: 12px;
  color: #51576C;
}

/* Botões laterais — setas simples, maiores e sem borda */
.depo-btn {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border: none;
  background: transparent;
  cursor: pointer;
  color: var(--verde-medio);
  font-size: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity .2s, transform .2s;
}
.depo-btn:hover {
  opacity: 0.7;
  transform: scale(1.15);
}


/* ════════════════════════════════════════════════════
   SEÇÃO 4 — BLOG (fundo teal, cards brancos)
════════════════════════════════════════════════════ */
#blog {
  background: var(--verde-medio);
  padding: 60px 0;
}

.blog-titulo {
  font-size: 30px; font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-align: center;
  margin-bottom: 36px;
  line-height: 1.1em;
}

.blog-grid { display: flex; gap: 24px; }

.post-card {
  flex: 1;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 3px 16px rgba(0,0,0,.12);
}

.post-card img { width: 100%; }

.post-card-corpo { padding: 18px 20px 24px; }

.post-card h2 {
  font-size: 20px; font-weight: 700;
  color: #00615A;
  margin-bottom: 8px; line-height: 1.35em;
}

.post-data {
  font-size: 11px;
  font-weight: 500;
  margin-bottom: 12px; display: block;
}

.post-resumo {
  font-size: 16px; 
  font-weight: 450;
  line-height: 1.65em; margin-bottom: 16px;
}

.post-link a {
  font-size: 14px; font-weight: 700;
  color: #00615A;
  text-decoration: underline;
}
.post-link a:hover { opacity: .75; }


/* ════════════════════════════════════════════════════
   SEÇÃO 5 — NEWSLETTER
   Fundo teal, caixa interna escura arredondada
════════════════════════════════════════════════════ */
#newsletter {
  background: var(--verde-medio);
  padding: 60px 0;
  text-align: center;
}

.newsletter-box {
  background: #2a2a2a;
  border-radius: 16px;
  padding: 50px 60px;
  max-width: 760px;
  margin: 0 auto;
}

.newsletter-titulo {
  font-size: 22px; font-weight: 700;
  color: #fff;
  margin-bottom: 6px; line-height: 1.4em;
}
.newsletter-titulo span { color: #00CCBE; display: block; font-size: 20px; }

#grupo-voll-site-institucional-newsletter-8960ec4342bf6a3100d5 {
  min-height: 170px;
}

#rd-button-lx9h6m4h.bricks--component-button {
  height: auto !important;
  min-height: 0 !important;
  max-height: none !important;
}

@media (min-width: 601px) {
  #rd-button-lx9h6m4h.bricks--component-button {
    padding-top: 10px !important;
    padding-bottom: 10px !important;
  }
}

.newsletter-form {
  display: flex; flex-direction: column;
  gap: 12px; margin-top: 24px;
}
.newsletter-form input {
  padding: 14px 20px;
  border: none; border-radius: 4px;
  background: #e8e8e8;
  font-family: 'Montserrat', sans-serif; font-size: 14px;
  width: 100%; outline: none; color: #333;
}
.newsletter-form input::placeholder { color: #888; }
.newsletter-form button {
  padding: 16px 28px;
  background: #c9982a; color: #1a1a1a;
  border: none; border-radius: 4px;
  font-family: 'Montserrat', sans-serif; font-size: 14px;
  font-weight: 800; cursor: pointer;
  text-transform: uppercase; letter-spacing: 1px;
  transition: background .2s;
}
.newsletter-form button:hover { background: #b8871f; }


/* ════════════════════════════════════════════════════
   SEÇÃO 6 — AVISO DE GOLPES
   Fundo verde-escuro, texto branco, validador de tel.
════════════════════════════════════════════════════ */
#golpes {
  background: var(--verde-escuro);
  padding: 60px 0;
  text-align: center;
}

#golpes h2 {
  font-size: 32px; font-weight: 800;
  color: #fff; margin-bottom: 8px;
  line-height: 1.2em;
}

#golpes .golpes-sub {
  font-size: 30px; font-weight: 350;
  color: rgba(255,255,255,.85);
  margin-bottom: 40px;
  line-height: 1.1em;
}

/* Caixa branca do validador */
.validador-box {
  background: #fff;
  border-radius: 12px;
  padding: 36px 40px;
  max-width: 580px;
  margin: 0 auto 50px;
  text-align: left;
}

.validador-box h3 {
  font-size: 18px; font-weight: 700;
  color: var(--cinza-texto); text-align: center;
  margin-bottom: 20px;
}

.validador-box label {
  display: block; font-size: 13px;
  color: var(--cinza-texto); margin-bottom: 6px;
}

.validador-box input {
  width: 100%; padding: 12px 16px;
  border: 1px solid #ddd; border-radius: 6px;
  font-family: 'Montserrat', sans-serif; font-size: 14px;
  background: #f5f5f5; outline: none; margin-bottom: 14px;
}

.validador-box button {
  width: 100%; padding: 14px;
  background: #1a69b8; color: #fff;
  border: none; border-radius: 6px;
  font-family: 'Montserrat', sans-serif; font-size: 15px;
  font-weight: 700; cursor: pointer; transition: background .2s;
}
.validador-box button:hover { background: #1558a0; }

.validador-resultado {
  text-align: center; font-size: 13px;
  color: #51576C; margin-top: 10px;
}

/* Seção de contas bancárias (segunda parte de golpes) */
#golpes-contas {
  background: #1a1a1a;
  padding: 60px 0;
}

#golpes-contas h2 {
  font-size: 24px; font-weight: 700;
  color: #fff; text-align: center;
  margin-bottom: 24px;
}

#golpes-contas p {
  font-size: 14px; color: rgba(255,255,255,.75);
  line-height: 1.8em; margin-bottom: 10px;
}
#golpes-contas strong { color: #fff; }

#golpes-contas .destaque-texto {
  color: var(--verde-claro);
}

/* Grade de 3 colunas; linha 2 com 2 cards é centralizada via justify-content */
.contas-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 30px;
}
.conta-box {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 10px; padding: 20px;
  font-size: 13px; line-height: 1.9em; color: rgba(255,255,255,.8);
}
.conta-box strong {
  display: block; font-size: 14px;
  margin-bottom: 6px; color: #fff;
}
.conta-box .destaque-texto { color: var(--verde-claro); }

.conta-box:nth-child(4) { grid-column: 1; }
.conta-box:nth-child(4),
.conta-box:nth-child(5) {
  grid-column: span 1;
}
.contas-segunda-linha {
  grid-column: 1 / -1;
  display: flex;
  gap: 16px;
  justify-content: flex-start;
}
.contas-segunda-linha .conta-box {
  flex: 0 0 calc(33.33% - 6px);
}


/* ════════════════════════════════════════════════════
   FOOTER SUPERIOR — branco, 4 colunas
════════════════════════════════════════════════════ */
#footer-top {
  background: var(--branco);
  padding: 54px 0 34px;
}

.footer-grid { display: flex; gap: 30px; }
.footer-col  { flex: 1; }

.footer-col h3 {
  font-size: 23px; font-weight: 700;
  color: var(--verde-escuro); margin-bottom: 20px;
}

.footer-logo { max-width: 130px; margin-bottom: 0; }

.parceiro-logo { display: block; max-width: 120px; margin-bottom: 12px; }

.footer-instagram {
  display: flex; align-items: center;
  gap: 8px; margin-bottom: 14px;
}
.footer-instagram img { width: 27px; height: 27px; }
.footer-instagram a { font-size: 14px; color: var(--verde-escuro); }
.footer-instagram a:hover { text-decoration: underline; }

/* Ícones sociais — pretos sem fundo (igual ao original) */
.social-icons { display: flex; gap: 16px; list-style: none; margin-top: 8px; }
.social-icons a {
  display: flex; align-items: center; justify-content: center;
  color: var(--cinza-texto); font-size: 22px; transition: opacity .2s;
}
.social-icons a:hover { opacity: .6; }

.footer-links { list-style: none; }
.footer-links li { margin-bottom: 10px; }
.footer-links a { font-size: 15px; color: var(--verde-escuro); transition: color .2s; }
.footer-links a:hover { color: var(--verde-medio); text-decoration: underline; }


/* ════════════════════════════════════════════════════
   FOOTER INFERIOR — verde-escuro
════════════════════════════════════════════════════ */
#footer-bottom {
  background: var(--verde-escuro);
  padding: 18px 0;
}
.footer-bottom-inner {
  display: flex; justify-content: space-between;
  align-items: center; flex-wrap: wrap; gap: 8px;
}
#footer-bottom p { font-size: 12px; color: #b5b5b5; }


/* ════════════════════════════════════════════════════
   BOTÃO WHATSAPP FLUTUANTE
════════════════════════════════════════════════════ */
#whatsapp-float {
  position: fixed;
  bottom: 20px; right: 20px;
  z-index: 99999;
}
#whatsapp-float a {
  display: flex; align-items: center; justify-content: center;
  width: 60px; height: 60px;
  border-radius: 50%; background: #25D366;
  box-shadow: 0 4px 12px rgba(0,0,0,.18);
  animation: wa-bounce 2s ease infinite;
}
#whatsapp-float a:hover { animation: none; transform: scale(1.1); }
#whatsapp-float svg { width: 28px; height: 28px; fill: #fff; }

@keyframes wa-bounce {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-7px); }
}

@supports (content-visibility: auto) {
  #produtos,
  #blog,
  #newsletter,
  #golpes,
  #golpes-contas,
  #footer-top,
  #footer-bottom {
    content-visibility: auto;
    contain-intrinsic-size: auto 760px;
  }

  #golpes-contas,
  #footer-top {
    contain-intrinsic-size: auto 560px;
  }
}


/* ════════════════════════════════════════════════════
   RESPONSIVIDADE
════════════════════════════════════════════════════ */
@media (max-width: 980px) {
  .container { width: 90%; }

  #hero { background-size: cover; }
  #hero h2 { font-size: 26px; }

  .sobre-grid,
  .depo-grid        { flex-direction: column; }
  .sobre-texto,
  .sobre-video      { width: 100%; }
  .depo-grid        { padding: 40px 20px; gap: 30px; width: 100%; max-width: none; }
  .depo-label       { flex: unset; width: 100%; text-align: center; }
  .depo-slider-outer { width: 100%; min-width: 0; }

  .contadores-box { flex-wrap: wrap; }
  .contador-item  { flex: 0 0 calc(33% - 8px); }

  .produtos-row { flex-wrap: wrap; }
  .produto-card { flex: 0 0 calc(50% - 11px); }

  .blog-grid  { flex-wrap: wrap; }
  .post-card  { flex: 0 0 calc(50% - 12px); }

  .footer-grid { flex-wrap: wrap; }
  .footer-col  { flex: 0 0 calc(50% - 15px); }

  .nav-menu   { display: none; }
  .nav-toggle { display: flex; }
}

@media (max-width: 600px) {
  #hero h1 { font-size: 17px; }
  #hero h2 { font-size: 20px; }
  #hero p  { font-size: 19px; }
  .sobre-texto h2 { font-size: 26px; }

  .contador-item { flex: 0 0 calc(50% - 6px); }
  .produto-card  { flex: 0 0 100%; }
  .post-card     { flex: 0 0 100%; }
  .footer-col    { flex: 0 0 100%; }

  /* Depoimentos: remove aspect-ratio e compacta espaçamento */
  .depo-card { flex: 0 0 100%; aspect-ratio: auto; height: auto; padding: 20px 16px 24px; }
  .depo-foto { width: 64px; height: 64px; margin-bottom: 12px; position: static; transform: none; }
  .depo-slider-outer { padding-top: 0; }
  .depo-texto { font-size: 13px; margin-bottom: 12px; }

  /* PIX/Contas: empilha para 1 coluna no mobile */
  .contas-grid { grid-template-columns: 1fr; }
  .contas-segunda-linha { flex-direction: column; }

  /* Newsletter: padding menor e botão em linha única */
  .newsletter-box { padding: 32px 20px; }
  .newsletter-form button { font-size: 11px; letter-spacing: .5px; padding: 14px 16px; white-space: nowrap; }

  .footer-bottom-inner { flex-direction: column; text-align: center; }
  .newsletter-form input[type="email"] { width: 100%; }
}
