/* ═══════════════════════════════════════════════════
   RODRIGO MEDEIROS — HIPNOTERAPEUTA | MÉTODO EIXO
   Design Premium — Mobile First — PageSpeed 100
   ═══════════════════════════════════════════════════ */

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; -webkit-text-size-adjust: 100%; overflow-x: hidden; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: #fff;
  color: #1a1a2e;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  max-width: 100vw;
}
img  { max-width: 100%; height: auto; display: block; }
a    { color: inherit; text-decoration: none; }
ul   { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
h1,h2,h3,h4 { line-height: 1.15; letter-spacing: -0.02em; }

/* ── VARIÁVEIS ── */
:root {
  /* cores */
  --dark:     #0c1929;
  --dark2:    #0f2238;
  --dark3:    #152c4a;
  --navy:     #0e1f3a;
  --blue:     #1e40af;
  --blue-l:   #3b82f6;
  --blue-mid: #2563eb;
  --gold:     #c9a84c;
  --gold-l:   #e8c97e;
  --cream:    #fdf8f0;
  --white:    #ffffff;
  --light:    #f4f6fb;
  --border:   #e5e9f2;
  --muted:    #6b7280;
  --green:    #059669;
  --red:      #dc2626;

  /* sombras */
  --sh-sm:  0 1px 4px rgba(0,0,0,.07);
  --sh-md:  0 4px 20px rgba(0,0,0,.09);
  --sh-lg:  0 8px 40px rgba(0,0,0,.13);
  --sh-xl:  0 20px 60px rgba(0,0,0,.18);
  --sh-glow:0 0 40px rgba(30,64,175,.25);

  /* radii */
  --r-sm: 8px;
  --r:    14px;
  --r-lg: 22px;
  --r-xl: 32px;
  --pill: 999px;

  /* misc */
  --nav-h: 72px;
  --tr: all .22s cubic-bezier(.4,0,.2,1);
  --max-w: 1160px;
}

/* ── LAYOUT ── */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2rem);
  box-sizing: border-box;
}
.section { padding: clamp(5rem, 9vw, 8rem) 0; }

/* ── ACESSIBILIDADE ── */
.skip-nav {
  position: absolute; left: -9999px; top: 0; z-index: 9999;
  background: var(--blue-mid); color: #fff; padding: .5rem 1rem;
  border-radius: 0 0 var(--r-sm) var(--r-sm); font-size: .9rem;
}
.skip-nav:focus { left: 50%; transform: translateX(-50%); }

/* ══════════════════════════════
   NAVBAR
══════════════════════════════ */
.navbar {
  position: sticky; top: 0; z-index: 1000;
  height: var(--nav-h);
  background: rgba(12,25,41,.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,.07);
  transition: background .35s ease, backdrop-filter .35s ease, box-shadow .35s ease;
}
.navbar.scrolled {
  background: rgba(12,25,41,.55);
  backdrop-filter: blur(28px);
  -webkit-backdrop-filter: blur(28px);
  border-bottom-color: rgba(255,255,255,.1);
  box-shadow: 0 2px 32px rgba(0,0,0,.18);
}
.nav-inner {
  display: flex; align-items: center;
  justify-content: space-between;
  height: 100%;
}
.nav-brand { display: flex; flex-direction: column; gap: 1px; }
.brand-name    { font-size: 1.05rem; font-weight: 800; color: #fff; letter-spacing: -.02em; }
.brand-tagline { font-size: .68rem; color: rgba(255,255,255,.4); font-weight: 500; letter-spacing: .04em; }

/* Logo imagem na navbar */
.nav-logo-img {
  height: 36px;
  width: auto;
  max-width: 200px;
  display: block;
  object-fit: contain;
  mix-blend-mode: screen; /* dissolve fundo branco em navbar escura */
}
@media (max-width: 640px) {
  .nav-logo-img {
    height: 32px;
    max-width: 160px;
  }
}

.nav-links {
  display: flex; align-items: center; gap: clamp(.75rem,2vw,1.75rem);
}
.nav-a {
  font-size: .875rem; font-weight: 500;
  color: rgba(255,255,255,.65);
  transition: var(--tr); padding: .25rem 0;
  position: relative;
}
.nav-a::after {
  content: ''; position: absolute; bottom: -2px; left: 0; width: 0; height: 2px;
  background: var(--gold); border-radius: 2px; transition: width .25s;
}
.nav-a:hover { color: #fff; }
.nav-a:hover::after, .nav-a.ativo::after { width: 100%; }
.nav-a.ativo { color: #fff; }

.nav-burger {
  display: none; flex-direction: column; gap: 5px;
  padding: 7px; border-radius: var(--r-sm);
}
.nav-burger span {
  width: 22px; height: 2px; background: rgba(255,255,255,.8);
  border-radius: 2px; transition: var(--tr); display: block;
}
.nav-burger.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.nav-burger.open span:nth-child(2) { opacity: 0; }
.nav-burger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

/* ── BOTÕES ── */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: .55rem; border-radius: var(--pill); font-weight: 700;
  font-size: .9rem; white-space: nowrap; transition: var(--tr);
  padding: .8rem 1.85rem; letter-spacing: .01em;
}
.btn-nav {
  background: var(--gold); color: var(--dark) !important;
  padding: .55rem 1.35rem; font-size: .82rem;
  box-shadow: 0 2px 12px rgba(201,168,76,.3);
}
.btn-nav:hover { background: var(--gold-l); transform: translateY(-1px); box-shadow: 0 4px 18px rgba(201,168,76,.45); }

.btn-gold {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-l) 100%);
  color: var(--dark);
  box-shadow: 0 4px 22px rgba(201,168,76,.35);
}
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 8px 32px rgba(201,168,76,.5); }

