/* ===================================================================
   SECTIONS.CSS — Section-level layout & overrides
   Português Revisa · ALE-CE Landing Page
   =================================================================== */

/* ─── NAV ─────────────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: 72px;
  display: flex;
  align-items: center;
  transition: background .3s, backdrop-filter .3s, box-shadow .3s;
}
.nav.scrolled {
  background: rgba(10,22,40,.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 var(--border-sub);
}
.nav .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: 100%;
}
.nav-logo-text {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.04em;
  white-space: nowrap;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--muted);
  transition: color .2s;
}
.nav-links a:hover { color: var(--cream); }
.nav-right {
  display: flex;
  align-items: center;
  gap: 16px;
}
.nav-instagram {
  display: flex;
  align-items: center;
  color: var(--muted);
  transition: color .2s;
}
.nav-instagram:hover { color: var(--gold); }
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}
.nav-hamburger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--cream);
  border-radius: 2px;
  transition: transform .3s, opacity .3s;
}
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  top: 72px;
  z-index: 99;
  background: rgba(10,22,40,.97);
  backdrop-filter: blur(20px);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-size: 22px;
  font-weight: 600;
  color: var(--cream);
  transition: color .2s;
}
.mobile-menu a:hover { color: var(--gold); }

@media (max-width: 760px) {
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
}

/* ─── HERO ────────────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: clamp(80px, 10vh, 96px);
  padding-bottom: clamp(36px, 4vw, 56px);
  position: relative;
  overflow: hidden;
}
/* Garante que tudo caiba acima do fold em telas menores */
@media (max-height: 820px) {
  .hero {
    padding-top: 76px;
    padding-bottom: 32px;
    align-items: flex-start;
  }
  .hero .container { padding-top: 8px; }
  .hero-lede { margin-bottom: 20px !important; font-size: 15px; }
  .hero-ctas { margin-bottom: 28px !important; }
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 70% 50%, rgba(212,168,71,.07) 0%, transparent 60%),
    radial-gradient(ellipse 50% 80% at 15% 30%, rgba(30,58,138,.18) 0%, transparent 55%);
  pointer-events: none;
}
.hero .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  width: 100%;
}
.hero-content { position: relative; z-index: 1; }
.hero-chip    { margin-bottom: 28px; }
.hero-title {
  font-size: clamp(22px, 2.5vw, 36px);
  color: var(--cream);
  margin-bottom: 16px;
  line-height: 1.25;
}
.hero-lede {
  font-size: clamp(14px, 1vw, 16px);
  color: var(--muted);
  margin-bottom: 24px;
  max-width: 520px;
  line-height: 1.68;
}
.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 0;
}
.hero-kpis {
  display: flex;
  gap: 0;
  background: var(--bg-card);
  border: 1px solid var(--border-sub);
  border-radius: var(--r-lg);
  overflow: hidden;
}
.hero-kpi {
  flex: 1;
  padding: 20px 24px;
  text-align: center;
  border-right: 1px solid var(--border-sub);
  min-width: 0;
}
.hero-kpi:last-child { border-right: none; }
.hero-kpi-num {
  font-family: var(--font-display);
  font-size: clamp(24px, 2.5vw, 36px);
  font-weight: 700;
  color: var(--gold);
  display: block;
  line-height: 1.1;
  margin-bottom: 4px;
}
.hero-kpi-label {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.4;
  display: block;
}
.hero-image-wrap {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
.hero-photo {
  width: 100%;
  max-width: 460px;
  border-radius: var(--r-xl);
  position: relative;
  z-index: 1;
  animation: floatHero 6s ease-in-out infinite;
  object-fit: cover;
  aspect-ratio: 3/4;
}
.hero-photo-placeholder {
  width: 100%;
  max-width: 460px;
  aspect-ratio: 3/4;
  border-radius: var(--r-xl);
  background: linear-gradient(160deg, var(--bg-elevated) 0%, var(--bg-card) 100%);
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  position: relative;
  z-index: 1;
  animation: floatHero 6s ease-in-out infinite;
  overflow: hidden;
}
.hero-glow {
  position: absolute;
  bottom: -40px; left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 180px;
  background: radial-gradient(ellipse, rgba(212,168,71,.35) 0%, transparent 70%);
  pointer-events: none;
  animation: glowPulse 4s ease-in-out infinite;
}
.hero-badge-unesp,
.hero-badge-ufmg {
  position: absolute;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 10px 16px;
  font-size: 12px;
  font-weight: 700;
  color: var(--gold);
  z-index: 2;
  animation: pulseSeal 3s ease-in-out infinite;
}
.hero-badge-unesp { bottom: 80px; left: -24px; }
.hero-badge-ufmg  { top: 60px;   right: -24px; }

@media (max-width: 760px) {
  .hero .container { grid-template-columns: 1fr; gap: 40px; }
  .hero-image-wrap { order: -1; }
  .hero-photo, .hero-photo-placeholder { max-width: 280px; margin: 0 auto; }
  .hero-badge-unesp { left: 8px; }
  .hero-badge-ufmg  { right: 8px; }
  .hero-kpis { flex-direction: column; }
  .hero-kpi  { border-right: none; border-bottom: 1px solid var(--border-sub); }
  .hero-kpi:last-child { border-bottom: none; }
}

/* ─── HERO PHOTO CONTEST ──────────────────────────────────────── */
.hero-photo-contest {
  width: 100%;
  max-width: 420px;
  max-height: clamp(260px, 62vh, 500px);
  border-radius: var(--r-xl);
  position: relative;
  z-index: 1;
  animation: floatHero 6s ease-in-out infinite;
  object-fit: contain;
  display: block;
  margin: 0 auto;
}

@media (max-width: 760px) {
  .hero-photo-contest { max-width: 280px; }
}

/* ─── MARQUEE ─────────────────────────────────────────────────── */
.marquee-section {
  padding: 32px 0;
  background: var(--bg-band);
  border-top: 1px solid var(--border-sub);
  border-bottom: 1px solid var(--border-sub);
  overflow: hidden;
}
.marquee-track {
  display: flex;
  gap: 0;
  white-space: nowrap;
  animation: marqueeScroll 28s linear infinite;
}
.marquee-track:hover { animation-play-state: paused; }
.marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  padding: 0 32px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--muted);
  white-space: nowrap;
}
.marquee-item.accent { color: var(--gold); }
.marquee-dot {
  display: inline-block;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--border);
  flex-shrink: 0;
}

