/* ═══════════════════════════════════════════════
   RESET & VARIÁVEIS CSS — TEMA CLARO
═══════════════════════════════════════════════ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

:root {
  --green-primary:   #1ec4d4;
  --green-light:     #4dd4e2;
  --green-glow:      rgba(30, 196, 212, 0.14);
  --green-glow-soft: rgba(30, 196, 212, 0.06);
  --green-border:    rgba(30, 196, 212, 0.28);
  --green-deep:      #0a3a40;

  --bg-page:    #f5f3ef;
  --bg-white:   #ffffff;
  --bg-offwhite:#f0ede8;
  --bg-card:    #ece9e3;
  --bg-darkest: #0d1410;

  --text-dark:   #111814;
  --text-body:   #3a3a38;
  --text-muted:  rgba(20,30,22,0.52);
  --text-faint:  rgba(20,30,22,0.30);
  --text-ghost:  rgba(20,30,22,0.08);

  --font-cinzel:   'Cinzel', serif;
  --font-cormorant:'Cormorant Garamond', serif;
  --font-barlow:   'Barlow', sans-serif;
  --font-barlow-c: 'Barlow Condensed', sans-serif;

  --ease-premium: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-smooth:  cubic-bezier(0.4, 0, 0.2, 1);
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  background: var(--bg-page);
  color: var(--text-dark);
  overflow-x: hidden;
  cursor: default;
}

/* ═══════════════════════════════════════════════
   PARTÍCULAS DE FUNDO
═══════════════════════════════════════════════ */
#particles-canvas {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: 0.18;
}

/* ═══════════════════════════════════════════════
   FAIXA ANIMADA NO TOPO
═══════════════════════════════════════════════ */
.top-announcement-strip {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: 44px;
  background: rgba(245, 243, 239, 0.94);
  border-bottom: 1px solid rgba(30, 196, 212, 0.18);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  overflow: hidden;
  display: flex;
  align-items: center;
}

.top-announcement-strip::before,
.top-announcement-strip::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 80px;
  z-index: 2;
  pointer-events: none;
}
.top-announcement-strip::before {
  left: 0;
  background: linear-gradient(to right, var(--bg-page), transparent);
}
.top-announcement-strip::after {
  right: 0;
  background: linear-gradient(to left, var(--bg-page), transparent);
}

.strip-track {
  display: inline-flex;
  align-items: center;
  gap: 0;
  white-space: nowrap;
  animation: strip-scroll 28s linear infinite;
  will-change: transform;
}

@keyframes strip-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.strip-item {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 0 24px;
}

.strip-quote {
  font-family: var(--font-cormorant);
  font-style: italic;
  font-size: clamp(11px, 1.8vw, 14px);
  color: var(--text-muted);
  letter-spacing: 0.05em;
}

.strip-author {
  font-family: var(--font-barlow-c);
  font-size: clamp(9px, 1.4vw, 11px);
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--green-primary);
  font-weight: 600;
}

.strip-diamond {
  color: var(--green-primary);
  opacity: 0.5;
  font-size: 8px;
}

/* ═══════════════════════════════════════════════
   HERO SECTION — layout split 9:16
═══════════════════════════════════════════════ */
#hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  grid-template-columns: 1fr 60%;
  overflow: hidden;
  padding-top: 44px;
  background: var(--bg-page);
}

.hero-content {
  position: relative;
  z-index: 5;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(40px, 6vw, 80px) clamp(24px, 5vw, 64px);
  padding-right: clamp(20px, 3vw, 40px);
}

.hero-bg {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 100svh;
  overflow: hidden;
  display: flex;
  align-items: stretch;
  justify-content: center;
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right, var(--bg-page) 0%, rgba(245,243,239,0.3) 18%, transparent 38%),
    linear-gradient(to top, var(--bg-page) 0%, transparent 14%);
  z-index: 2;
  pointer-events: none;
}

.hero-bg-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
  filter: blur(60px);
}
.hero-bg-orb-1 {
  width: 55%;
  aspect-ratio: 1;
  background: radial-gradient(circle, rgba(30,196,212,0.18) 0%, transparent 70%);
  top: 10%;
  right: -10%;
  animation: orb-drift-1 9s ease-in-out infinite alternate;
}
.hero-bg-orb-2 {
  width: 40%;
  aspect-ratio: 1;
  background: radial-gradient(circle, rgba(77,212,226,0.12) 0%, transparent 70%);
  bottom: 15%;
  right: 5%;
  animation: orb-drift-2 12s ease-in-out infinite alternate;
}
@keyframes orb-drift-1 {
  from { transform: translate(0,0) scale(1);   }
  to   { transform: translate(-8px,12px) scale(1.06); }
}
@keyframes orb-drift-2 {
  from { transform: translate(0,0) scale(1);   }
  to   { transform: translate(6px,-10px) scale(0.94); }
}