.btn-blue {
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-mid) 100%);
  color: #fff;
  box-shadow: 0 4px 22px rgba(37,99,235,.3);
}
.btn-blue:hover { transform: translateY(-2px); box-shadow: 0 8px 32px rgba(37,99,235,.45); }

.btn-outline-w {
  background: transparent; color: rgba(255,255,255,.8);
  border: 1.5px solid rgba(255,255,255,.25);
}
.btn-outline-w:hover { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.5); color: #fff; }

.btn-outline-d {
  background: transparent; color: var(--blue-mid);
  border: 1.5px solid var(--blue-mid);
}
.btn-outline-d:hover { background: var(--blue-mid); color: #fff; }

.btn-wa { background: #25d366; color: #fff; box-shadow: 0 4px 20px rgba(37,211,102,.3); }
.btn-wa:hover { background: #1db954; transform: translateY(-2px); box-shadow: 0 8px 28px rgba(37,211,102,.45); }

.btn-lg  { padding: 1.05rem 2.5rem; font-size: 1rem; }
.btn-block { width: 100%; }

/* ══════════════════════════════
   HERO
══════════════════════════════ */
.hero {
  position: relative;
  background: var(--dark);
  min-height: calc(100vh - var(--nav-h));
  display: flex; align-items: center;
  overflow: hidden;
}

/* Grid: texto ocupa ~56% da largura; foto é absoluta e não compete */
.hero-grid {
  position: relative; z-index: 2;
  display: grid;
  grid-template-columns: min(56%, 620px);
  align-items: center;
  padding: clamp(4rem, 7vw, 6rem) 0;
  width: 100%;
}

/* ── Foto integrada ao fundo (metade direita, full-height) ── */
.hero-photo-wrap {
  position: absolute;
  right: 0; top: 0; bottom: 0;
  width: 54%;
  z-index: 0;
}

/* Gradiente: funde o dark da esquerda com a foto */
.hero-photo-wrap::before {
  content: '';
  position: absolute; left: 0; top: 0; bottom: 0;
  width: 65%;
  background: linear-gradient(
    to right,
    var(--dark) 0%,
    rgba(12,25,41,.92) 25%,
    rgba(12,25,41,.55) 55%,
    transparent 100%
  );
  z-index: 2;
  pointer-events: none;
}

/* Gradiente: funde o dark inferior com a foto */
.hero-photo-wrap::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 20%;
  background: linear-gradient(to top, var(--dark), transparent);
  z-index: 2;
  pointer-events: none;
}

.hero-photo-frame {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  max-width: none;
}

/* Remove decorações antigas */
.hero-photo-frame::before,
.hero-photo-frame::after { display: none; }

.hero-photo-frame img,
.hero-photo-frame picture,
.hero-photo-frame source {
  display: block;
  width: 100%; height: 100%;
}
.hero-photo-frame picture { position: absolute; inset: 0; }
.hero-photo-frame img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: top center;
  aspect-ratio: unset;
  border-radius: 0;
  box-shadow: none;
  background: #fff; /* suporte a fotos de fundo branco */
  z-index: 1;
}

/* Card flutuante: oculto no novo design */
.hero-card { display: none; }

/* Texto hero */
.hero-text { position: relative; z-index: 3; }

.hero-eyebrow {
  display: inline-flex; align-items: center; gap: .5rem;
  background: rgba(201,168,76,.12);
  border: 1px solid rgba(201,168,76,.3);
  color: var(--gold-l);
  font-size: .75rem; font-weight: 700;
  letter-spacing: .08em; text-transform: uppercase;
  padding: .38rem 1rem; border-radius: var(--pill);
  margin-bottom: 1.75rem;
}
.hero-eyebrow svg { width: 13px; height: 13px; flex-shrink: 0; }

.hero-h1 {
  font-size: clamp(2.4rem, 5.5vw, 4rem);
  font-weight: 900;
  color: #fff;
  line-height: 1.07;
  letter-spacing: -.03em;
  margin-bottom: 1.5rem;
}
.hero-h1 em {
  font-style: italic;
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  color: var(--gold-l);
  display: block;
  line-height: 1.15;
}

.hero-sub {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: rgba(255,255,255,.72);
  line-height: 1.75;
  margin-bottom: 2rem;
  max-width: 480px;
}
.hero-sub strong { color: rgba(255,255,255,.95); font-weight: 600; }

.hero-chips {
  display: flex; flex-wrap: wrap; gap: .5rem;
  margin-bottom: 2.25rem;
}
.hero-chip {
  font-size: .78rem; font-weight: 600;
  padding: .3rem .85rem;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  color: rgba(255,255,255,.75);
  border-radius: var(--pill);
}

.hero-btns { display: flex; gap: .85rem; flex-wrap: wrap; margin-bottom: 2.5rem; }

.hero-proof {
  display: flex; align-items: center; gap: 1.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,.1);
  flex-wrap: wrap;
}
.hero-proof-item { display: flex; flex-direction: column; }
.hero-proof-num {
  font-size: 1.8rem; font-weight: 900; color: #fff;
  line-height: 1; letter-spacing: -.04em;
}
.hero-proof-num.ouro { color: var(--gold-l); }
.hero-proof-lbl { font-size: .7rem; color: rgba(255,255,255,.45); margin-top: .2rem; }
.hero-proof-sep { width: 1px; height: 40px; background: rgba(255,255,255,.12); }