/* ─── PROFESSORA ──────────────────────────────────────────────── */
.professora-section { padding: var(--sec-pad) 0; }
.prof-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 72px;
  align-items: start;
}

/* Left column */
.prof-left { display: flex; flex-direction: column; }
.prof-photo-wrap {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
.prof-photo {
  width: 100%;
  max-width: 380px;
  border-radius: var(--r-xl);
  position: relative;
  z-index: 1;
  animation: floatHero 6s ease-in-out infinite;
  object-fit: cover;
  aspect-ratio: 3/4;
  display: block;
  margin: 0 auto;
}
.prof-kpis { margin-top: 24px; }

/* Right column — bio */
.prof-bio { padding-top: 0; }
.prof-name {
  font-size: clamp(26px, 3.2vw, 44px);
  color: var(--gold);
  margin-bottom: 24px;
  line-height: 1.15;
}
.prof-text {
  font-size: clamp(15px, 1.1vw, 17px);
  color: var(--muted);
  line-height: 1.78;
  margin-bottom: 18px;
}
.prof-intro {
  font-family: var(--font-display);
  font-size: clamp(18px, 1.6vw, 24px);
  color: var(--cream);
  font-style: italic;
  margin-bottom: 24px;
}

@media (max-width: 760px) {
  .prof-grid { grid-template-columns: 1fr; gap: 40px; }
  .prof-photo { max-width: 260px; }
  .prof-kpis { flex-direction: row; }
}

/* ─── TESE ────────────────────────────────────────────────────── */
.tese-section { padding: var(--sec-pad) 0; }
.tese-section .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: start;
}
.tese-points { margin-top: 32px; display: flex; flex-direction: column; gap: 20px; }
.tese-point {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 20px;
  background: var(--bg-card);
  border: 1px solid var(--border-sub);
  border-radius: var(--r-md);
}
.tese-point-icon {
  font-size: 20px;
  flex-shrink: 0;
  margin-top: 2px;
}
.chart-wrap {
  position: sticky;
  top: 100px;
}
.chart-container {
  background: var(--bg-card);
  border: 1px solid var(--border-sub);
  border-radius: var(--r-lg);
  padding: 28px 20px 20px;
}
.chart-legend {
  display: flex;
  gap: 24px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}