.hero-bg-frame {
  position: absolute;
  inset: clamp(16px,3vw,32px);
  z-index: 3;
  pointer-events: none;
}
.hero-bg-frame::before,
.hero-bg-frame::after {
  content: '';
  position: absolute;
  border-color: rgba(30,196,212,0.22);
  border-style: solid;
}
.hero-bg-frame::before {
  top: 0; right: 0;
  width: clamp(24px,4vw,44px);
  height: clamp(24px,4vw,44px);
  border-width: 1px 1px 0 0;
}
.hero-bg-frame::after {
  bottom: 0; right: 0;
  width: clamp(24px,4vw,44px);
  height: clamp(24px,4vw,44px);
  border-width: 0 1px 1px 0;
}

.hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 18%;
  display: block;
  position: relative;
  z-index: 1;
  transition: transform 0.12s linear;
  transform: scale(1.02);
}

.hero-bg-vignette {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 28%;
  background: linear-gradient(to top, var(--bg-page) 0%, transparent 100%);
  z-index: 2;
  pointer-events: none;
}

.hero-bg-badge {
  position: absolute;
  bottom: clamp(28px,5vw,56px);
  left: clamp(16px,3vw,28px);
  z-index: 5;
  display: flex;
  flex-direction: column;
  gap: 2px;
  background: rgba(245,243,239,0.82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(30,196,212,0.22);
  padding: 10px 16px;
  opacity: 0;
  transform: translateY(12px);
  animation: badge-enter 0.8s cubic-bezier(0.16,1,0.3,1) 1.4s forwards;
}
@keyframes badge-enter {
  to { opacity: 1; transform: translateY(0); }
}
.hero-bg-badge-line1 {
  font-family: var(--font-barlow-c);
  font-size: clamp(7px,1.1vw,9px);
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.hero-bg-badge-line2 {
  font-family: var(--font-cinzel);
  font-size: clamp(9px,1.5vw,12px);
  color: var(--text-dark);
  letter-spacing: 0.08em;
  font-weight: 600;
}

/* ── Perfil circular ── */
.hero-profile {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2.5vw, 22px);
  margin-bottom: clamp(24px, 4vw, 44px);
  opacity: 0;
  transform: translateY(20px);
}

.profile-ring {
  position: relative;
  flex-shrink: 0;
}

.profile-ring::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  background: conic-gradient(
    var(--green-primary) 0deg,
    transparent 200deg,
    var(--green-primary) 360deg
  );
  animation: ring-spin 8s linear infinite;
}

@keyframes ring-spin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

.profile-img {
  width: clamp(64px, 12vw, 92px);
  height: clamp(64px, 12vw, 92px);
  border-radius: 50%;
  object-fit: cover;
  object-position: center top;
  position: relative;
  z-index: 1;
  border: 3px solid var(--bg-page);
  display: block;
  background: var(--bg-card);
}

.profile-info {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.profile-name {
  font-family: var(--font-cinzel);
  font-size: clamp(15px, 2.8vw, 24px);
  font-weight: 700;
  color: var(--text-dark);
  letter-spacing: 0.08em;
  line-height: 1;
}

.profile-title {
  font-family: var(--font-barlow-c);
  font-size: clamp(9px, 1.6vw, 13px);
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--green-primary);
  font-weight: 600;
}

.profile-posgrad {
  font-family: var(--font-cormorant);
  font-style: italic;
  font-size: clamp(10px, 1.8vw, 14px);
  color: var(--text-muted);
}

.einstein-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  border: none;
  padding: 0;
  margin-top: 8px;
}

.einstein-logo {
  height: clamp(32px, 5vw, 48px);
  width: auto;
  opacity: 0.9;
  mix-blend-mode: multiply;
}

.einstein-text {
  display: none;
}

.hero-eyebrow {
  font-family: var(--font-barlow-c);
  font-size: clamp(9px, 1.5vw, 13px);
  letter-spacing: 0.38em;
  text-transform: uppercase;
  color: var(--green-primary);
  margin-bottom: clamp(8px, 1.5vw, 14px);
  opacity: 0;
  transform: translateY(20px);
}