/* ══════════════════════════════
   BARRA DE NÚMEROS
══════════════════════════════ */
.stats-bar {
  background: #08131e;
  border-top: 1px solid rgba(255,255,255,.05);
  border-bottom: 1px solid rgba(255,255,255,.05);
}
.stats-row {
  display: flex; align-items: stretch;
  justify-content: center; flex-wrap: wrap;
}
.stat-box {
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  padding: 1.75rem 2.75rem;
  border-right: 1px solid rgba(255,255,255,.05);
  flex: 1; min-width: 150px;
}
.stat-box:last-child { border-right: none; }
.stat-n {
  font-size: clamp(2rem, 3.5vw, 2.6rem);
  font-weight: 900; color: #fff;
  line-height: 1; letter-spacing: -.04em;
}
.stat-n.ouro { color: var(--gold-l); }
.stat-l {
  font-size: .75rem; color: rgba(255,255,255,.38);
  margin-top: .3rem; text-align: center;
  max-width: 110px; line-height: 1.4;
}

/* ══════════════════════════════
   UTILITÁRIOS SEÇÃO
══════════════════════════════ */
.sec-label {
  display: inline-flex; align-items: center; gap: .4rem;
  font-size: .72rem; font-weight: 800; letter-spacing: .1em;
  text-transform: uppercase; margin-bottom: .5rem;
}
.sec-label-dark  { color: var(--gold); }
.sec-label-light { color: var(--blue-mid); }