.legend-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: var(--muted);
  font-weight: 500;
}
.legend-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
}

@media (max-width: 760px) {
  .tese-section .container { grid-template-columns: 1fr; gap: 40px; }
  .chart-wrap { position: static; }
}

/* ─── ARGUMENTOS ──────────────────────────────────────────────── */
.argumentos-section { padding: var(--sec-pad) 0; }
.argumentos-header  { text-align: center; margin-bottom: 56px; }
.argumentos-header .section-sub { margin: 0 auto; }
.arg-card { display: flex; flex-direction: column; }
.arg-icon { font-size: 32px; margin-bottom: 16px; }
.arg-headline {
  font-family: var(--font-display);
  font-size: clamp(17px, 1.5vw, 21px);
  color: var(--cream);
  margin-bottom: 8px;
}
.arg-lede {
  font-size: 13px;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 12px;
  line-height: 1.4;
}
.arg-body {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.65;
  flex: 1;
}

/* ─── PULL BAND ───────────────────────────────────────────────── */
.pull-band {
  background: linear-gradient(135deg, var(--bg-band) 0%, #0B1730 50%, var(--bg-band) 100%);
  border-top:    1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 72px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.pull-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 50% 50%, rgba(212,168,71,.06) 0%, transparent 65%);
  pointer-events: none;
}
.pull-band-text {
  font-family: var(--font-display);
  font-size: clamp(22px, 3.2vw, 46px);
  color: var(--cream);
  max-width: 860px;
  margin: 0 auto 32px;
  line-height: 1.3;
  position: relative;
}

/* ─── WHY NOW ─────────────────────────────────────────────────── */
.why-now-section { padding: var(--sec-pad) 0; }
.why-now-header  { text-align: center; margin-bottom: 48px; }
.why-card-icon {
  font-size: 36px;
  margin-bottom: 16px;
}
.why-card h3 {
  font-size: clamp(17px, 1.4vw, 20px);
  color: var(--cream);
  margin-bottom: 12px;
}
.why-card p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.65;
}