.hero-title {
  font-family: var(--font-cinzel);
  font-size: clamp(36px, 7.5vw, 96px);
  line-height: 0.88;
  color: var(--text-dark);
  letter-spacing: 0.06em;
  margin-bottom: clamp(8px, 1.5vw, 16px);
  opacity: 0;
  transform: translateY(30px);
  filter: blur(8px);
}

.hero-title .ghost {
  display: block;
  color: transparent;
  -webkit-text-stroke: 1px rgba(20,30,22,0.14);
}

.hero-title .accent { color: var(--green-primary); }

.hero-sub {
  font-family: var(--font-cormorant);
  font-style: italic;
  font-size: clamp(14px, 2.4vw, 24px);
  color: var(--text-muted);
  margin-bottom: clamp(8px, 1.5vw, 14px);
  opacity: 0;
  transform: translateY(16px);
}

.hero-proof {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: clamp(24px, 4vw, 40px);
  opacity: 0;
  transform: translateY(14px);
}

.proof-count {
  font-family: var(--font-cinzel);
  font-size: clamp(18px, 3.5vw, 32px);
  color: var(--green-primary);
  font-weight: 700;
}

.proof-text {
  font-family: var(--font-barlow-c);
  font-size: clamp(9px, 1.5vw, 13px);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
  line-height: 1.3;
}

.proof-divider {
  width: 1px;
  height: 28px;
  background: var(--green-border);
}

.hero-buttons {
  display: flex;
  gap: clamp(10px, 2vw, 18px);
  align-items: center;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(14px);
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-barlow-c);
  font-size: clamp(10px, 1.8vw, 14px);
  letter-spacing: 0.25em;
  text-transform: uppercase;
  font-weight: 700;
  color: #ffffff;
  background: var(--green-primary);
  padding: clamp(14px, 2.2vw, 18px) clamp(24px, 4vw, 40px);
  text-decoration: none;
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: all 0.3s var(--ease-premium);
  clip-path: polygon(0 0, calc(100% - 8px) 0, 100% 8px, 100% 100%, 8px 100%, 0 calc(100% - 8px));
}

.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.2) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.3s;
}

.btn-primary:hover {
  background: var(--green-light);
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(30,196,212,0.3);
}

.btn-primary:hover::before { opacity: 1; }
.btn-primary:active { transform: translateY(0); }

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-barlow-c);
  font-size: clamp(10px, 1.8vw, 14px);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--text-body);
  background: rgba(0,0,0,0.04);
  border: 1px solid rgba(0,0,0,0.14);
  padding: clamp(13px, 2.1vw, 17px) clamp(22px, 3.5vw, 36px);
  text-decoration: none;
  cursor: pointer;
  backdrop-filter: blur(10px);
  transition: all 0.3s var(--ease-premium);
  clip-path: polygon(0 0, calc(100% - 8px) 0, 100% 8px, 100% 100%, 8px 100%, 0 calc(100% - 8px));
}

.btn-secondary:hover {
  background: rgba(30,196,212,0.08);
  border-color: var(--green-border);
  color: var(--green-primary);
  transform: translateY(-2px);
}

.btn-icon {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: currentColor;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.btn-icon svg {
  width: 8px;
  height: 8px;
  fill: #ffffff;
  margin-left: 2px;
}

.hero-line {
  display: flex;
  flex-direction: row;
  gap: clamp(24px, 4vw, 48px);
  margin-top: clamp(32px, 5vw, 56px);
  padding-top: clamp(20px, 3vw, 32px);
  border-top: 1px solid rgba(0,0,0,0.08);
}

.hero-stat {
  opacity: 0;
}

.hero-stat-num {
  font-family: var(--font-cinzel);
  font-size: clamp(24px, 4.5vw, 52px);
  color: var(--green-primary);
  line-height: 1;
  font-weight: 700;
}

.hero-stat-label {
  font-family: var(--font-barlow-c);
  font-size: clamp(7px, 1.2vw, 10px);
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--text-faint);
}

.scroll-indicator {
  position: absolute;
  bottom: clamp(20px, 4vw, 36px);
  left: clamp(16px, 3vw, 36px);
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  opacity: 0;
}

.scroll-indicator span {
  font-family: var(--font-barlow-c);
  font-size: 9px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--text-faint);
  writing-mode: vertical-lr;
}

.scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, var(--green-primary), transparent);
  animation: scroll-pulse 2s ease-in-out infinite;
}

@keyframes scroll-pulse {
  0%, 100% { opacity: 0.4; transform: scaleY(1); }
  50%       { opacity: 1;   transform: scaleY(0.7) translateY(8px); }
}

/* ═══════════════════════════════════════════════
   CARROSSEL 3D CINEMATOGRÁFICO — PREMIUM
═══════════════════════════════════════════════ */
#carousel-section {
  position: relative;
  z-index: 1;
  padding: clamp(60px, 10vw, 120px) 0 clamp(40px, 7vw, 90px);
  background: var(--bg-white);
  overflow: hidden;
  border-top: 1px solid rgba(0,0,0,0.06);
}

#carousel-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 55%,
      rgba(30,196,212,0.07) 0%,
      transparent 65%
    ),
    radial-gradient(ellipse 40% 30% at 20% 80%,
      rgba(30,196,212,0.04) 0%,
      transparent 60%
    ),
    radial-gradient(ellipse 40% 30% at 80% 80%,
      rgba(30,196,212,0.04) 0%,
      transparent 60%
    );
  pointer-events: none;
  z-index: 0;
}

#carousel-section::after {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(30,196,212,0.4), transparent);
  z-index: 0;
}

.carousel-section-header {
  padding: 0 clamp(24px, 5vw, 60px);
  margin-bottom: clamp(32px, 5vw, 60px);
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  position: relative;
  z-index: 2;
}

.c3d-stage {
  position: relative;
  width: 100%;
  height: clamp(420px, 68vw, 760px);
  overflow: hidden;
  z-index: 1;
  cursor: grab;
}

.c3d-stage:active { cursor: grabbing; }

.c3d-scene {
  position: absolute;
  inset: 0;
  perspective: clamp(900px, 120vw, 1800px);
  perspective-origin: 50% 42%;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translateZ(0);
}

.c3d-card {
  position: absolute;
  width: clamp(150px, 22vw, 260px);
  aspect-ratio: 1023 / 1537;
  cursor: pointer;
  transform-style: preserve-3d;
  will-change: transform, opacity, filter;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  transition:
    filter     0.50s cubic-bezier(0.16,1,0.3,1),
    opacity    0.50s cubic-bezier(0.16,1,0.3,1);
}

.c3d-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 5px;
  overflow: hidden;
  transform-style: preserve-3d;
  box-shadow:
    0 1px  4px  rgba(0,0,0,0.07),
    0 4px  16px rgba(0,0,0,0.09),
    0 16px 40px rgba(0,0,0,0.10),
    0 32px 72px rgba(0,0,0,0.07);
  transition:
    box-shadow 0.55s cubic-bezier(0.16,1,0.3,1),
    transform  0.55s cubic-bezier(0.16,1,0.3,1);
}

.c3d-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  pointer-events: none;
  user-select: none;
  border-radius: inherit;
  filter: saturate(1.04) contrast(1.01);
}

/* Placeholder quando imagem não carrega */
.c3d-card-inner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    var(--bg-card) 0%,
    var(--bg-offwhite) 50%,
    var(--bg-card) 100%
  );
  z-index: 0;
  border-radius: inherit;
}

.c3d-card img[src=""] ,
.c3d-card img:not([src]) {
  visibility: hidden;
}

.c3d-placeholder {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: linear-gradient(160deg, var(--bg-card) 0%, var(--bg-offwhite) 100%);
  border-radius: inherit;
}

.c3d-ph-icon {
  font-size: clamp(18px, 3vw, 28px);
  color: var(--green-primary);
  opacity: 0.4;
}

.c3d-ph-text {
  font-family: var(--font-barlow-c);
  font-size: clamp(9px, 1.4vw, 12px);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-faint);
  text-align: center;
  line-height: 1.5;
}

.c3d-card-shine {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(
    135deg,
    rgba(255,255,255,0.22) 0%,
    rgba(255,255,255,0.06) 35%,
    transparent 60%
  );
  opacity: 0;
  transition: opacity 0.45s ease;
  pointer-events: none;
  z-index: 2;
  mix-blend-mode: soft-light;
}

.c3d-card-glow {
  position: absolute;
  inset: -24px;
  border-radius: 10px;
  background: radial-gradient(
    ellipse 75% 65% at 50% 50%,
    rgba(30,196,212,0.28) 0%,
    rgba(30,196,212,0.08) 50%,
    transparent 70%
  );
  opacity: 0;
  transition: opacity 0.60s cubic-bezier(0.16,1,0.3,1);
  pointer-events: none;
  z-index: 0;
  filter: blur(16px);
}