.sec-h2 { font-size: clamp(1.8rem, 3.8vw, 2.65rem); font-weight: 800; margin-bottom: .75rem; }
.sec-h2-dark  { color: #fff; }
.sec-h2-light { color: var(--navy); }

.sec-sub { font-size: clamp(.95rem,1.8vw,1.08rem); line-height: 1.75; }
.sec-sub-dark  { color: rgba(255,255,255,.55); }
.sec-sub-light { color: var(--muted); }

.sec-center { text-align: center; max-width: 700px; margin: 0 auto clamp(2.5rem,5vw,4.5rem); }

/* ══════════════════════════════
   SEÇÃO MÉTODO EIXO  (fundo claro)
══════════════════════════════ */
.sec-metodo { background: var(--cream); }

/* Duplo card NÃO É / É */
.eixo-duo {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 1.5rem; margin-bottom: 3.5rem;
}
.eixo-card {
  border-radius: var(--r-lg); padding: clamp(1.5rem,3vw,2.25rem);
  border: 1px solid;
}
.eixo-nao { background: #fff5f5; border-color: #fecaca; }
.eixo-sim { background: #f0fdf4; border-color: #bbf7d0; }

.eixo-card-head {
  display: flex; align-items: center; gap: .85rem;
  margin-bottom: 1.5rem;
}
.eixo-card-head h3 { font-size: 1.1rem; color: var(--navy); margin: 0; }
.eixo-icon {
  width: 38px; height: 38px; border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; font-weight: 800; flex-shrink: 0;
}
.eixo-icon-red   { background: #fee2e2; color: var(--red); }
.eixo-icon-green { background: #d1fae5; color: var(--green); }

.eixo-card ul { display: flex; flex-direction: column; gap: .75rem; }
.eixo-card li {
  display: flex; gap: .75rem; align-items: flex-start;
  font-size: .93rem; color: #374151; line-height: 1.5;
}
.li-x  { color: var(--red);   font-weight: 700; flex-shrink: 0; margin-top: 1px; }
.li-ok { color: var(--green); font-weight: 700; flex-shrink: 0; margin-top: 1px; }

/* Tabela comparativa */
.table-wrap {
  border-radius: var(--r-lg); overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--sh-md);
}
.comp-tbl { width: 100%; border-collapse: collapse; background: #fff; }
.comp-tbl thead { background: var(--dark); }
.comp-tbl th {
  padding: 1.05rem 1.4rem; text-align: left;
  color: rgba(255,255,255,.8); font-size: .78rem;
  font-weight: 700; letter-spacing: .06em; text-transform: uppercase;
}
.comp-tbl th.th-eixo { color: #6ee7b7; }
.comp-tbl .sub-th { display: block; font-size: .65rem; opacity: .5; font-weight: 400; letter-spacing: normal; text-transform: none; margin-top: .1rem; }
.comp-tbl td {
  padding: .9rem 1.4rem; border-top: 1px solid var(--border);
  font-size: .9rem; color: var(--navy); vertical-align: middle;
}
.comp-tbl tbody tr:hover { background: #f8faff; }
.pill-old {
  background: #f3f4f6; color: #6b7280; padding: .25rem .8rem;
  border-radius: var(--pill); font-size: .82rem; display: inline-block;
}
.pill-new {
  background: #d1fae5; color: #065f46; padding: .25rem .8rem;
  border-radius: var(--pill); font-size: .82rem; font-weight: 700; display: inline-block;
}

/* ══════════════════════════════
   SINTOMAS (fundo escuro)
══════════════════════════════ */
.sec-sintomas { background: var(--dark2); }

.sint-slider {
  display: flex; gap: 1.25rem; overflow-x: auto;
  scroll-snap-type: x mandatory; scrollbar-width: none;
  -ms-overflow-style: none; cursor: grab;
  -webkit-overflow-scrolling: touch;
  padding-bottom: .5rem;
}
.sint-slider::-webkit-scrollbar { display: none; }
.sint-slider:active { cursor: grabbing; }

.sint-card {
  flex: 0 0 calc(25% - .95rem); min-width: 220px;
  scroll-snap-align: start;
  border-radius: var(--r-lg); overflow: hidden;
  background: var(--dark3); border: 1px solid rgba(255,255,255,.06);
  transition: var(--tr); position: relative;
}
.sint-card:hover { transform: translateY(-6px); box-shadow: 0 16px 48px rgba(0,0,0,.55); }

.sint-img-box { position: relative; aspect-ratio: 4/5; overflow: hidden; }
.sint-img-box img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .5s ease, filter .4s ease;
  filter: grayscale(60%) brightness(.8);
}
.sint-card:hover .sint-img-box img { transform: scale(1.06); filter: grayscale(0%) brightness(1); }
.sint-img-box::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(13,15,26,.92) 0%, rgba(13,15,26,.2) 50%, transparent 100%);
}
.sint-info {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 1.25rem 1.1rem; z-index: 1;
}
.sint-info h3 { font-size: .97rem; color: #fff; font-weight: 700; margin-bottom: .3rem; }
.sint-info p  { font-size: .8rem; color: rgba(255,255,255,.55); line-height: 1.5; }

/* Slider nav */
.slider-nav {
  display: flex; align-items: center; justify-content: center;
  gap: 1rem; margin-top: 2rem;
}
.sl-btn {
  width: 40px; height: 40px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.12);
  color: #fff; transition: var(--tr);
}
.sl-btn:hover { background: var(--gold); border-color: var(--gold); color: var(--dark); }
.sl-dots { display: flex; gap: .5rem; }
.sl-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: rgba(255,255,255,.2); border: none; transition: var(--tr); cursor: pointer;
}
.sl-dot.on { background: var(--gold); width: 22px; border-radius: 4px; }

/* ══════════════════════════════
   POR QUE  (fundo claro)
══════════════════════════════ */
.sec-porque { background: #fff; }
.porque-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(2rem,5vw,4.5rem); align-items: start;
}

.prob-list { display: flex; flex-direction: column; gap: .7rem; margin-top: 1.5rem; }
.prob-row {
  display: flex; gap: .75rem; align-items: flex-start;
  padding: .85rem 1.1rem;
  background: #fff8f8; border-left: 3px solid #fca5a5;
  border-radius: 0 var(--r-sm) var(--r-sm) 0;
  font-size: .9rem; color: #374151; line-height: 1.5;
  box-shadow: var(--sh-sm);
}
.prob-x { color: var(--red); font-weight: 700; flex-shrink: 0; }

.sol-box {
  background: var(--dark); border-radius: var(--r-xl);
  padding: clamp(1.75rem,3vw,2.5rem); color: #fff;
  border: 1px solid rgba(255,255,255,.07);
  box-shadow: var(--sh-xl);
  position: sticky; top: calc(var(--nav-h) + 1.5rem);
}
.sol-emoji { font-size: 2.5rem; margin-bottom: 1rem; display: block; }
.sol-box h3 { color: #fff; font-size: 1.3rem; margin-bottom: 1rem; }
.sol-box p  { color: rgba(255,255,255,.65); font-size: .92rem; line-height: 1.75; margin-bottom: .9rem; }
.sol-nums { display: flex; gap: 1.5rem; margin: 1.5rem 0; flex-wrap: wrap; }
.sol-num strong { display: block; font-size: 1.9rem; font-weight: 900; color: #fff; letter-spacing: -.04em; line-height: 1; }
.sol-num span   { font-size: .72rem; color: rgba(255,255,255,.4); }

/* ══════════════════════════════
   BENEFÍCIOS (fundo escuro)
══════════════════════════════ */
.sec-bene { background: var(--dark3); }
.bene-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.25rem; }
.bene-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: var(--r-lg); padding: 2rem;
  transition: var(--tr); position: relative; overflow: hidden;
}
.bene-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--blue-mid));
  opacity: 0; transition: var(--tr);
}
.bene-card:hover {
  background: rgba(255,255,255,.07);
  transform: translateY(-4px);
  box-shadow: 0 0 0 1px rgba(201,168,76,.2), 0 12px 36px rgba(0,0,0,.4);
  border-color: rgba(201,168,76,.2);
}
.bene-card:hover::before { opacity: 1; }
.bene-icon { font-size: 2rem; margin-bottom: 1rem; display: block; }
.bene-card h3 { color: #fff; font-size: 1.05rem; margin-bottom: .5rem; }
.bene-card p  { color: rgba(255,255,255,.55); font-size: .88rem; line-height: 1.65; }

/* ══════════════════════════════
   SOBRE  (fundo creme)
══════════════════════════════ */
.sec-sobre { background: var(--cream); }
.sobre-grid {
  display: grid; grid-template-columns: 1fr 1.15fr;
  gap: clamp(3rem,6vw,6rem); align-items: center;
}

.sobre-img-wrap { position: relative; }
.sobre-frame {
  border-radius: var(--r-xl); overflow: hidden;
  box-shadow: var(--sh-xl); position: relative;
}
.sobre-frame::before {
  content: ''; position: absolute; inset: -3px;
  border-radius: calc(var(--r-xl) + 3px);
  background: linear-gradient(135deg, var(--gold) 0%, var(--blue-mid) 100%);
  z-index: 0;
}
.sobre-frame img {
  position: relative; z-index: 1;
  width: 100%; aspect-ratio: 3/4; object-fit: cover; object-position: top center;
  display: block; border-radius: var(--r-xl);
}
.sobre-badge {
  position: absolute; bottom: -1.75rem; right: -1.5rem; z-index: 2;
  background: var(--blue-mid); color: #fff;
  border-radius: var(--r-lg); padding: 1.1rem 1.5rem;
  text-align: center; box-shadow: 0 8px 28px rgba(37,99,235,.45);
}
.sobre-badge-n { display: block; font-size: 2rem; font-weight: 900; line-height: 1; letter-spacing: -.04em; }
.sobre-badge-l { font-size: .72rem; opacity: .85; margin-top: .1rem; }

.sobre-texto { padding-bottom: 2rem; }
.sobre-texto h2 { color: var(--navy); margin: .6rem 0 1.25rem; }
.sobre-texto p  { color: var(--muted); font-size: .96rem; line-height: 1.8; margin-bottom: 1rem; }

.cred-list { display: flex; flex-direction: column; gap: .6rem; margin: 1.75rem 0; }
.cred-row {
  display: flex; align-items: center; gap: .75rem;
  font-size: .92rem; color: var(--navy);
}
.cred-ck {
  width: 22px; height: 22px; background: #d1fae5;
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  color: var(--green); font-size: .72rem; font-weight: 800; flex-shrink: 0;
}

.sobre-quote {
  border-left: 3px solid var(--gold);
  padding: .9rem 1.4rem;
  background: rgba(201,168,76,.06);
  border-radius: 0 var(--r-sm) var(--r-sm) 0;
  margin: 1.75rem 0;
  font-style: italic; font-size: .97rem;
  color: var(--navy); line-height: 1.75;
}
.sobre-quote cite {
  display: block; margin-top: .5rem;
  font-style: normal; font-size: .8rem;
  color: var(--muted); font-weight: 600;
}

/* ══════════════════════════════
   SERVIÇOS (fundo escuro)
══════════════════════════════ */
.sec-servicos { background: var(--dark2); }
.serv-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 1.1rem; }
.serv-card {
  background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.07);
  border-radius: var(--r-lg); padding: 1.75rem 1.5rem; transition: var(--tr);
}
.serv-card:hover {
  background: rgba(201,168,76,.07); border-color: rgba(201,168,76,.25);
  transform: translateY(-4px);
  box-shadow: 0 0 0 1px rgba(201,168,76,.15), 0 12px 32px rgba(0,0,0,.4);
}
.serv-icon { font-size: 1.7rem; margin-bottom: .9rem; display: block; }
.serv-card h3 { font-size: .97rem; color: #fff; margin-bottom: .45rem; font-weight: 700; }
.serv-card p  { font-size: .83rem; color: rgba(255,255,255,.5); line-height: 1.6; }

/* ══════════════════════════════
   CHECKLIST (fundo creme)
══════════════════════════════ */
.sec-check { background: var(--light); }
.check-wrap {
  display: grid; grid-template-columns: 1fr 1.1fr;
  gap: clamp(3rem,6vw,6rem); align-items: center;
}
.check-left h2 { color: var(--navy); margin: .6rem 0 1rem; }
.check-left p  { color: var(--muted); margin-bottom: 2rem; font-size: .96rem; }

.check-items { display: flex; flex-direction: column; gap: .6rem; }
.check-row {
  display: flex; align-items: flex-start; gap: .9rem;
  padding: .9rem 1.1rem;
  background: #fff; border: 1px solid var(--border);
  border-radius: var(--r); font-size: .9rem; color: var(--navy);
  line-height: 1.5; transition: var(--tr); cursor: default;
  box-shadow: var(--sh-sm);
}
.check-row:hover { border-color: var(--blue-mid); box-shadow: 0 2px 12px rgba(37,99,235,.1); }
.check-sq {
  width: 18px; height: 18px;
  border: 2px solid var(--border); border-radius: 4px;
  flex-shrink: 0; margin-top: 2px; transition: var(--tr);
}
.check-row:hover .check-sq { border-color: var(--blue-mid); background: rgba(37,99,235,.08); }

/* ══════════════════════════════
   DEPOIMENTOS (fundo escuro)
══════════════════════════════ */
.sec-depo { background: var(--dark); }
.depo-stars-row {
  display: flex; align-items: center; justify-content: center;
  gap: 1rem; flex-wrap: wrap; margin-top: .85rem;
  font-size: .88rem;
}
.stars-gold { color: var(--gold); font-size: 1.1rem; letter-spacing: .05em; }
.depo-stars-row span { color: rgba(255,255,255,.5); }

.vids-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 1rem; }
.vid-card {
  background: var(--dark2); border-radius: var(--r);
  overflow: hidden; border: 1px solid rgba(255,255,255,.06);
  transition: var(--tr);
}
.vid-card:hover { transform: translateY(-4px); border-color: rgba(201,168,76,.3); box-shadow: 0 0 0 1px rgba(201,168,76,.15), 0 12px 32px rgba(0,0,0,.5); }
.vid-btn {
  position: relative; display: block; width: 100%;
  aspect-ratio: 16/9; overflow: hidden; cursor: pointer; border: none; padding: 0;
}
.vid-btn img {
  width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; display: block;
}
.vid-card:hover .vid-btn img { transform: scale(1.05); }
.vid-overlay {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  background: rgba(0,0,0,.35); transition: var(--tr);
}
.play-circle {
  width: 44px; height: 44px; border-radius: 50%;
  background: rgba(255,255,255,.9);
  display: flex; align-items: center; justify-content: center;
  transition: var(--tr);
}
.play-circle svg { width: 16px; height: 16px; fill: var(--dark); margin-left: 3px; }
.vid-card:hover .play-circle { background: var(--gold); transform: scale(1.1); }
.vid-card:hover .play-circle svg { fill: var(--dark); }
.vid-lbl { padding: .75rem .9rem; font-size: .78rem; color: rgba(255,255,255,.6); line-height: 1.45; font-weight: 500; }