/* ─── DIFERENCIAL ─────────────────────────────────────────────── */
.diferencial-section { padding: var(--sec-pad) 0; }
.diferencial-section .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.diferencial-header { margin-bottom: 40px; }
.metric-row { margin-bottom: 32px; }
.metric-label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--cream);
}
.metric-score { color: var(--gold); font-weight: 700; }
.bar-track {
  background: var(--bg-card);
  border-radius: 100px;
  height: 10px;
  overflow: hidden;
  margin-bottom: 6px;
}
.bar-fill {
  height: 100%;
  border-radius: 100px;
  animation: growBar .9s ease-out forwards;
}
.bar-fill.red  { background: var(--red); }
.bar-fill.gold { background: linear-gradient(90deg, var(--gold-dark), var(--gold-light)); }
.bar-sub {
  font-size: 11px;
  color: var(--faint);
  font-weight: 500;
}
.dashboard-mock {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 28px;
  box-shadow: var(--shadow-gold);
}
.dash-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border-sub);
}
.dash-nota-block { display: flex; flex-direction: column; gap: 2px; }
.dash-nota-num {
  font-family: var(--font-display);
  font-size: 42px;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.dash-nota-label { font-size: 12px; color: var(--muted); }
.dash-rank {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  background: rgba(76,175,125,.1);
  border: 1px solid rgba(76,175,125,.3);
  border-radius: var(--r-md);
  padding: 12px 16px;
}
.dash-rank-arrow { font-size: 20px; color: var(--green); }
.dash-rank-text  { font-size: 11px; color: var(--green); font-weight: 700; text-align: center; }
.dash-progress-list { display: flex; flex-direction: column; gap: 14px; }
.dash-prog-item { display: flex; flex-direction: column; gap: 6px; }
.dash-prog-label {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: var(--muted);
  font-weight: 500;
}
.dash-prog-val { color: var(--gold); font-weight: 700; }
.dash-prog-track {
  background: var(--bg-card);
  border-radius: 100px;
  height: 6px;
  overflow: hidden;
}
.dash-prog-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold-light));
  border-radius: 100px;
  animation: growBar 1s ease-out forwards;
}

@media (max-width: 760px) {
  .diferencial-section .container { grid-template-columns: 1fr; }
}

/* ─── O SERVIÇO ───────────────────────────────────────────────── */
.servico-section { padding: var(--sec-pad) 0; }
.servico-section .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.servico-price-block {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 28px;
  margin: 32px 0;
  text-align: center;
}
.servico-price-label { font-size: 12px; color: var(--muted); margin-bottom: 8px; }
.servico-price-main {
  font-family: var(--font-display);
  font-size: clamp(28px, 3vw, 42px);
  color: var(--gold);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 4px;
}
.servico-price-sub  { font-size: 13px; color: var(--muted); }
.feature-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.feature-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 20px;
  background: var(--bg-card);
  border: 1px solid var(--border-sub);
  border-radius: var(--r-md);
  transition: border-color .25s;
}
.feature-item:hover { border-color: var(--border); }
.feature-icon { font-size: 24px; flex-shrink: 0; }
.feature-text h4 {
  font-family: var(--font-display);
  font-size: 16px;
  color: var(--cream);
  margin-bottom: 4px;
}
.feature-text p { font-size: 13px; color: var(--muted); line-height: 1.55; }
.perceived-value {
  margin-top: 8px;
  font-size: 11px;
  font-weight: 700;
  color: var(--gold-dark);
}

@media (max-width: 760px) {
  .servico-section .container { grid-template-columns: 1fr; }
}

/* ─── PROCESSO ────────────────────────────────────────────────── */
.processo-section { padding: var(--sec-pad) 0; }
.processo-header  { text-align: center; margin-bottom: 64px; }
.timeline {
  position: relative;
  max-width: 720px;
  margin: 0 auto;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 28px; top: 0; bottom: 0;
  width: 1px;
  background: linear-gradient(to bottom, transparent, var(--gold) 10%, var(--gold) 90%, transparent);
}
.timeline-item {
  display: flex;
  gap: 28px;
  align-items: flex-start;
  margin-bottom: 36px;
  position: relative;
}
.timeline-item:last-child { margin-bottom: 0; }
.timeline-num {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--bg-card);
  border: 2px solid var(--gold);
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--gold);
  flex-shrink: 0;
  position: relative;
  z-index: 1;
  animation: pulseSeal 3s ease-in-out infinite;
}
.timeline-content {
  padding: 20px 24px;
  background: var(--bg-card);
  border: 1px solid var(--border-sub);
  border-radius: var(--r-md);
  flex: 1;
  min-width: 0;
  transition: border-color .25s;
}
.timeline-content:hover { border-color: var(--border); }
.timeline-content h3 {
  font-family: var(--font-display);
  font-size: 18px;
  color: var(--cream);
  margin-bottom: 8px;
}
.timeline-content p { font-size: 14px; color: var(--muted); }