.c3d-card-label {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: clamp(12px,2vw,22px) clamp(10px,1.6vw,18px);
  background: linear-gradient(
    to top,
    rgba(6,40,44,0.92) 0%,
    rgba(6,40,44,0.40) 55%,
    transparent 100%
  );
  display: flex;
  flex-direction: column;
  gap: 4px;
  opacity: 0;
  transform: translateY(8px);
  transition:
    opacity   0.40s cubic-bezier(0.16,1,0.3,1),
    transform 0.40s cubic-bezier(0.16,1,0.3,1);
  z-index: 3;
  border-radius: 0 0 5px 5px;
}

.c3d-label-tag {
  font-family: var(--font-barlow-c);
  font-size: clamp(7px, 0.9vw, 10px);
  letter-spacing: 0.30em;
  text-transform: uppercase;
  color: var(--green-light);
  display: block;
}

.c3d-label-name {
  font-family: var(--font-cinzel);
  font-size: clamp(10px, 1.4vw, 15px);
  color: #ffffff;
  line-height: 1.2;
  letter-spacing: 0.06em;
}

.c3d-card:hover .c3d-card-inner {
  box-shadow:
    0 2px  8px  rgba(0,0,0,0.10),
    0 12px 36px rgba(0,0,0,0.16),
    0 28px 64px rgba(0,0,0,0.14),
    0 40px 100px rgba(30,196,212,0.16);
}
.c3d-card:hover .c3d-card-shine { opacity: 1; }
.c3d-card:hover .c3d-card-glow  { opacity: 1; }
.c3d-card:hover .c3d-card-label {
  opacity: 1;
  transform: translateY(0);
}

.c3d-floor {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 30%;
  background: linear-gradient(
    to top,
    rgba(245,243,239,0.96) 0%,
    rgba(245,243,239,0.60) 40%,
    transparent 100%
  );
  pointer-events: none;
  z-index: 3;
}

.c3d-fog {
  position: absolute;
  top: 0; bottom: 0;
  width: clamp(70px, 14vw, 200px);
  pointer-events: none;
  z-index: 5;
}

.c3d-fog-left {
  left: 0;
  background: linear-gradient(to right, var(--bg-white) 0%, rgba(255,255,255,0.85) 40%, transparent 100%);
}

.c3d-fog-right {
  right: 0;
  background: linear-gradient(to left, var(--bg-white) 0%, rgba(255,255,255,0.85) 40%, transparent 100%);
}

.swiper-counter {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px clamp(24px, 5vw, 60px) 0;
  position: relative;
  z-index: 2;
}

.counter-current {
  font-family: var(--font-cinzel);
  font-size: clamp(22px, 4vw, 40px);
  color: var(--green-primary);
  line-height: 1;
}

.counter-total {
  font-family: var(--font-barlow-c);
  font-size: clamp(9px, 1.4vw, 12px);
  letter-spacing: 0.2em;
  color: var(--text-faint);
  text-transform: uppercase;
}

.swiper-progress-bar {
  position: relative;
  margin: 0 clamp(24px, 5vw, 60px);
  height: 1px;
  background: rgba(0,0,0,0.08);
  overflow: hidden;
  z-index: 2;
}

.swiper-progress-fill {
  height: 100%;
  background: var(--green-primary);
  transition: width 0.6s cubic-bezier(0.16,1,0.3,1);
  width: 0%;
}

.carousel-nav-btns {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}

.cr-nav-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(0,0,0,0.04);
  border: 1px solid var(--green-border);
  color: var(--green-primary);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s var(--ease-premium);
  flex-shrink: 0;
}

.cr-nav-btn:hover {
  background: var(--green-primary);
  color: #ffffff;
  transform: scale(1.08);
  box-shadow: 0 6px 20px rgba(30,196,212,0.25);
}

.cr-nav-btn svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* ═══════════════════════════════════════════════
   CARROSSEL 3D HORIZONTAL — PROPORÇÃO 5:4
═══════════════════════════════════════════════ */
#carousel-section-h {
  position: relative;
  z-index: 1;
  padding: clamp(60px, 10vw, 120px) 0 clamp(40px, 7vw, 90px);
  background: var(--bg-offwhite);
  overflow: hidden;
  border-top: 1px solid rgba(0,0,0,0.06);
}