.load-more-wrap { text-align: center; margin-top: 2rem; }
.btn-more {
  background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.12);
  color: rgba(255,255,255,.6); padding: .75rem 2.25rem;
  border-radius: var(--pill); font-size: .88rem; font-weight: 600; transition: var(--tr);
}
.btn-more:hover { background: var(--gold); border-color: var(--gold); color: var(--dark); }

/* Modal vídeo */
.vid-modal {
  display: none; position: fixed; inset: 0; z-index: 9999;
  background: rgba(0,0,0,.95); align-items: center; justify-content: center; padding: 1rem;
}
.vid-modal.open { display: flex; }
.vid-modal-inner { position: relative; width: 100%; max-width: 900px; }
.vid-modal iframe { width: 100%; aspect-ratio: 16/9; border: none; border-radius: var(--r-lg); }
.vid-close,
.vid-modal-close {
  position: absolute; top: -2.75rem; right: 0;
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255,255,255,.1); color: #fff; font-size: 1rem;
  display: flex; align-items: center; justify-content: center; transition: var(--tr);
  border: 1px solid rgba(255,255,255,.15); cursor: pointer;
}
.vid-close:hover,
.vid-modal-close:hover { background: var(--red); }

/* ══════════════════════════════
   AVALIAÇÕES GOOGLE
══════════════════════════════ */
.sec-greviews { background: var(--light); }

