*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy:    #0A1628;
  --deep:    #0D2444;
  --teal:    #00B4D8;
  --teal2:   #0096C7;
  --teal-dk: #006E96;
  --cyan:    #48CAE4;
  --white:   #FFFFFF;
  --off:     #F0F8FF;
  --muted:   rgba(255,255,255,.55);
  --fh: 'Barlow Condensed', sans-serif;
  --fb: 'Barlow', sans-serif;
  --pad:  clamp(80px, 10vw, 130px);
  --wrap: 1200px;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--fb);
  background: var(--white);
  color: var(--navy);
  overflow-x: hidden;
  cursor: none;
}

@media (max-width: 768px) {
  body {
    cursor: auto;
  }
}

/* CURSOR */
#cur {
  width: 8px; height: 8px;
  background: var(--teal);
  border-radius: 50%;
  position: fixed; top: 0; left: 0;
  pointer-events: none; z-index: 9999;
  transform: translate(-50%,-50%);
  will-change: transform;
}
#cur-ring {
  width: 32px; height: 32px;
  border: 1.5px solid var(--teal);
  border-radius: 50%;
  position: fixed; top: 0; left: 0;
  pointer-events: none; z-index: 9998;
  transform: translate(-50%,-50%);
  opacity: .5;
  transition: width .2s, height .2s, opacity .2s, border-color .2s;
  will-change: transform;
}
body.cur-hover #cur-ring { width: 46px; height: 46px; opacity: .25; border-color: var(--cyan); }

@media (max-width: 768px) {
  #cur, #cur-ring {
    display: none;
  }
}

/* LAYOUT */
.wrap { max-width: var(--wrap); margin: 0 auto; padding: 0 clamp(20px,5vw,64px); }

/* NAV */
#nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 22px 0;
  transition: background .35s, box-shadow .35s, padding .35s;
}
#nav.solid {
  background: rgba(10,22,40,.95);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: 0 2px 24px rgba(0,0,0,.35);
  padding: 14px 0;
}
.nav-wrap {
  max-width: var(--wrap); margin: 0 auto;
  padding: 0 clamp(20px,5vw,64px);
  display: flex; align-items: center; justify-content: space-between;
}
.logo { font-family: var(--fh); font-size: 1.45rem; font-weight: 800; color: var(--white); text-decoration: none; letter-spacing: .02em; }
.logo span { color: var(--teal); }
.nav-links { display: flex; gap: 40px; list-style: none; align-items: center; }
.nav-links a { font-size: .8rem; font-weight: 500; letter-spacing: .1em; text-transform: uppercase; color: rgba(255,255,255,.72); text-decoration: none; transition: color .2s; }
.nav-links a:hover { color: var(--white); }
.nav-btn { background: var(--teal) !important; color: var(--navy) !important; padding: 9px 22px !important; border-radius: 4px !important; font-weight: 700 !important; }
.nav-btn:hover { background: var(--cyan) !important; }
.burger { display: none; flex-direction: column; gap: 6px; background: none; border: none; cursor: none; padding: 4px; }
.burger span { display: block; width: 24px; height: 2px; background: var(--white); border-radius: 2px; }

/* MOBILE MENU */
.mob-menu { position: fixed; inset: 0; z-index: 200; background: var(--navy); display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 36px; opacity: 0; pointer-events: none; transition: opacity .3s; }
.mob-menu.open { opacity: 1; pointer-events: all; }
.mob-menu a { font-family: var(--fh); font-size: 2.6rem; font-weight: 700; color: var(--white); text-decoration: none; transition: color .2s; }
.mob-menu a:hover { color: var(--teal); }
.mob-close { position: absolute; top: 24px; right: 28px; background: none; border: none; color: var(--white); font-size: 1.8rem; cursor: none; }

/* HERO */
#hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; background: var(--navy); z-index: 0; }