#carousel-section-h::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 55%,
      rgba(30,196,212,0.06) 0%,
      transparent 65%
    ),
    radial-gradient(ellipse 40% 30% at 20% 80%,
      rgba(30,196,212,0.03) 0%,
      transparent 60%
    ),
    radial-gradient(ellipse 40% 30% at 80% 80%,
      rgba(30,196,212,0.03) 0%,
      transparent 60%
    );
  pointer-events: none;
  z-index: 0;
}

#carousel-section-h::after {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(30,196,212,0.35), transparent);
  z-index: 0;
}

/* Stage horizontal — altura menor pois os cards são landscape */
.c3d-stage-h {
  height: clamp(280px, 42vw, 540px);
}

/* Card horizontal 5:4 */
.c3d-card-h {
  width: clamp(200px, 28vw, 360px);
  aspect-ratio: 5 / 4;
}

/* ═══════════════════════════════════════════════
   SEÇÃO MENTORIA
═══════════════════════════════════════════════ */
#mentoria-section {
  position: relative;
  z-index: 1;
  padding: clamp(80px, 12vw, 140px) clamp(24px, 6vw, 80px);
  background: var(--bg-offwhite);
  overflow: hidden;
  text-align: center;
  border-top: 1px solid rgba(0,0,0,0.06);
}

#mentoria-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 50% 40%,
      rgba(30,196,212,0.07) 0%,
      transparent 70%
    );
  pointer-events: none;
  z-index: 0;
}

.mentoria-wrapper {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.mentoria-logo {
  margin-bottom: clamp(20px, 3vw, 32px);
}

.mentoria-logo-img {
  height: clamp(70px, 12vw, 120px);
  width: auto;
  opacity: 0.9;
}

.mentoria-eyebrow {
  font-family: var(--font-barlow-c);
  font-size: clamp(9px, 1.4vw, 12px);
  letter-spacing: 0.40em;
  text-transform: uppercase;
  color: var(--green-primary);
  margin-bottom: clamp(12px, 2vw, 20px);
  display: block;
}

.mentoria-title {
  font-family: var(--font-cinzel);
  font-size: clamp(26px, 5.5vw, 62px);
  line-height: 1.0;
  color: var(--text-dark);
  letter-spacing: 0.04em;
  margin-bottom: clamp(24px, 4vw, 40px);
}

.mentoria-title .accent { color: var(--green-primary); }

.mentoria-desc {
  font-family: var(--font-cormorant);
  font-size: clamp(16px, 2.4vw, 22px);
  font-style: italic;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: clamp(36px, 6vw, 56px);
  max-width: 660px;
}

.mentoria-pilares {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: clamp(12px, 2vw, 18px);
  margin-bottom: clamp(48px, 8vw, 72px);
  text-align: left;
  width: 100%;
  max-width: 580px;
}

.mentoria-pilares li {
  display: flex;
  align-items: flex-start;
  gap: clamp(12px, 2vw, 18px);
  font-family: var(--font-barlow);
  font-size: clamp(12px, 1.6vw, 15px);
  color: var(--text-body);
  line-height: 1.6;
  padding-bottom: clamp(12px, 2vw, 18px);
  border-bottom: 1px solid rgba(0,0,0,0.07);
}

.mentoria-pilares li:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.mentoria-pilares li strong {
  color: var(--text-dark);
  font-weight: 600;
}

.pilar-icon {
  color: var(--green-primary);
  font-size: 7px;
  margin-top: 6px;
  flex-shrink: 0;
}

/* ── Botão principal da mentoria ── */
.btn-mentoria {
  display: inline-flex;
  align-items: center;
  gap: clamp(12px, 2vw, 18px);
  font-family: var(--font-barlow-c);
  font-size: clamp(11px, 1.8vw, 15px);
  letter-spacing: 0.26em;
  text-transform: uppercase;
  font-weight: 700;
  color: #ffffff;
  background: var(--green-primary);
  padding: clamp(18px, 2.8vw, 24px) clamp(32px, 5vw, 56px);
  text-decoration: none;
  position: relative;
  overflow: hidden;
  transition: all 0.35s var(--ease-premium);
  clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 10px, 100% 100%, 10px 100%, 0 calc(100% - 10px));
  margin-bottom: clamp(16px, 2.5vw, 24px);
}