/* Cabeçalho */
.grev-header {
  display: flex; align-items: center;
  justify-content: space-between; flex-wrap: wrap;
  gap: 1.5rem; margin-bottom: 2.5rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--border);
}
.grev-header-left {
  display: flex; align-items: center; gap: 1.75rem; flex-wrap: wrap;
}
.grev-logo { height: 32px; width: auto; flex-shrink: 0; }
.grev-score {
  display: flex; flex-direction: column; gap: .3rem;
}
.grev-num {
  font-size: 2.4rem; font-weight: 900; color: var(--navy);
  line-height: 1; letter-spacing: -.04em;
}
.grev-stars { display: flex; gap: 2px; }
.grev-stars svg { width: 20px; height: 20px; }
.grev-total {
  font-size: .8rem; color: var(--muted); font-weight: 500;
}
.grev-cta-btn {
  font-size: .84rem; padding: .6rem 1.4rem;
  display: inline-flex; align-items: center; gap: .5rem;
}

/* Grid de cards */
.grev-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-bottom: 2.5rem;
}

/* Card individual */
.grev-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 1.5rem;
  transition: var(--tr);
  transition-delay: var(--delay, 0s);
  display: flex; flex-direction: column; gap: .75rem;
}
.grev-card:hover {
  border-color: #4285f430;
  box-shadow: 0 4px 24px rgba(66,133,244,.1);
  transform: translateY(-3px);
}
.grev-card-top {
  display: flex; align-items: center; gap: .85rem;
}
.grev-avatar {
  width: 42px; height: 42px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; font-weight: 700; color: #fff;
  flex-shrink: 0; overflow: hidden;
}
.grev-avatar img {
  width: 100%; height: 100%; object-fit: cover;
  border-radius: 50%;
}
.grev-meta { flex: 1; min-width: 0; }
.grev-name {
  display: block; font-size: .9rem; font-weight: 700;
  color: var(--navy); white-space: nowrap;
  overflow: hidden; text-overflow: ellipsis;
}
.grev-date {
  font-size: .75rem; color: var(--muted);
}
.grev-g-icon { width: 20px; height: 20px; flex-shrink: 0; margin-left: auto; }

.grev-stars-sm { display: flex; gap: 1px; }
.grev-stars-sm svg { width: 15px; height: 15px; }

.grev-text {
  font-size: .875rem; color: #374151; line-height: 1.7;
  display: -webkit-box; -webkit-line-clamp: 4;
  -webkit-box-orient: vertical; overflow: hidden;
  flex: 1;
}

/* Footer CTA */
.grev-footer {
  text-align: center;
  padding-top: 1rem;
}

/* Responsive reviews */
@media (max-width: 1024px) {
  .grev-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .sec-greviews { padding: 3rem 0; }
  .grev-header { flex-direction: column; align-items: flex-start; gap: 1rem; margin-bottom: 1.5rem; padding-bottom: 1.25rem; }
  .grev-logo { height: 24px; }
  .grev-num { font-size: 1.8rem; }
  .grev-cta-btn { width: 100%; justify-content: center; font-size: .8rem; padding: .55rem 1rem; }
  /* 2 colunas compactas no mobile */
  .grev-grid { grid-template-columns: repeat(2, 1fr); gap: .75rem; margin-bottom: 1.5rem; }
  .grev-card { padding: .9rem; gap: .5rem; }
  .grev-avatar { width: 32px; height: 32px; font-size: .85rem; }
  .grev-name { font-size: .78rem; }
  .grev-date { font-size: .68rem; }
  .grev-g-icon { width: 16px; height: 16px; }
  .grev-stars-sm svg { width: 12px; height: 12px; }
  .grev-text { font-size: .78rem; -webkit-line-clamp: 3; line-height: 1.55; }
  /* Esconde os últimos 2 cards no mobile */
  .grev-card:nth-child(n+5) { display: none; }
}