/* COLUNA ESQUERDA — texto centralizado */
.hero-left {
  position: relative; z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 120px clamp(24px,5vw,72px) 120px;
}
.hero-eyebrow {
  font-family: var(--fb); font-size: .76rem; font-weight: 500;
  letter-spacing: .22em; text-transform: uppercase;
  color: var(--teal); margin-bottom: 18px;
  display: flex; align-items: center; gap: 12px;
}
.hero-eyebrow::before { content:''; width:30px; height:1.5px; background:var(--teal); }
.hero-title {
  font-family: var(--fh);
  font-size: clamp(3.2rem, 5.8vw, 5.8rem);
  font-weight: 800; line-height: 1.0;
  color: var(--white); text-transform: uppercase;
  letter-spacing: -.01em; margin-bottom: 20px;
}
.hero-title em { font-style: italic; color: var(--teal); }
.hero-sub { font-size: .95rem; color: var(--muted); letter-spacing: .06em; font-weight: 300; margin-bottom: 36px; }
.hero-actions { display: flex; gap: 18px; align-items: center; flex-wrap: wrap; }
.btn-main {
  display: inline-flex; align-items: center;
  background: var(--teal); color: var(--navy);
  font-family: var(--fh); font-weight: 700; font-size: 1rem;
  letter-spacing: .06em; text-transform: uppercase;
  padding: 14px 32px; border-radius: 4px; text-decoration: none;
  transition: background .2s, transform .2s;
  box-shadow: 0 8px 22px rgba(0,180,216,.35);
}
.btn-main:hover { background: var(--cyan); transform: translateY(-2px); }
.btn-link { color: rgba(255,255,255,.62); text-decoration: none; font-size: .88rem; transition: color .2s; letter-spacing: .04em; }
.btn-link:hover { color: var(--white); }