.btn-mentoria::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.18) 0%, transparent 55%);
  opacity: 0;
  transition: opacity 0.3s;
}

.btn-mentoria:hover {
  background: var(--green-light);
  transform: translateY(-3px);
  box-shadow:
    0 16px 48px rgba(30,196,212,0.35),
    0 4px 12px rgba(30,196,212,0.20);
}

.btn-mentoria:hover::before { opacity: 1; }
.btn-mentoria:active { transform: translateY(0); }

.btn-mentoria-label {
  position: relative;
  z-index: 1;
}

.btn-mentoria-icon {
  position: relative;
  z-index: 1;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(255,255,255,0.22);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.3s;
}

.btn-mentoria:hover .btn-mentoria-icon {
  background: rgba(255,255,255,0.35);
}

.btn-mentoria-icon svg {
  width: 9px;
  height: 9px;
  fill: #ffffff;
  margin-left: 2px;
}

.mentoria-nota {
  font-family: var(--font-barlow-c);
  font-size: clamp(9px, 1.2vw, 11px);
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--text-faint);
}

/* ═══════════════════════════════════════════════
   CTA BAND FINAL
═══════════════════════════════════════════════ */
#cta-final {
  position: relative;
  z-index: 1;
  background: var(--green-deep);
  padding: clamp(32px, 5.5vw, 64px) clamp(24px, 6vw, 80px);
  overflow: hidden;
}

#cta-final::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 50% 80% at 80% 50%, rgba(255,255,255,0.04), transparent 60%);
  pointer-events: none;
}

.cta-final-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(24px, 4vw, 48px);
  position: relative;
  z-index: 1;
}

.cta-final-text .cta-label {
  font-family: var(--font-barlow-c);
  font-size: clamp(9px, 1.4vw, 12px);
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin-bottom: 6px;
  display: block;
}

.cta-final-title {
  font-family: var(--font-cinzel);
  font-size: clamp(22px, 4.5vw, 50px);
  color: #ffffff;
  line-height: 0.92;
}

.btn-cta-dark {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-barlow-c);
  font-size: clamp(10px, 1.6vw, 14px);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--green-deep);
  background: #ffffff;
  padding: clamp(14px, 2.2vw, 18px) clamp(24px, 4vw, 40px);
  text-decoration: none;
  white-space: nowrap;
  transition: all 0.3s var(--ease-premium);
  flex-shrink: 0;
  clip-path: polygon(0 0, calc(100% - 8px) 0, 100% 8px, 100% 100%, 8px 100%, 0 calc(100% - 8px));
}

.btn-cta-dark:hover {
  background: var(--green-light);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.3);
}

/* ═══════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════ */
footer {
  background: var(--bg-white);
  border-top: 1px solid rgba(0,0,0,0.07);
  padding: clamp(24px, 4vw, 48px) clamp(24px, 6vw, 80px);
  position: relative;
  z-index: 1;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-logo img {
  height: clamp(60px, 10vw, 100px);
  width: auto;
  opacity: 0.9;
  filter: none;
}

.footer-copy {
  font-family: var(--font-barlow);
  font-size: clamp(10px, 1.3vw, 12px);
  color: var(--text-faint);
  letter-spacing: 0.05em;
}

.footer-links {
  display: flex;
  gap: 24px;
}

.footer-link {
  font-family: var(--font-barlow-c);
  font-size: clamp(9px, 1.2vw, 11px);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-faint);
  text-decoration: none;
  transition: color 0.3s;
}

.footer-link:hover { color: var(--green-primary); }

.footer-dev {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding-top: clamp(8px, 1.5vw, 14px);
  border-top: none;
  margin-top: clamp(8px, 1.5vw, 14px);
  opacity: 0.38;
  transition: opacity 0.4s ease;
}

.footer-dev:hover {
  opacity: 0.62;
}

.footer-dev-text {
  font-family: var(--font-barlow);
  font-size: 9px;
  color: var(--text-faint);
  letter-spacing: 0.08em;
}

.footer-dev-logo {
  height: clamp(13px, 2vw, 18px);
  width: auto;
  opacity: 1;
  filter: grayscale(1);
  transition: opacity 0.3s, filter 0.3s;
}

.footer-dev-link:hover .footer-dev-logo {
  opacity: 1;
  filter: grayscale(0);
}