/* ─── DEPOIMENTOS ─────────────────────────────────────────────── */
.depoimentos-section { padding: var(--sec-pad) 0; }
.depoimentos-header  { text-align: center; margin-bottom: 56px; }
.depoimento-card {
  background: var(--bg-card);
  border: 1px solid var(--border-sub);
  border-radius: var(--r-lg);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: border-color .3s, transform .3s, box-shadow .3s;
}
.depoimento-card:hover {
  border-color: var(--border);
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
}
.depo-quote-icon {
  font-size: 32px;
  color: var(--gold);
  opacity: .5;
  line-height: 1;
}
.depo-text {
  font-size: clamp(14px, 1.1vw, 16px);
  color: var(--cream);
  line-height: 1.72;
  font-style: italic;
  flex: 1;
}
.depo-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid var(--border-sub);
  flex-wrap: wrap;
}
.depo-author {
  font-size: 13px;
  font-weight: 600;
  color: var(--muted);
}
.depo-badge {
  background: var(--gold-dim);
  border: 1px solid var(--border);
  color: var(--gold);
  font-size: 11px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 100px;
  white-space: nowrap;
}
.kpis-band {
  margin-top: 64px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0,1fr));
  gap: 1px;
  background: var(--border-sub);
  border: 1px solid var(--border-sub);
  border-radius: var(--r-lg);
  overflow: hidden;
}
.kpi-cell {
  background: var(--bg-card);
  padding: 28px 20px;
  text-align: center;
}
.kpi-num {
  font-family: var(--font-display);
  font-size: clamp(28px, 2.8vw, 42px);
  font-weight: 700;
  color: var(--gold);
  display: block;
  margin-bottom: 4px;
}
.kpi-desc { font-size: 13px; color: var(--muted); line-height: 1.4; }

@media (max-width: 760px) {
  .kpis-band { grid-template-columns: repeat(2, minmax(0,1fr)); }
}

/* ─── DEPOIMENTOS CARROSSEL ───────────────────────────────────── */
.depo-carousel {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}
.depo-viewport {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 20px;
  min-width: 0;
}
.depo-frame {
  border-radius: var(--r-lg);
  background: var(--bg-elevated);
  box-shadow: 0 0 0 2px var(--gold), 0 0 24px rgba(212,168,71,.18), 0 4px 20px rgba(0,0,0,.4);
  transition: transform .3s ease, box-shadow .3s ease;
  overflow: hidden;
  height: 300px;
  cursor: pointer;
}
.depo-frame:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 0 2px var(--gold-light), 0 0 36px rgba(212,168,71,.28), 0 8px 32px rgba(0,0,0,.5);
}
.depo-frame-inner {
  padding: 4px;
  background: var(--bg-elevated);
}
.depo-img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  border-radius: calc(var(--r-lg) - 2px);
  background: var(--bg-elevated);
}
.depo-arrow {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--bg-card);
  border: 1px solid var(--border);
  color: var(--gold);
  cursor: pointer;
  transition: background .22s, border-color .22s, transform .22s;
}
.depo-arrow:hover {
  background: var(--gold-dim);
  border-color: var(--gold);
  transform: scale(1.1);
}
.depo-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 56px;
  flex-wrap: wrap;
}
.depo-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--border);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background .22s, transform .22s;
}
.depo-dot.active {
  background: var(--gold);
  transform: scale(1.4);
}

/* KPIs com texto (não números) */
.depo-kpis-band .kpi-num {
  font-family: var(--font-body);
  font-size: clamp(11px, 1vw, 13px);
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
  line-height: 1.3;
}