/* ══════════════════════════════
   FAQ  (fundo claro)
══════════════════════════════ */
.sec-faq { background: #fff; }
.faq-grupo { margin-bottom: 2.5rem; }
.faq-cat {
  font-size: .72rem; font-weight: 800; letter-spacing: .1em;
  text-transform: uppercase; color: var(--blue-mid);
  margin-bottom: 1rem;
  display: flex; align-items: center; gap: .75rem;
}
.faq-cat::after { content: ''; flex: 1; height: 1px; background: var(--border); }
.faq-list { display: flex; flex-direction: column; gap: .4rem; }
.faq-item {
  border: 1px solid var(--border); border-radius: var(--r);
  overflow: hidden; background: #fff; transition: var(--tr);
}
.faq-item.open { border-color: rgba(37,99,235,.25); box-shadow: 0 2px 12px rgba(37,99,235,.07); }
.faq-q {
  width: 100%; display: flex; align-items: center;
  justify-content: space-between; gap: 1rem;
  padding: 1.1rem 1.4rem; text-align: left;
  font-size: .94rem; font-weight: 600; color: var(--navy); transition: var(--tr);
}
.faq-q:hover { color: var(--blue-mid); background: #f8faff; }
.faq-item.open .faq-q { color: var(--blue-mid); }
.faq-seta { flex-shrink: 0; transition: transform .25s; color: var(--muted); }
.faq-item.open .faq-seta { transform: rotate(180deg); color: var(--blue-mid); }
.faq-r {
  display: none; padding: 0 1.4rem 1.1rem;
  color: var(--muted); font-size: .92rem; line-height: 1.8;
}
.faq-item.open .faq-r { display: block; }
.faq-cta-box {
  margin-top: 3rem; text-align: center;
  padding: 3rem; background: var(--light);
  border: 1px solid var(--border); border-radius: var(--r-xl);
  box-shadow: var(--sh-md);
}
.faq-cta-box p { font-size: 1.05rem; color: var(--muted); margin-bottom: 1.5rem; }

/* ══════════════════════════════
   CONTATO  (fundo escuro)
══════════════════════════════ */
.sec-contato { background: var(--dark3); }
.contato-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(3rem,5vw,5rem); align-items: start;
}
.contato-left h2 { color: #fff; margin: .6rem 0 1rem; }
.contato-left > p { color: rgba(255,255,255,.55); margin-bottom: 2.5rem; font-size: .96rem; line-height: 1.8; }

.contato-list { display: flex; flex-direction: column; gap: 1.5rem; }
.contato-row { display: flex; gap: 1.1rem; align-items: flex-start; }
.contato-ico {
  width: 46px; height: 46px; background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.08); border-radius: var(--r);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; color: var(--gold);
}
.contato-ico svg { width: 20px; height: 20px; }
.contato-row strong { display: block; color: #fff; font-size: .94rem; margin-bottom: .2rem; }
.contato-row a, .contato-row span { display: block; color: rgba(255,255,255,.5); font-size: .87rem; line-height: 1.6; }
.contato-row a:hover { color: var(--gold-l); }

.cta-card {
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--r-xl); padding: clamp(1.75rem,3vw,2.5rem);
}
.cta-card-emoji { font-size: 2.5rem; margin-bottom: 1rem; display: block; }
.cta-card h3  { color: #fff; font-size: 1.25rem; margin-bottom: .85rem; }
.cta-card > p { color: rgba(255,255,255,.6); font-size: .92rem; margin-bottom: 1.25rem; line-height: 1.75; }
.cta-perks { display: flex; flex-direction: column; gap: .5rem; margin-bottom: 2rem; }
.cta-perk  { display: flex; align-items: center; gap: .65rem; color: rgba(255,255,255,.65); font-size: .88rem; }
.perk-ck   {
  width: 18px; height: 18px; background: rgba(5,150,105,.15); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #34d399; font-size: .68rem; font-weight: 800; flex-shrink: 0;
}

/* ══════════════════════════════
   FOOTER
══════════════════════════════ */
.footer { background: #05060c; padding: clamp(3rem,5vw,4.5rem) 0 2rem; }
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1.4fr;
  gap: 3rem; margin-bottom: 3rem;
}
.f-brand-name { font-size: 1.05rem; font-weight: 800; color: #fff; letter-spacing: -.02em; }
.f-brand-sub  { font-size: .7rem; color: rgba(255,255,255,.3); margin-bottom: .85rem; }
.f-brand-desc { font-size: .84rem; color: rgba(255,255,255,.3); line-height: 1.7; max-width: 290px; }
.f-stars { margin-top: 1rem; color: var(--gold); font-size: .82rem; display: flex; align-items: center; gap: .5rem; }
.f-stars span { color: rgba(255,255,255,.25); }

.f-col h4 { font-size: .72rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; color: rgba(255,255,255,.3); margin-bottom: 1rem; }
.f-col ul  { display: flex; flex-direction: column; gap: .55rem; }
.f-col ul a { font-size: .86rem; color: rgba(255,255,255,.35); transition: var(--tr); }
.f-col ul a:hover { color: #fff; padding-left: 4px; }
.f-contact-list { display: flex; flex-direction: column; gap: .7rem; }
.f-contact-row  { display: flex; align-items: flex-start; gap: .6rem; font-size: .83rem; color: rgba(255,255,255,.3); line-height: 1.5; }
.f-contact-row svg { flex-shrink: 0; opacity: .4; margin-top: 2px; }
.f-contact-row a:hover { color: var(--gold-l); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.04); padding-top: 1.75rem; text-align: center; }
.footer-bottom p { font-size: .78rem; color: rgba(255,255,255,.2); line-height: 1.8; }

/* ══════════════════════════════
   WhatsApp FLOAT
══════════════════════════════ */
.wa-float {
  position: fixed; bottom: 1.75rem; right: 1.75rem; z-index: 900;
  width: 58px; height: 58px; background: #25d366;
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 22px rgba(37,211,102,.4); transition: var(--tr);
  text-decoration: none;
}
.wa-float svg { width: 28px; height: 28px; fill: #fff; }
.wa-float:hover { transform: scale(1.1); box-shadow: 0 6px 30px rgba(37,211,102,.6); }
.wa-tip {
  position: absolute; right: calc(100% + .75rem);
  background: rgba(13,15,26,.95); color: #fff;
  font-size: .8rem; font-weight: 600; padding: .4rem .85rem;
  border-radius: var(--pill); white-space: nowrap;
  opacity: 0; pointer-events: none; transition: var(--tr);
  border: 1px solid rgba(255,255,255,.08);
}
.wa-float:hover .wa-tip { opacity: 1; }

/* ══════════════════════════════
   REVEAL  (scroll animation)
══════════════════════════════ */
.rev { opacity: 0; transform: translateY(24px); transition: opacity .55s ease, transform .55s ease; }
.rev.on { opacity: 1; transform: translateY(0); }

/* ══════════════════════════════
   RESPONSIVE
══════════════════════════════ */
@media (max-width: 1100px) {
  .serv-grid { grid-template-columns: repeat(2,1fr); }
  .vids-grid { grid-template-columns: repeat(3,1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 900px) {
  /* Hero mobile: texto acima, foto abaixo como bloco */
  .hero {
    flex-direction: column;
    align-items: stretch;
    min-height: auto;
  }
  .hero-grid {
    grid-template-columns: 1fr;
    padding-bottom: 1.5rem;
  }

  /* Foto: sai do absolute e vira bloco normal com altura fixa */
  .hero-photo-wrap {
    position: relative;
    right: auto; top: auto; bottom: auto;
    width: 100%;
    height: clamp(320px, 75vw, 500px);
    overflow: hidden;
  }
  /* Mobile: sem fade no TOPO (não corta o rosto) */
  .hero-photo-wrap::before { display: none; }
  .hero-photo-wrap::after {
    height: 25%;
    background: linear-gradient(to top, var(--dark) 0%, transparent 100%);
  }

  /* Frame: absoluto relativo ao wrap (que tem position:relative + altura fixa) */
  .hero-photo-frame {
    position: absolute;
    inset: 0;
    width: auto;
    height: auto;
  }
  /* Picture e img preenchem o frame normalmente */
  .hero-photo-frame picture {
    display: block;
    width: 100%;
    height: 100%;
  }
  .hero-photo-frame img {
    position: static;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
  }
  .eixo-duo     { grid-template-columns: 1fr; }
  .porque-grid  { grid-template-columns: 1fr; }
  .sol-box      { position: static; }
  .sobre-grid   { grid-template-columns: 1fr; max-width: 540px; margin: 0 auto; }
  .sobre-img-wrap { display: block; max-width: 320px; margin: 0 auto 2rem; }
  .check-wrap   { grid-template-columns: 1fr; }
  .contato-grid { grid-template-columns: 1fr; }
  .bene-grid    { grid-template-columns: repeat(2,1fr); }
  .sint-card    { flex: 0 0 calc(50% - .625rem); }
  .vids-grid    { grid-template-columns: repeat(2,1fr); }
  .stats-row    { flex-wrap: wrap; }
  .stat-box     { flex: 0 0 50%; border-right: none; border-bottom: 1px solid rgba(255,255,255,.05); }
  .stat-box:nth-child(odd)  { border-right: 1px solid rgba(255,255,255,.05); }
}
@media (max-width: 640px) {
  :root { --nav-h: 64px; }
  .nav-links {
    display: none; position: fixed; top: var(--nav-h); left: 0; right: 0;
    background: rgba(13,15,26,.98); flex-direction: column;
    padding: 1.5rem; gap: 1rem;
    border-bottom: 1px solid rgba(255,255,255,.07);
    box-shadow: var(--sh-lg);
  }
  .nav-links.open { display: flex; }
  .nav-burger { display: flex; }
  .serv-grid   { grid-template-columns: 1fr; }
  .bene-grid   { grid-template-columns: 1fr; }
  .vids-grid   { grid-template-columns: repeat(2,1fr); }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-btns   { flex-direction: column; }
  .hero-btns .btn { width: 100%; justify-content: center; }
  .sint-card   { flex: 0 0 calc(82% - .625rem); }
  .hero-proof  { gap: .9rem; }
  .hero-proof-num { font-size: 1.4rem; }
  .hero-proof-sep { height: 28px; }
  .sol-nums    { flex-wrap: wrap; }
  .hero-photo-wrap { height: clamp(260px, 80vw, 380px); }
  /* Evita overflow horizontal em qualquer seção */
  .section, .stats-bar, .hero, .footer { max-width: 100vw; overflow-x: hidden; }
  .stat-box { min-width: 0; }
  .hero-eyebrow { font-size: .68rem; max-width: 100%; }
  .hero-chips { gap: .35rem; }
  .hero-chip { font-size: .72rem; padding: .25rem .65rem; }
}
@media (max-width: 400px) {
  .vids-grid { grid-template-columns: 1fr; }
}

/* ── Print ── */
@media print {
  .navbar, .wa-float, .vid-btn, .slider-nav { display: none; }
  .section { padding: 2rem 0; }
  body { background: #fff; color: #000; }
}