/* ═══════════════════════════════════════════════
   TÍTULOS DE SEÇÃO (usados no carrossel)
═══════════════════════════════════════════════ */
.section-eyebrow {
  font-family: var(--font-barlow-c);
  font-size: clamp(9px, 1.4vw, 12px);
  letter-spacing: 0.38em;
  text-transform: uppercase;
  color: var(--green-primary);
  margin-bottom: clamp(8px, 1.5vw, 14px);
  display: block;
}

.section-title {
  font-family: var(--font-cinzel);
  font-size: clamp(28px, 5.5vw, 60px);
  line-height: 0.88;
  color: var(--text-dark);
  letter-spacing: 0.06em;
}

.section-title .ghost {
  display: block;
  color: transparent;
  -webkit-text-stroke: 1px rgba(20,30,22,0.14);
}

.section-title .accent { color: var(--green-primary); }

/* ═══════════════════════════════════════════════
   SCROLL REVEAL
═══════════════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.8s var(--ease-premium),
              transform 0.8s var(--ease-premium);
}

.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

.reveal-blur {
  opacity: 0;
  transform: translateY(24px);
  filter: blur(8px);
  transition: opacity 0.9s var(--ease-premium),
              transform 0.9s var(--ease-premium),
              filter 0.9s var(--ease-premium);
}

.reveal-blur.revealed {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0px);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-32px);
  transition: opacity 0.8s var(--ease-premium),
              transform 0.8s var(--ease-premium);
}

.reveal-left.revealed {
  opacity: 1;
  transform: translateX(0);
}

.delay-1 { transition-delay: 0.10s; }
.delay-2 { transition-delay: 0.20s; }
.delay-3 { transition-delay: 0.32s; }
.delay-4 { transition-delay: 0.45s; }
.delay-5 { transition-delay: 0.58s; }

/* ═══════════════════════════════════════════════
   RESPONSIVIDADE MOBILE
═══════════════════════════════════════════════ */
@media (max-width: 768px) {
  #hero {
    grid-template-columns: 1fr;
    grid-template-rows: auto 1fr;
  }

  .hero-bg {
    min-height: 55svh;
    max-height: 65svh;
    order: -1;
  }

  .hero-bg-badge { display: none; }

  .hero-content {
    padding: clamp(28px, 6vw, 48px) clamp(20px, 5vw, 32px);
    padding-bottom: clamp(40px, 8vw, 60px);
  }

  .hero-line {
    flex-direction: row;
  }

  .cta-final-inner {
    flex-direction: column;
    text-align: center;
  }

  .footer-inner {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }

  .footer-links { gap: 16px; }

  .carousel-section-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .mentoria-pilares {
    text-align: left;
  }

  /* Carrossel horizontal em mobile: reduz altura do stage */
  .c3d-stage-h {
    height: clamp(200px, 52vw, 320px);
  }

  .c3d-card-h {
    width: clamp(160px, 56vw, 260px);
  }
}

@media (max-width: 480px) {
  .hero-buttons {
    flex-direction: column;
    align-items: flex-start;
  }

  .btn-primary,
  .btn-secondary {
    width: 100%;
    justify-content: center;
  }

  .btn-mentoria {
    width: 100%;
    justify-content: center;
  }
}

/* ═══════════════════════════════════════════════
   ACESSIBILIDADE — Reduzir movimento
═══════════════════════════════════════════════ */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}
/* ═══════════════════════════════════════════════
   MODAL VTURB
═══════════════════════════════════════════════ */
#vturb-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
}

.vturb-modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.82);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  cursor: pointer;
}

.vturb-modal-box {
  position: relative;
  z-index: 1;
  width: min(92vw, 440px);
  background: #0f0f0f;
  border: 1px solid rgba(30, 196, 212, 0.18);
  border-radius: 12px;
  padding: 20px 16px 24px;
  box-shadow: 0 24px 80px rgba(0,0,0,0.7), 0 0 0 1px rgba(30,196,212,0.08);
  animation: vturb-modal-in 0.35s cubic-bezier(0.16,1,0.3,1) both;
}

@keyframes vturb-modal-in {
  from { opacity: 0; transform: scale(0.92) translateY(20px); }
  to   { opacity: 1; transform: none; }
}

.vturb-modal-close {
  position: absolute;
  top: 10px;
  right: 12px;
  background: none;
  border: none;
  color: rgba(255,255,255,0.55);
  cursor: pointer;
  padding: 4px;
  line-height: 0;
  transition: color 0.2s;
}
.vturb-modal-close:hover { color: #fff; }

.vturb-player-wrap {
  margin-top: 8px;
}