@media (max-width: 760px) {
  .depo-viewport { grid-template-columns: 1fr; }
  .depo-carousel { gap: 8px; }
  .depo-kpis-band { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .depo-frame { height: 260px; }
}

/* ─── LIGHTBOX ────────────────────────────────────────────────── */
.lightbox-overlay {
  position: fixed;
  inset: 0;
  z-index: 9000;
  background: rgba(0,0,0,.88);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: lb-in .2s ease;
  cursor: zoom-out;
}
@keyframes lb-in {
  from { opacity: 0; }
  to   { opacity: 1; }
}
.lightbox-img {
  max-width: min(90vw, 720px);
  max-height: 88vh;
  object-fit: contain;
  border-radius: var(--r-lg);
  box-shadow: 0 0 0 2px var(--gold), 0 0 60px rgba(212,168,71,.25), 0 16px 60px rgba(0,0,0,.7);
  animation: lb-scale .22s ease;
  cursor: default;
}
@keyframes lb-scale {
  from { transform: scale(.88); opacity: 0; }
  to   { transform: scale(1);   opacity: 1; }
}
.lightbox-close {
  position: absolute;
  top: 20px;
  right: 24px;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.2);
  color: #fff;
  font-size: 22px;
  line-height: 1;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background .2s;
}
.lightbox-close:hover { background: rgba(255,255,255,.22); }

/* lightbox com scroll quando zoom > 1 */
.lightbox-overlay.lightbox-zoomed {
  align-items: flex-start;
  overflow-y: auto;
  padding-top: 80px;
  padding-bottom: 80px;
  cursor: default;
}

/* controles de zoom */
.lightbox-zoom-controls {
  position: fixed;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(0,0,0,.6);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 999px;
  padding: 8px 20px;
  z-index: 9001;
  backdrop-filter: blur(8px);
}
.lightbox-zoom-btn {
  background: none;
  border: none;
  color: #fff;
  font-size: 22px;
  line-height: 1;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border-radius: 50%;
  transition: background .18s;
}
.lightbox-zoom-btn:hover { background: rgba(255,255,255,.18); }
.lightbox-zoom-btn:disabled { opacity: .3; cursor: not-allowed; }
.lightbox-zoom-level {
  font-size: 13px;
  font-weight: 600;
  color: #fff;
  min-width: 44px;
  text-align: center;
  letter-spacing: .04em;
}

/* ─── CORREÇÃO REDAÇÃO PREVIEW ───────────────────────────────── */
.correcao-preview-block {
  grid-column: 1 / -1;
  margin-top: 56px;
  padding: 40px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
}
.correcao-preview-header {
  text-align: center;
  margin-bottom: 32px;
}
.correcao-preview-title {
  font-family: var(--font-display);
  font-size: clamp(20px, 2vw, 28px);
  color: var(--cream);
  margin: 8px 0 12px;
  line-height: 1.3;
}
.correcao-preview-sub {
  font-size: 15px;
  color: var(--muted);
  max-width: 620px;
  margin: 0 auto;
  line-height: 1.7;
}
@media (max-width: 760px) {
  .correcao-preview-block { padding: 24px 20px; margin-top: 40px; }
}

/* ─── FAQ ─────────────────────────────────────────────────────── */
.faq-section { padding: var(--sec-pad) 0; }
.faq-section .container {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 64px;
  align-items: start;
}
.faq-list { display: flex; flex-direction: column; gap: 8px; }
.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border-sub);
  border-radius: var(--r-md);
  overflow: hidden;
  transition: border-color .2s;
}
.faq-item.open { border-color: var(--border); }
.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  cursor: pointer;
  font-size: clamp(14px, 1vw, 16px);
  font-weight: 600;
  color: var(--cream);
  width: 100%;
  text-align: left;
  transition: color .2s;
}
.faq-question:hover { color: var(--gold); }
.faq-icon {
  font-size: 22px;
  color: var(--gold);
  flex-shrink: 0;
  transition: transform .3s;
  font-weight: 300;
  line-height: 1;
}
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease, padding .35s ease;
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
}
.faq-answer.open {
  max-height: 300px;
  padding: 0 24px 20px;
}