/* COLUNA DIREITA — foto + painel teal */
.hero-right {
  position: relative; z-index: 2;
  overflow: hidden;
}
.hero-teal-panel { position: absolute; inset: 0; background: linear-gradient(160deg, var(--teal2) 0%, #004e7a 100%); }
.hero-waves-deco { position: absolute; right: 0; top: 0; bottom: 0; height: 100%; width: 55%; pointer-events: none; z-index: 1; }

/* BLOB com foto dentro — coluna direita */

/* Foto de background mobile — oculta no desktop */
.hero-mobile-bg { display: none; }
.hero-right-blob {
  position: absolute; z-index: 3;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: clamp(260px, 32vw, 420px);
  aspect-ratio: .78;
}
.hrb-glow {
  position: absolute; inset: -20px;
  border-radius: 60% 40% 55% 45% / 50% 55% 45% 50%;
  background: radial-gradient(ellipse, rgba(0,180,216,.3) 0%, transparent 70%);
  filter: blur(22px);
  animation: blobMorph 8s ease-in-out infinite;
}
.hrb-border {
  position: absolute; inset: -8px;
  border-radius: 62% 38% 57% 43% / 52% 57% 43% 48%;
  border: 1.5px solid rgba(255,255,255,.22);
  animation: blobMorph 8s ease-in-out infinite;
}
.hrb-inner {
  position: absolute; inset: 0;
  border-radius: 60% 40% 55% 45% / 50% 55% 45% 50%;
  background: linear-gradient(145deg, #0d3a60, var(--teal-dk));
  overflow: hidden;
  animation: blobMorph 8s ease-in-out infinite;
  display: flex; align-items: center; justify-content: center;
}
/* Foto dentro do blob */
.hero-blob-photo {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}
.hero-blob-photo:not([src]),
.hero-blob-photo[src=""] { display: none; }
/* Placeholder RC dentro do blob */
.hrb-placeholder {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
}
.hrb-placeholder span { font-family: var(--fh); font-size: 4rem; font-weight: 800; color: rgba(255,255,255,.22); }
@keyframes blobMorph {
  0%,100% { border-radius: 60% 40% 55% 45% / 50% 55% 45% 50%; }
  25%      { border-radius: 50% 50% 40% 60% / 60% 40% 55% 45%; }
  50%      { border-radius: 40% 60% 60% 40% / 45% 55% 50% 55%; }
  75%      { border-radius: 55% 45% 50% 50% / 55% 45% 60% 40%; }
}
.hrb-dot { position: absolute; border-radius: 50%; background: var(--teal); opacity: .65; }
.hd-1 { width: 13px; height: 13px; top: 7%; right: -3%; animation: floatDot 4s ease-in-out infinite; }
.hd-2 { width: 8px; height: 8px; bottom: 18%; left: -4%; background: rgba(255,255,255,.5); animation: floatDot 5s ease-in-out infinite .8s; }
.hd-3 { width: 16px; height: 16px; bottom: 5%; right: 8%; background: rgba(0,180,216,.38); animation: floatDot 6s ease-in-out infinite 1.6s; }
@keyframes floatDot { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-11px)} }

/* STATS BAR */
.hero-stats-bar {
  position: absolute; bottom: 0; left: 0; right: 0; z-index: 10;
  background: rgba(6,20,40,.78);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  border-top: 1px solid rgba(255,255,255,.08);
}
.hsb-inner { max-width: var(--wrap); margin: 0 auto; padding: 0 clamp(20px,5vw,64px); display: flex; align-items: center; height: 88px; }
.hsb-stat { display: flex; flex-direction: column; justify-content: center; padding: 0 40px; }
.hsb-stat:first-child { padding-left: 0; }
.hsb-stat strong { font-family: var(--fh); font-size: 2rem; font-weight: 800; color: var(--white); line-height: 1; }
.hsb-stat span { font-size: .66rem; color: var(--muted); letter-spacing: .12em; text-transform: uppercase; margin-top: 4px; }
.hsb-div { width: 1px; height: 44px; background: rgba(255,255,255,.12); flex-shrink: 0; }

/* SCROLL HINT */
.scroll-hint { position: absolute; right: clamp(14px,3vw,40px); bottom: 108px; z-index: 4; display: flex; flex-direction: column; align-items: center; gap: 8px; }
.scroll-line { width: 1px; height: 48px; background: linear-gradient(to bottom, rgba(255,255,255,.55), transparent); animation: scrollPulse 2s ease-in-out infinite; }
@keyframes scrollPulse { 0%,100%{opacity:1} 50%{opacity:.25} }
.scroll-hint span { font-size: .6rem; letter-spacing: .2em; text-transform: uppercase; color: rgba(255,255,255,.38); writing-mode: vertical-rl; }

/* TOKENS COMPARTILHADOS */
.tag { display: inline-flex; align-items: center; gap: 10px; font-size: .7rem; font-weight: 600; letter-spacing: .16em; text-transform: uppercase; color: var(--teal2); margin-bottom: 14px; }
.tag::before { content:''; width:22px; height:2px; background:var(--teal2); border-radius:2px; }
.tag.light { color: var(--teal); }
.tag.light::before { background: var(--teal); }
.sec-title { font-family: var(--fh); font-size: clamp(2rem,5vw,3.6rem); font-weight: 800; text-transform: uppercase; line-height: 1.05; color: var(--navy); }
.sec-title em { font-style: italic; font-weight: 700; color: var(--teal2); }
.sec-title.light { color: var(--white); }
.sec-title.light em { color: var(--teal); }
.sec-body { font-size: 1rem; color: #4a6070; line-height: 1.75; font-weight: 300; }
.sec-body.light { color: rgba(255,255,255,.65); }
.sec-header { margin-bottom: 48px; }

/* SOBRE */
.section-sobre { padding: var(--pad) 0; background: var(--off); }
.sobre-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.sobre-left .sec-body { margin: 18px 0 26px; max-width: 420px; }
.creds { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.creds li { display: flex; align-items: center; gap: 12px; font-size: .9rem; color: #2a3a4a; font-weight: 500; }
.dot { width: 8px; height: 8px; border-radius: 50%; background: var(--teal); flex-shrink: 0; }
.important  { color: var(--teal); }
.sobre-right { display: flex; flex-direction: column; gap: 28px; align-items: center; }
.sobre-photo-wrap { position: relative; width: clamp(200px,26vw,300px); aspect-ratio: .85; }
.sobre-photo { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center top; border-radius: 42% 58% 55% 45% / 50% 45% 55% 50%; display: block; z-index: 2; box-shadow: 0 18px 48px rgba(0,0,0,.18); }
.sobre-photo:not([src]), .sobre-photo[src=""] { display: none; }
.sobre-placeholder { position: absolute; inset: 0; z-index: 1; border-radius: 42% 58% 55% 45% / 50% 45% 55% 50%; background: linear-gradient(135deg, var(--teal2), #004e7a); display: flex; align-items: center; justify-content: center; box-shadow: 0 18px 48px rgba(0,150,199,.22); }
.sobre-placeholder span { font-family: var(--fh); font-size: 3.8rem; font-weight: 800; color: rgba(255,255,255,.35); }
.sobre-ring { position: absolute; inset: -10px; z-index: 0; border-radius: 44% 56% 53% 47% / 52% 43% 57% 48%; border: 1.5px solid rgba(0,180,216,.28); animation: ringPulse 3s ease-in-out infinite; }
@keyframes ringPulse { 0%,100%{transform:scale(1);opacity:.4} 50%{transform:scale(1.04);opacity:.75} }
.sobre-dot { position: absolute; border-radius: 50%; z-index: 3; background: var(--teal); }
.sd-1 { width: 11px; height: 11px; top: 5%; right: -2%; animation: floatDot 4s ease-in-out infinite; }
.sd-2 { width: 7px; height: 7px; bottom: 9%; left: -2%; background: rgba(255,255,255,.5); animation: floatDot 5.5s ease-in-out infinite .9s; }
.vals { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; width: 100%; }
.val { display: flex; align-items: center; gap: 12px; background: var(--white); border-radius: 10px; padding: 15px 16px; box-shadow: 0 2px 14px rgba(0,0,0,.05); border-left: 3px solid var(--teal); transition: transform .22s, box-shadow .22s; }
.val:hover { transform: translateY(-3px); box-shadow: 0 6px 22px rgba(0,150,199,.12); }
.val span { font-size: 1.4rem; }
.val p { font-size: .8rem; font-weight: 600; color: var(--navy); }
.destaque-bio{ display: block; margin-top: 14px; font-size: 1.1rem; font-weight: 600; color: var(--teal-dk); font-family: (var(--fb)); }

/* AULAS */
.section-aulas { padding: var(--pad) 0; background: var(--white); }
.aulas-row { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
.aula-card { border-radius: 12px; padding: 38px 30px; background: var(--deep); position: relative; overflow: hidden; transition: transform .28s, box-shadow .28s; cursor: none; }
.aula-card::after { content:''; position: absolute; bottom: -50px; right: -50px; width: 180px; height: 180px; border-radius: 50%; background: rgba(0,180,216,.07); }
.aula-card.featured { background: linear-gradient(145deg, var(--teal2), var(--teal)); }
.aula-card:hover { transform: translateY(-8px); box-shadow: 0 20px 48px rgba(0,0,0,.22); }
.aula-n { font-family: var(--fh); font-size: .72rem; font-weight: 700; letter-spacing: .16em; color: rgba(255,255,255,.28); margin-bottom: 18px; }
.aula-ico { font-size: 2.2rem; display: block; margin-bottom: 14px; }
.aula-card h3 { font-family: var(--fh); font-size: 1.5rem; font-weight: 700; text-transform: uppercase; color: var(--white); margin-bottom: 10px; }
.age-pill { display: inline-flex; align-items: center; background: rgba(255,255,255,.14); border-radius: 100px; padding: 5px 14px; font-size: .74rem; font-weight: 600; color: rgba(255,255,255,.85); letter-spacing: .06em; margin-bottom: 12px; }
.aula-card p:not(.age-pill) { font-size: .87rem; color: rgba(255,255,255,.62); line-height: 1.65; }

/* MÉTODO */
.section-metodo { padding: var(--pad) 0; background: var(--navy); position: relative; overflow: hidden; }
.section-metodo::before { content:''; position: absolute; top: -200px; right: -200px; width: 600px; height: 600px; border-radius: 50%; background: radial-gradient(circle, rgba(0,180,216,.07) 0%, transparent 70%); pointer-events: none; }
.metodo-wrap { display: grid; grid-template-columns: 1fr 1.4fr; gap: 80px; align-items: start; }
.metodo-steps { display: flex; flex-direction: column; padding-top: 6px; }
.mstep { display: flex; gap: 22px; align-items: flex-start; padding: 26px 0; border-bottom: 1px solid rgba(255,255,255,.07); }
.mstep:last-child { border-bottom: none; }
.mn { font-family: var(--fh); font-size: .95rem; font-weight: 800; color: var(--teal); letter-spacing: .06em; flex-shrink: 0; padding-top: 2px; }
.mstep h4 { font-family: var(--fh); font-size: 1.08rem; font-weight: 700; text-transform: uppercase; color: var(--white); margin-bottom: 5px; }
.mstep p { font-size: .87rem; color: rgba(255,255,255,.52); line-height: 1.7; }
.info-metodo { margin-top: 18px; font-size: .86rem; color: var(--off); line-height: 1.6; font-style: italic;font-family: var(--fh); max-width: 380px; }
.mensalidade{ font-size: 1rem; color: var(--teal2); font-weight: bold; }

/* DEPOIMENTOS */
.section-dep { padding: var(--pad) 0; background: var(--off); }
.section-dep .sec-header { margin-bottom: 40px; }
.dep-viewport { overflow: hidden; }
.dep-track { display: flex; gap: 20px; transition: transform .5s cubic-bezier(.4,0,.2,1); will-change: transform; }
.dep-card { flex: 0 0 calc((100% - 40px) / 3); background: var(--white); border-radius: 12px; padding: 28px 24px; box-shadow: 0 2px 18px rgba(0,0,0,.07); border-top: 3px solid var(--teal); transform-style: preserve-3d; will-change: transform; }
.dep-stars { color: #F0C060; font-size: .88rem; letter-spacing: 2px; margin-bottom: 14px; }
.dep-card p { font-family: var(--fh); font-style: italic; font-size: 1rem; color: var(--navy); line-height: 1.6; margin-bottom: 18px; font-weight: 400; }
.dep-author { display: flex; flex-direction: column; gap: 2px; }
.dep-author strong { font-size: .87rem; font-weight: 700; color: var(--navy); }
.dep-author span { font-size: .75rem; color: #6a8090; }
.dep-controls { display: flex; align-items: center; justify-content: center; gap: 18px; margin-top: 30px; }
.dep-btn { width: 32px; height: 32px; border-radius: 50%; background: var(--white); border: 1.5px solid rgba(0,150,199,.25); color: var(--teal2); font-size: 1rem; display: flex; align-items: center; justify-content: center; cursor: none; transition: background .2s, border-color .2s, transform .15s; box-shadow: 0 2px 10px rgba(0,0,0,.06); }
.dep-btn:hover { background: var(--teal); color: var(--white); border-color: var(--teal); transform: scale(1.1); }
.dep-dots { display: flex; gap: 8px; align-items: center; }
.dep-dot { width: 8px; height: 8px; border-radius: 50%; background: rgba(0,150,199,.22); cursor: none; transition: background .25s, transform .25s; }
.dep-dot.on { background: var(--teal2); transform: scale(1.35); }

.section-gallery { padding: var(--pad) 0; background: #fff; }
.section-gallery .sec-header { margin-bottom: 26px; }
.section-gallery .sec-sub { margin-top: 8px; opacity: .75; color: var(--navy); font-size: .95rem; }
.gallery-viewport { overflow: hidden; }
.gallery-track { display: flex; gap: 14px; transition: transform .45s cubic-bezier(.4,0,.2,1); will-change: transform; }
.gallery-card { flex: 0 0 80%; border-radius: 16px; overflow: hidden; box-shadow: 0 8px 32px rgba(0,0,0,.1); background: #f8faff; position: relative; transition: transform .3s ease, box-shadow .3s ease; border: 1px solid rgba(0,180,216,.08); }
.gallery-card:hover { transform: translateY(-6px) scale(1.02); box-shadow: 0 16px 48px rgba(0,150,199,.15); }
.gallery-card img { width: 100%; height: 550px; object-fit: cover; display: block; background: #f8faff; transition: transform .3s ease; }
.gallery-card img[alt*="3"] { object-position: center 80%; }
.gallery-card img[alt*="6"] { object-position: center 40%; }
.gallery-card:hover img { transform: scale(1.05); }
.gallery-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0; background: linear-gradient(135deg, rgba(0,180,216,.02) 0%, rgba(72,202,228,.04) 100%); pointer-events: none; z-index: 1; }
.gallery-controls { display: flex; align-items: center; justify-content: center; gap: 12px; margin-top: 12px; }
.gallery-dots { display: flex; gap: 8px; align-items: center; }
.gallery-dot { width: 8px; height: 8px; border-radius: 50%; background: rgba(0,150,199,.2); transition: background .25s, transform .25s; }
.gallery-dot.on { background: var(--teal2); transform: scale(1.35); }

@media (max-width: 960px) {
  .gallery-card { flex: 0 0 100%; }
}
@media (max-width: 720px) {
  .gallery-card { flex: 0 0 100%; }
  .gallery-card img { height: 550px; }
}
@media (max-width: 560px) {
  .gallery-card { flex: 0 0 100%; }
}
@media (max-width: 960px) {
  .gallery-card { flex: 0 0 calc((100% - 30px) / 3); }
}
@media (max-width: 720px) {
  .gallery-card { flex: 0 0 calc((100% - 20px) / 2); }
}
@media (max-width: 560px) {
  .gallery-card { flex: 0 0 100%; }
}


/* CTA */
.section-cta { padding: var(--pad) 0; background: var(--deep); position: relative; overflow: hidden; }
.cta-glow { position: absolute; top: -40%; right: -10%; width: 600px; height: 600px; border-radius: 50%; background: radial-gradient(circle, rgba(0,180,216,.1) 0%, transparent 70%); pointer-events: none; }
.cta-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.cta-left .sec-body { margin-top: 16px; }
.cta-right { display: flex; flex-direction: column; gap: 14px; align-items: flex-start; }
.btn-wpp { display: inline-flex; align-items: center; gap: 12px; background: #25D366; color: var(--white); font-family: var(--fh); font-weight: 700; font-size: 1rem; letter-spacing: .06em; text-transform: uppercase; padding: 15px 34px; border-radius: 4px; text-decoration: none; box-shadow: 0 8px 26px rgba(37,211,102,.28); transition: transform .2s, box-shadow .2s; }
.btn-wpp:hover { transform: translateY(-2px); box-shadow: 0 14px 34px rgba(37,211,102,.38); }
.btn-email { display: inline-flex; align-items: center; gap: 10px; color: var(--white); text-decoration: none; font-size: .9rem; font-weight: 500; border: 1.5px solid rgba(255,255,255,.22); border-radius: 4px; padding: 13px 30px; transition: border-color .2s, background .2s; letter-spacing: .04em; }
.btn-email:hover { border-color: var(--white); background: rgba(255,255,255,.06); }
.trust-row { display: flex; gap: 18px; flex-wrap: wrap; font-size: .79rem; color: rgba(255,255,255,.45); padding-top: 4px; }

/* FOOTER */
footer { background: var(--navy); padding: 38px 0; border-top: 1px solid rgba(255,255,255,.06); }
.foot-wrap { text-align: center; }
.f-logo { font-family: var(--fh); font-size: 1.25rem; font-weight: 800; color: var(--white); margin-bottom: 6px; }
.f-logo span { color: var(--teal); }
.f-sub { font-size: .78rem; color: rgba(255,255,255,.3); margin-bottom: 18px; }
.f-nav { display: flex; gap: 28px; justify-content: center; margin-bottom: 16px; }
.f-nav a { font-size: .76rem; letter-spacing: .1em; text-transform: uppercase; color: rgba(255,255,255,.32); text-decoration: none; transition: color .2s; }
.f-nav a:hover { color: var(--teal); }
.f-copy { font-size: .7rem; color: rgba(255,255,255,.16); }

/* RESPONSIVE */
@media (max-width: 960px) {
  .nav-links { display: none; }
  .burger { display: flex; }

  /* HERO MOBILE — foto vira background com overlay e blur leve */
  #hero { grid-template-columns: 1fr; }

  /* Coluna direita some normalmente */
  .hero-right { display: none; }

  /* Foto de background mobile — cobre o hero inteiro */
  .hero-mobile-bg {
    display: block;
    position: absolute; inset: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    object-position: center top;
    opacity: .25;
    filter: blur(1.5px) saturate(.75);
    z-index: 1;
  }
  /* Quando src está vazio, não ocupa espaço */
  .hero-mobile-bg:not([src]),
  .hero-mobile-bg[src=""] { display: none; }

  /* Overlay sobre a foto mobile */
  #hero::after {
    content: '';
    position: absolute; inset: 0;
    background:
      linear-gradient(160deg, rgba(10,22,40,.75) 0%, rgba(10,22,40,.45) 100%);
    z-index: 1;
    pointer-events: none;
  }

  /* Texto acima do overlay */
  .hero-left {
    position: relative; z-index: 2;
    padding: 110px clamp(20px,5vw,40px) 110px;
  }

  .sobre-wrap { grid-template-columns: 1fr; gap: 48px; }
  .aulas-row { grid-template-columns: 1fr; }
  .metodo-wrap { grid-template-columns: 1fr; gap: 48px; }
  .cta-wrap { grid-template-columns: 1fr; gap: 40px; }
  .dep-card { flex: 0 0 calc((100% - 20px) / 2); }
}
@media (max-width: 560px) {
  .vals { grid-template-columns: 1fr; }
  .dep-card { flex: 0 0 100%; }
}

@media (max-width: 768px) {
  /* Ajusta a altura da barra e remove paddings excessivos */
  .hsb-inner {
    height: 75px; /* Reduz de 88px para 60px */
    padding: 0 10px;
    justify-content: space-around; /* Distribui melhor os itens no espaço curto */
  }

  .hsb-stat {
    padding: 0 5px; /* Reduz muito o padding lateral (era 40px) */
    align-items: center;
    min-width: 0; /* Permite que o item encolha o quanto for preciso */
  }

  /* Diminui o número principal */
  .hsb-stat strong {
    font-size: 1.2rem; /* Reduz de 2rem para 1.2rem */
    white-space: nowrap; /* Garante que o número e o símbolo (ex: 5★) fiquem juntos */
  }

  /* Diminui a legenda (ex: "anos", "avaliação") */
  .hsb-stat span {
    font-size: 0.55rem; /* Reduz de 0.66rem para 0.55rem */
    letter-spacing: 0.05em; /* Diminui o espaçamento entre letras para ganhar espaço */
    text-align: center;
  }

  /* Deixa as linhas divisórias mais finas e curtas */
  .hsb-div {
    height: 25px; /* Reduz de 44px para 25px */
    opacity: 0.3; /* Deixa mais sutil para não poluir o visual pequeno */
  }
}