.faq-left  { align-self: start; }
.faq-list  { align-self: start; }

@media (max-width: 760px) {
  .faq-section .container { grid-template-columns: 1fr; }
}

/* ─── CTA FINAL ───────────────────────────────────────────────── */
.cta-final-section { padding: 0 0 var(--sec-pad); }
.cta-box {
  background: linear-gradient(160deg, var(--bg-elevated) 0%, var(--bg-card) 100%);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: clamp(48px, 6vw, 88px);
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 0 80px var(--gold-dim), 0 0 160px rgba(212,168,71,.06);
}
.cta-box::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 60% at 50% 0%, rgba(212,168,71,.1) 0%, transparent 55%);
  pointer-events: none;
}
.cta-box-title {
  font-size: clamp(28px, 4vw, 56px);
  color: var(--cream);
  margin-bottom: 20px;
  position: relative;
}
.cta-box-sub {
  font-size: clamp(15px, 1.3vw, 19px);
  color: var(--muted);
  max-width: 560px;
  margin: 0 auto 40px;
  line-height: 1.7;
  position: relative;
}
.cta-price-display {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 36px;
  position: relative;
}
.cta-price-main {
  font-family: var(--font-display);
  font-size: clamp(28px, 3vw, 48px);
  font-weight: 700;
  color: var(--gold);
}
.cta-price-or { font-size: 14px; color: var(--faint); }
.cta-price-install { font-size: 14px; color: var(--muted); }
.cta-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  margin-bottom: 40px;
  position: relative;
}
.cta-box-ps {
  font-size: 14px;
  color: var(--muted);
  max-width: 640px;
  margin: 0 auto;
  line-height: 1.65;
  position: relative;
}
.cta-box-ps + .cta-box-ps { margin-top: 12px; }

/* ─── FOOTER ──────────────────────────────────────────────────── */
.footer {
  background: var(--bg-band);
  border-top: 1px solid var(--border-sub);
  padding: 64px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 56px;
}
.footer-brand {}
.footer-logo { height: 48px; width: auto; object-fit: contain; margin-bottom: 16px; }
.footer-tagline { font-size: 14px; color: var(--muted); margin-bottom: 20px; max-width: 280px; line-height: 1.65; }
.footer-social {
  display: flex;
  align-items: center;
  gap: 12px;
}
.footer-social a {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 500;
  transition: color .2s;
}
.footer-social a:hover { color: var(--gold); }
.footer-col h4 {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col a {
  font-size: 14px;
  color: var(--muted);
  transition: color .2s;
}
.footer-col a:hover { color: var(--cream); }
.footer-bottom {
  border-top: 1px solid var(--border-sub);
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-copy { font-size: 12px; color: var(--faint); }
.footer-bottom-links {
  display: flex;
  gap: 24px;
}
.footer-bottom-links a { font-size: 12px; color: var(--faint); transition: color .2s; }
.footer-bottom-links a:hover { color: var(--muted); }

@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; } }
@media (max-width: 760px) { .footer-grid { grid-template-columns: 1fr; } }

/* ─── 480px SMALL PHONES ──────────────────────────────────────── */
@media (max-width: 480px) {
  /* Hero badges overflow fora da foto — esconde em telas muito pequenas */
  .hero-badge-unesp,
  .hero-badge-ufmg { display: none; }

  /* Foto menor para não cortar nas laterais */
  .hero-photo,
  .hero-photo-placeholder { max-width: 220px; }

  /* Botões de CTA empilhados e full-width */
  .hero-ctas { flex-direction: column; }
  .hero-ctas .btn-primary,
  .hero-ctas .btn-secondary { width: 100%; }

  /* KPI band: 2 colunas já funciona, mas abaixo de 360px vai para 1 */
  @media (max-width: 360px) {
    .kpis-band { grid-template-columns: 1fr; }
    .hero-kpis { gap: 0; }
  }
}
