:root {
  --ink: #0d1736;
  --ink-soft: #273252;
  --blue: #3156ff;
  --blue-2: #1d3fc7;
  --cyan: #5dd8db;
  --coral: #ff7b5c;
  --sand: #f5f1e9;
  --paper: #fffdf8;
  --white: #ffffff;
  --line: rgba(13, 23, 54, .12);
  --shadow: 0 22px 70px rgba(13, 23, 54, .14);
  --radius: 28px;
  --radius-sm: 18px;
  --container: min(1180px, calc(100% - 40px));
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Aptos", "Segoe UI", Inter, Arial, sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }
::selection { background: var(--cyan); color: var(--ink); }

.container { width: var(--container); margin-inline: auto; }
.section { padding: 110px 0; position: relative; }
.section--tight { padding: 76px 0; }
.section--dark { background: var(--ink); color: var(--white); }
.section--blue { background: var(--blue); color: var(--white); }
.section--sand { background: var(--sand); }

.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  text-transform: uppercase; letter-spacing: .14em;
  font-size: .78rem; font-weight: 800;
  color: var(--blue);
}
.eyebrow::before { content: ""; width: 28px; height: 2px; background: currentColor; }
.section--dark .eyebrow, .section--blue .eyebrow { color: var(--cyan); }

h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { line-height: 1.02; letter-spacing: -.04em; }
h1 { font-size: clamp(3.2rem, 8vw, 7.4rem); font-weight: 820; }
h2 { font-size: clamp(2.5rem, 5vw, 5rem); font-weight: 790; }
h3 { font-size: clamp(1.35rem, 2.2vw, 2.2rem); }
.lead { font-size: clamp(1.08rem, 2vw, 1.35rem); color: var(--ink-soft); max-width: 760px; }
.section--dark .lead, .section--blue .lead { color: rgba(255,255,255,.78); }
.serif { font-family: Georgia, "Times New Roman", serif; font-style: italic; font-weight: 500; }
.text-gradient { background: linear-gradient(90deg, var(--cyan), #c8ffff); -webkit-background-clip: text; background-clip: text; color: transparent; }

.btn {
  min-height: 52px; padding: 0 22px; border-radius: 999px;
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-weight: 800; border: 1px solid transparent;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease, color .25s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn--primary { background: var(--blue); color: var(--white); box-shadow: 0 14px 34px rgba(49,86,255,.28); }
.btn--primary:hover { background: var(--blue-2); }
.btn--light { background: var(--white); color: var(--ink); }
.btn--ghost { border-color: rgba(13,23,54,.18); background: rgba(255,255,255,.52); backdrop-filter: blur(12px); }
.btn--ghost-light { border-color: rgba(255,255,255,.28); color: var(--white); background: rgba(255,255,255,.08); }
.actions { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }

.site-header {
  position: fixed; inset: 0 0 auto; z-index: 1000;
  transition: background .3s ease, box-shadow .3s ease, transform .3s ease;
}
.site-header.is-scrolled { background: rgba(255,253,248,.9); backdrop-filter: blur(16px); box-shadow: 0 8px 30px rgba(13,23,54,.08); }
.nav { width: var(--container); margin: auto; min-height: 82px; display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.brand { display: inline-flex; align-items: center; gap: 11px; font-weight: 900; font-size: 1.28rem; letter-spacing: -.04em; }
.brand-mark { width: 42px; height: 28px; position: relative; display: inline-block; }
.brand-mark span { position: absolute; top: 4px; width: 20px; height: 20px; border-radius: 7px 12px 12px 7px; transform: rotate(45deg); }
.brand-mark span:nth-child(1) { left: 0; background: var(--cyan); }
.brand-mark span:nth-child(2) { left: 12px; background: var(--blue); }
.brand small { display: block; font-size: .68rem; font-weight: 700; letter-spacing: .08em; color: var(--ink-soft); text-transform: uppercase; }
.nav-links { display: flex; align-items: center; gap: 28px; font-size: .96rem; font-weight: 700; }
.nav-links a { position: relative; }
.nav-links a::after { content: ""; position: absolute; left: 0; bottom: -7px; width: 100%; height: 2px; background: var(--blue); transform: scaleX(0); transform-origin: right; transition: transform .25s ease; }
.nav-links a:hover::after, .nav-links a[aria-current="page"]::after { transform: scaleX(1); transform-origin: left; }
.menu-toggle { display: none; border: 0; background: none; width: 44px; height: 44px; border-radius: 12px; }
.menu-toggle span, .menu-toggle span::before, .menu-toggle span::after { display: block; width: 24px; height: 2px; background: var(--ink); margin: auto; position: relative; transition: .25s; }
.menu-toggle span::before, .menu-toggle span::after { content: ""; position: absolute; left: 0; }
.menu-toggle span::before { top: -7px; }
.menu-toggle span::after { top: 7px; }

.hero {
  min-height: 100svh; display: grid; align-items: center;
  padding: 128px 0 56px; position: relative; overflow: hidden;
  background:
    radial-gradient(circle at 10% 25%, rgba(93,216,219,.28), transparent 28%),
    radial-gradient(circle at 85% 14%, rgba(49,86,255,.16), transparent 33%),
    linear-gradient(135deg, #fffdf8 0%, #f5f1e9 100%);
}
.hero-grid { display: grid; grid-template-columns: 1.18fr .82fr; gap: 56px; align-items: center; }
.hero-copy h1 { max-width: 900px; margin: 18px 0 26px; }
.hero-copy .lead { max-width: 650px; margin-bottom: 34px; }
.hero-note { margin-top: 28px; display: flex; align-items: center; gap: 12px; color: var(--ink-soft); font-size: .92rem; }
.hero-note .dot { width: 10px; height: 10px; border-radius: 50%; background: #31b96f; box-shadow: 0 0 0 6px rgba(49,185,111,.13); }
.hero-visual { min-height: 600px; position: relative; }
.hero-portrait {
  position: absolute; right: -5%; bottom: -56px; width: min(480px, 92%); z-index: 3;
  filter: drop-shadow(0 28px 30px rgba(13,23,54,.18));
}
.hero-orb { position: absolute; right: 4%; top: 14%; width: 430px; height: 430px; border-radius: 50%; background: linear-gradient(145deg, var(--blue), #6f88ff); box-shadow: inset -40px -40px 90px rgba(13,23,54,.22); }
.hero-orb::before { content: ""; position: absolute; inset: 36px; border: 1px solid rgba(255,255,255,.32); border-radius: 50%; }
.float-card {
  position: absolute; z-index: 5; border-radius: 20px; padding: 16px 18px;
  background: rgba(255,255,255,.8); backdrop-filter: blur(18px); box-shadow: var(--shadow);
  border: 1px solid rgba(255,255,255,.8); font-weight: 800;
}
.float-card small { display: block; color: var(--ink-soft); font-weight: 600; margin-top: 2px; }
.float-card--a { top: 16%; left: 0; }
.float-card--b { right: -4%; bottom: 22%; }
.float-card--c { left: 4%; bottom: 8%; }
.float-icon { width: 34px; height: 34px; border-radius: 11px; display: inline-grid; place-items: center; margin-bottom: 8px; background: var(--cyan); }

.ticker { overflow: hidden; border-block: 1px solid var(--line); background: var(--white); }
.ticker-track { display: flex; width: max-content; animation: ticker 28s linear infinite; padding: 17px 0; }
.ticker span { font-weight: 900; letter-spacing: .02em; padding: 0 28px; white-space: nowrap; }
.ticker b { color: var(--coral); margin-left: 28px; }
@keyframes ticker { to { transform: translateX(-50%); } }

.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; margin-top: 48px; }
.stat { padding: 28px; border: 1px solid var(--line); border-radius: 22px; background: rgba(255,255,255,.56); }
.stat strong { display: block; font-size: clamp(2.4rem, 5vw, 4rem); line-height: 1; letter-spacing: -.06em; }
.stat span { color: var(--ink-soft); }

.split { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: start; }
.manifesto-card { position: sticky; top: 120px; padding: 34px; border-radius: var(--radius); background: var(--blue); color: var(--white); overflow: hidden; }
.manifesto-card::after { content: ""; position: absolute; width: 220px; height: 220px; border-radius: 50%; background: var(--cyan); right: -80px; bottom: -100px; opacity: .55; }
.manifesto-card blockquote { margin: 0; font-family: Georgia, serif; font-size: clamp(1.7rem, 3vw, 2.6rem); line-height: 1.18; position: relative; z-index: 2; }
.prose p { font-size: 1.16rem; color: var(--ink-soft); }
.prose p:first-of-type { font-size: 1.45rem; color: var(--ink); }

.card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 48px; }
.feature-card { padding: 30px; min-height: 260px; border: 1px solid var(--line); border-radius: var(--radius-sm); background: var(--white); position: relative; overflow: hidden; transition: transform .3s ease, box-shadow .3s ease; }
.feature-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.feature-card .number { color: var(--blue); font-weight: 900; font-size: .88rem; letter-spacing: .12em; }
.feature-card h3 { margin: 48px 0 14px; }
.feature-card p { color: var(--ink-soft); margin-bottom: 0; }
.feature-card::after { content: ""; position: absolute; width: 70px; height: 70px; border-radius: 50%; right: -28px; top: -24px; background: var(--cyan); opacity: .35; }

.levels { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 50px; }
.level-card { min-height: 520px; padding: 34px; border-radius: var(--radius); color: white; position: relative; overflow: hidden; display: flex; flex-direction: column; justify-content: flex-end; }
.level-card:nth-child(1) { background: linear-gradient(160deg, #ff8a6b, #ef5d42); }
.level-card:nth-child(2) { background: linear-gradient(160deg, #4d6bff, #243fc4); }
.level-card:nth-child(3) { background: linear-gradient(160deg, #34c6c9, #168f98); }
.level-card::before { content: ""; position: absolute; width: 260px; height: 260px; border-radius: 50%; border: 1px solid rgba(255,255,255,.35); top: -90px; right: -90px; }
.level-card .level-index { position: absolute; top: 28px; left: 32px; font-weight: 900; opacity: .78; }
.level-card h3 { font-size: clamp(2rem, 3vw, 3.2rem); margin-bottom: 14px; }
.level-card p { color: rgba(255,255,255,.82); }

.system-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; margin-top: 48px; }
.system-card { border-radius: var(--radius); padding: 40px; background: var(--white); border: 1px solid var(--line); }
.system-chip { display: inline-flex; padding: 8px 12px; border-radius: 999px; background: rgba(49,86,255,.1); color: var(--blue); font-weight: 900; font-size: .8rem; }
.system-card h3 { margin: 24px 0 16px; }
.system-card p { color: var(--ink-soft); }

.units-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 50px; }
.unit-card { min-height: 580px; border-radius: var(--radius); position: relative; overflow: hidden; color: var(--white); box-shadow: var(--shadow); }
.unit-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.unit-card:hover img { transform: scale(1.04); }
.unit-card::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(7,14,36,.92) 0%, rgba(7,14,36,.12) 70%); }
.unit-content { position: absolute; inset: auto 32px 32px; z-index: 2; }
.unit-content h3 { font-size: clamp(2rem, 4vw, 3.4rem); margin-bottom: 8px; }
.unit-content p { color: rgba(255,255,255,.8); max-width: 520px; }
.unit-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 18px; }

.cta-panel { border-radius: 38px; padding: clamp(38px, 7vw, 84px); background: var(--ink); color: var(--white); overflow: hidden; position: relative; }
.cta-panel::before, .cta-panel::after { content: ""; position: absolute; border-radius: 50%; }
.cta-panel::before { width: 340px; height: 340px; background: var(--blue); top: -180px; right: -100px; opacity: .8; }
.cta-panel::after { width: 190px; height: 190px; background: var(--cyan); bottom: -100px; right: 22%; opacity: .6; }
.cta-panel > * { position: relative; z-index: 2; }
.cta-panel h2 { max-width: 850px; margin-bottom: 28px; }

.page-hero { padding: 170px 0 90px; background: linear-gradient(145deg, var(--sand), var(--paper)); position: relative; overflow: hidden; }
.page-hero h1 { max-width: 1000px; margin: 18px 0 24px; font-size: clamp(3.2rem, 7vw, 6.6rem); }
.page-hero::after { content: ""; position: absolute; width: 360px; height: 360px; border-radius: 50%; background: rgba(93,216,219,.28); right: -150px; top: 20px; }

.timeline { display: grid; gap: 20px; margin-top: 46px; }
.timeline-item { display: grid; grid-template-columns: 120px 1fr; gap: 28px; padding: 28px 0; border-top: 1px solid var(--line); }
.timeline-item strong { font-size: 1.65rem; color: var(--blue); }
.timeline-item h3 { margin-bottom: 10px; }
.timeline-item p { color: var(--ink-soft); margin: 0; }

.info-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; margin-top: 44px; }
.info-card { padding: 32px; border-radius: var(--radius-sm); border: 1px solid var(--line); background: var(--white); }
.info-card h3 { margin-bottom: 12px; }
.info-card p { color: var(--ink-soft); margin: 0; }

.contact-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 48px; align-items: start; }
.contact-box { padding: 34px; border-radius: var(--radius); background: var(--ink); color: white; position: sticky; top: 112px; }
.contact-box h2 { font-size: clamp(2.5rem, 4vw, 4.4rem); }
.contact-box p { color: rgba(255,255,255,.74); }
.contact-list { display: grid; gap: 14px; margin-top: 30px; }
.contact-list a { padding: 16px 18px; border: 1px solid rgba(255,255,255,.16); border-radius: 16px; display: flex; justify-content: space-between; gap: 14px; }

.form-card { padding: 38px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--white); box-shadow: 0 18px 60px rgba(13,23,54,.07); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { display: grid; gap: 7px; }
.field--full { grid-column: 1 / -1; }
.field label { font-size: .88rem; font-weight: 800; }
.field input, .field select, .field textarea { width: 100%; border: 1px solid var(--line); background: #fbfaf7; border-radius: 14px; padding: 14px 15px; outline: none; color: var(--ink); transition: border .2s ease, box-shadow .2s ease; }
.field textarea { min-height: 130px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--blue); box-shadow: 0 0 0 4px rgba(49,86,255,.1); }
.checkbox { display: flex; gap: 10px; align-items: flex-start; font-size: .88rem; color: var(--ink-soft); }
.checkbox input { margin-top: 4px; }
.form-status { margin-top: 14px; font-weight: 700; min-height: 24px; }
.hp-field { position: absolute !important; left: -9999px !important; opacity: 0 !important; }

.docs-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; padding: 0; list-style: none; margin: 34px 0 0; }
.docs-list li { background: var(--white); border: 1px solid var(--line); border-radius: 14px; padding: 15px 17px; display: flex; gap: 12px; }
.docs-list li::before { content: "✓"; width: 24px; height: 24px; border-radius: 50%; display: inline-grid; place-items: center; background: rgba(49,86,255,.1); color: var(--blue); font-weight: 900; flex: 0 0 auto; }

.privacy-content { max-width: 820px; }
.privacy-content h2 { font-size: 2rem; margin-top: 50px; }
.privacy-content h3 { font-size: 1.3rem; margin-top: 32px; }
.privacy-content p, .privacy-content li { color: var(--ink-soft); }

.cookie-banner { position: fixed; left: 20px; right: 20px; bottom: 18px; z-index: 1200; display: none; }
.cookie-banner.is-visible { display: block; }
.cookie-inner { max-width: 920px; margin: auto; background: rgba(13,23,54,.96); color: white; border-radius: 20px; padding: 18px 20px; display: flex; justify-content: space-between; align-items: center; gap: 18px; box-shadow: var(--shadow); backdrop-filter: blur(14px); }
.cookie-inner p { margin: 0; color: rgba(255,255,255,.76); font-size: .9rem; }
.cookie-actions { display: flex; gap: 8px; flex: 0 0 auto; }

.whatsapp-float { position: fixed; right: 18px; bottom: 18px; z-index: 950; width: 58px; height: 58px; border-radius: 50%; display: grid; place-items: center; background: #25d366; color: white; box-shadow: 0 16px 36px rgba(0,0,0,.2); font-weight: 900; font-size: .82rem; }

.reveal { opacity: 0; transform: translateY(28px); transition: opacity .8s ease, transform .8s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

.site-footer { background: #08102a; color: var(--white); padding: 72px 0 24px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr .8fr 1fr; gap: 56px; }
.footer-intro p { color: rgba(255,255,255,.68); max-width: 520px; }
.footer-title { font-size: .82rem; text-transform: uppercase; letter-spacing: .13em; color: var(--cyan); font-weight: 900; margin-bottom: 14px; }
.footer-links { display: grid; gap: 9px; color: rgba(255,255,255,.72); }
.footer-links a:hover { color: white; }
.footer-bottom { margin-top: 54px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,.12); display: flex; justify-content: space-between; gap: 20px; color: rgba(255,255,255,.48); font-size: .84rem; }

@media (max-width: 1020px) {
  .nav-links { position: fixed; inset: 82px 18px auto; background: rgba(255,253,248,.98); border: 1px solid var(--line); border-radius: 22px; padding: 20px; display: none; flex-direction: column; align-items: stretch; gap: 8px; box-shadow: var(--shadow); }
  .nav-links.is-open { display: flex; }
  .nav-links a { padding: 12px 10px; }
  .nav > .btn { display: none; }
  .menu-toggle { display: block; }
  .hero-grid, .split, .contact-grid { grid-template-columns: 1fr; }
  .hero-visual { min-height: 520px; max-width: 650px; width: 100%; margin-inline: auto; }
  .manifesto-card, .contact-box { position: relative; top: auto; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .card-grid, .levels { grid-template-columns: 1fr; }
  .level-card { min-height: 380px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-intro { grid-column: 1 / -1; }
}

@media (max-width: 720px) {
  :root { --container: min(100% - 28px, 1180px); }
  .section { padding: 78px 0; }
  .nav { min-height: 72px; }
  .nav-links { top: 72px; }
  .hero { padding-top: 106px; }
  .hero-grid { gap: 28px; }
  .hero-copy h1 { font-size: clamp(3rem, 16vw, 4.7rem); }
  .hero-visual { min-height: 430px; }
  .hero-orb { width: 330px; height: 330px; right: -6%; }
  .hero-portrait { width: 360px; right: -8%; }
  .float-card { font-size: .82rem; padding: 12px 14px; }
  .float-card--a { left: -2%; top: 10%; }
  .float-card--b { right: -2%; bottom: 20%; }
  .float-card--c { display: none; }
  .stats-grid, .system-grid, .units-grid, .info-grid, .form-grid, .docs-list { grid-template-columns: 1fr; }
  .field--full { grid-column: auto; }
  .unit-card { min-height: 480px; }
  .footer-grid { grid-template-columns: 1fr; gap: 34px; }
  .footer-intro { grid-column: auto; }
  .footer-bottom { flex-direction: column; }
  .cookie-inner { flex-direction: column; align-items: stretch; }
  .cookie-actions { flex-wrap: wrap; }
  .cookie-actions .btn { flex: 1; }
  .timeline-item { grid-template-columns: 1fr; gap: 6px; }
  .form-card { padding: 24px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
}


/* ================================================================
   COB V2 — Homepage de alto impacto
   Mantém compatibilidade com as páginas internas da V1.
   ================================================================ */
:root {
  --cob-purple: #3D00BF;
  --cob-blue: #4054DB;
  --cob-green: #11E5B3;
  --cob-black: #1A1A1A;
  --cob-cream: #F8F8FB;
  --cob-deep: #14004A;
}

body.home-v2 {
  background: #fff;
  color: var(--cob-black);
  font-family: Montserrat, Inter, "Segoe UI", Arial, sans-serif;
}
.home-v2 h1, .home-v2 h2, .home-v2 h3 { font-family: Montserrat, Inter, "Segoe UI", Arial, sans-serif; }
.home-v2 .container { width: min(1280px, calc(100% - 56px)); }

.brand--image { width: 118px; height: 40px; position: relative; flex: 0 0 auto; }
.brand--image .logo { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: contain; object-position: left center; }
.brand--image .logo--color { opacity: 0; }
.site-header--hero .nav { min-height: 88px; }
.site-header--hero .nav-links { gap: 24px; font-size: .88rem; color: white; }
.site-header--hero .nav-links a::after { background: var(--cob-green); }
.site-header--hero .menu-toggle span,
.site-header--hero .menu-toggle span::before,
.site-header--hero .menu-toggle span::after { background: white; }
.site-header--hero.is-scrolled { background: rgba(255,255,255,.94); }
.site-header--hero.is-scrolled .nav-links { color: var(--cob-black); }
.site-header--hero.is-scrolled .brand--image .logo--white { opacity: 0; }
.site-header--hero.is-scrolled .brand--image .logo--color { opacity: 1; }
.site-header--hero.is-scrolled .menu-toggle span,
.site-header--hero.is-scrolled .menu-toggle span::before,
.site-header--hero.is-scrolled .menu-toggle span::after { background: var(--cob-black); }
.header-cta { min-height: 46px; padding: 0 18px; }

.btn--accent {
  color: #160036;
  background: var(--cob-green);
  border-color: var(--cob-green);
  box-shadow: 0 14px 34px rgba(17,229,179,.22);
}
.btn--accent:hover { background: #3ff0c6; box-shadow: 0 18px 42px rgba(17,229,179,.28); }
.btn--glass { color: white; border-color: rgba(255,255,255,.46); background: rgba(19,0,73,.18); backdrop-filter: blur(12px); }
.btn--glass:hover { background: rgba(255,255,255,.14); }
.btn--large { min-height: 58px; padding: 0 25px; }
.btn-icon { font-size: 1.05em; }
.play-dot { width: 28px; height: 28px; border: 1px solid rgba(255,255,255,.7); border-radius: 50%; display: grid; place-items: center; font-size: .66rem; }

.hero-v2 {
  min-height: 760px;
  height: min(88svh, 920px);
  padding: 0;
  display: block;
  background: #0b0326;
  color: white;
  overflow: hidden;
  position: relative;
}
.hero-v2__media { position: absolute; inset: 0; overflow: hidden; }
.hero-v2__media img { width: 100%; height: 100%; object-fit: cover; object-position: 66% center; transform: scale(1.02); }
.hero-v2__veil {
  position: absolute; inset: 0;
  background:
    linear-gradient(90deg, rgba(7,0,31,.98) 0%, rgba(14,0,54,.93) 26%, rgba(18,0,62,.62) 49%, rgba(8,0,32,.18) 71%, rgba(8,0,32,.08) 100%),
    linear-gradient(180deg, rgba(6,0,23,.45) 0%, transparent 28%, rgba(7,0,26,.2) 100%);
}
.hero-v2__inner { height: 100%; display: flex; align-items: center; position: relative; z-index: 4; padding-top: 50px; }
.hero-v2__copy { width: min(610px, 52%); padding-top: 24px; }
.hero-kicker { display: inline-flex; align-items: center; gap: 10px; text-transform: uppercase; letter-spacing: .14em; font-weight: 700; font-size: .75rem; color: rgba(255,255,255,.74); }
.hero-kicker span { width: 26px; height: 2px; background: var(--cob-green); }
.hero-v2 h1 { font-size: clamp(4rem, 6.2vw, 7rem); line-height: .93; letter-spacing: -.065em; margin: 20px 0 24px; color: white; font-weight: 800; }
.hero-v2 h1 em, .hero-v2 h1 strong { color: var(--cob-green); font-style: normal; font-weight: 800; }
.hero-v2 h1 strong { display: inline; }
.hero-v2__copy > p { max-width: 610px; font-size: clamp(1.06rem, 1.5vw, 1.28rem); line-height: 1.58; color: rgba(255,255,255,.82); margin-bottom: 28px; }
.hero-actions { gap: 14px; }
.hero-trust { display: flex; gap: 10px; align-items: center; margin-top: 26px; font-size: .85rem; color: rgba(255,255,255,.68); }
.hero-trust__dot { width: 8px; height: 8px; border-radius: 50%; background: var(--cob-green); box-shadow: 0 0 0 6px rgba(17,229,179,.13); }

.hero-v2__shape { position: absolute; z-index: 3; pointer-events: none; }
.hero-v2__shape--a { width: 122px; height: 250px; background: rgba(61,0,191,.88); right: 3.5%; top: 18%; border-radius: 120px 0 0 120px; }
.hero-v2__shape--b { width: 170px; height: 170px; background: rgba(64,84,219,.8); border-radius: 50%; right: -36px; top: 33%; }
.hero-v2__shape--c { width: 125px; height: 210px; background: rgba(17,229,179,.86); right: 2.8%; bottom: 10%; border-radius: 120px 0 0 120px; }

.hero-proof-wrap { position: absolute; left: 50%; bottom: -48px; transform: translateX(-50%); z-index: 10; }
.hero-proof { min-height: 96px; display: grid; grid-template-columns: repeat(4, 1fr); align-items: center; background: linear-gradient(110deg, #26008B, #3D00BF 52%, #27108D); color: white; border-radius: 22px; box-shadow: 0 24px 70px rgba(39,0,136,.3); overflow: hidden; }
.hero-proof__item { min-height: 74px; padding: 14px 24px; display: grid; grid-template-columns: 46px 1fr; grid-template-rows: auto auto; column-gap: 12px; align-items: center; border-right: 1px solid rgba(255,255,255,.18); }
.hero-proof__item:last-child { border-right: 0; }
.proof-icon { grid-row: 1 / 3; color: var(--cob-green); font-size: 2rem; }
.hero-proof__item strong { font-size: 1.05rem; line-height: 1.2; }
.hero-proof__item small { color: rgba(255,255,255,.68); text-transform: uppercase; letter-spacing: .08em; font-size: .65rem; }

.section-v2 { padding: 116px 0; }
.section-v2--intro { padding-top: 150px; background: linear-gradient(180deg, #fff 0%, #fafafe 100%); }
.kicker-v2 { display: block; color: #0FBF96; text-transform: uppercase; letter-spacing: .16em; font-size: .75rem; font-weight: 800; margin-bottom: 14px; }
.kicker-v2--green { color: var(--cob-green); }
.section-heading { margin-bottom: 46px; }
.section-heading--split { display: grid; grid-template-columns: 1.2fr .8fr; gap: 80px; align-items: end; }
.section-heading h2 { margin: 0; font-size: clamp(2.8rem, 4.8vw, 5.3rem); line-height: .98; letter-spacing: -.055em; color: #18004C; }
.section-heading h2 span { color: var(--cob-purple); }
.section-heading__copy p { color: #5a5668; font-size: 1.04rem; margin-bottom: 18px; }
.text-link { color: var(--cob-purple); font-weight: 800; display: inline-flex; align-items: center; gap: 10px; }
.text-link span { transition: transform .2s ease; }
.text-link:hover span { transform: translate(3px,-3px); }
.text-link--white { color: white; }

.value-cards { display: grid; grid-template-columns: repeat(5, 1fr); gap: 14px; }
.value-card { background: #fff; border: 1px solid rgba(61,0,191,.08); border-radius: 22px; min-height: 290px; padding: 26px 22px; box-shadow: 0 14px 42px rgba(38,0,90,.055); transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease; }
.value-card:hover { transform: translateY(-7px); border-color: rgba(61,0,191,.22); box-shadow: 0 24px 60px rgba(38,0,90,.11); }
.value-card__icon { width: 54px; height: 54px; display: grid; place-items: center; color: var(--cob-purple); font-size: 2rem; margin-bottom: 34px; }
.value-card:nth-child(odd) .value-card__icon { color: #0FC49B; }
.value-card h3 { color: #1c0757; font-size: 1.18rem; line-height: 1.08; letter-spacing: -.025em; margin-bottom: 12px; }
.value-card p { color: #666170; margin: 0; font-size: .89rem; line-height: 1.6; }

.system-ribbon-section { padding-top: 24px; padding-bottom: 40px; background: #fafafe; }
.system-ribbon { background: linear-gradient(100deg, #18005A, #3D00BF 58%, #21107F); border-radius: 24px; color: white; display: grid; grid-template-columns: 1.2fr 1fr 1fr; align-items: center; overflow: hidden; box-shadow: 0 24px 60px rgba(31,0,102,.22); }
.system-ribbon > div { min-height: 155px; padding: 30px 34px; display: flex; align-items: center; gap: 18px; border-right: 1px solid rgba(255,255,255,.2); }
.system-ribbon > div:last-child { border-right: 0; }
.system-ribbon__title { display: block !important; }
.system-ribbon__title span { color: var(--cob-green); text-transform: uppercase; letter-spacing: .1em; font-size: .68rem; font-weight: 800; }
.system-ribbon__title h2 { font-size: 1.55rem; line-height: 1.08; letter-spacing: -.035em; margin: 9px 0 0; max-width: 330px; }
.system-ribbon__item strong { display: block; font-size: 1.25rem; line-height: 1.2; }
.system-ribbon__item strong em { color: var(--cob-green); font-style: normal; }
.system-ribbon__item p { margin: 7px 0 0; color: rgba(255,255,255,.67); font-size: .8rem; line-height: 1.45; }
.system-logo-mark { width: 56px; height: 56px; flex: 0 0 auto; }
.system-logo-mark--geekie { background: conic-gradient(from 30deg, #f1c62f, #e64744, #8e46db, #4054db, #11e5b3, #f1c62f); clip-path: polygon(50% 0, 94% 25%, 94% 75%, 50% 100%, 6% 75%, 6% 25%); }
.system-logo-mark--lider { display: grid; place-items: center; background: var(--cob-green); color: #19005c; font-weight: 900; font-size: 2rem; border-radius: 18px 18px 18px 2px; }

.story-section { background: #fff; overflow: hidden; }
.story-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 92px; align-items: center; }
.story-visual { min-height: 640px; position: relative; }
.story-photo--main { position: absolute; width: 72%; height: 88%; right: 6%; bottom: 0; border-radius: 220px 220px 36px 36px; overflow: hidden; background: linear-gradient(180deg,#e6e1ff,#c8fff2); }
.story-photo--main img { width: 100%; height: 100%; object-fit: cover; object-position: center top; }
.story-badge { position: absolute; left: 0; top: 30%; width: 210px; aspect-ratio: 1; border-radius: 50%; background: var(--cob-green); color: #19005a; display: grid; place-content: center; padding: 30px; box-shadow: 0 24px 60px rgba(17,229,179,.28); z-index: 4; }
.story-badge strong { font-size: 2.5rem; line-height: .9; letter-spacing: -.06em; }
.story-badge span { font-weight: 800; margin-top: 8px; }
.story-orbit { position: absolute; border-radius: 50%; opacity: .8; }
.story-orbit--a { width: 160px; height: 160px; border: 24px solid var(--cob-purple); left: 6%; bottom: 0; }
.story-orbit--b { width: 130px; height: 260px; border-radius: 140px 0 0 140px; background: var(--cob-blue); right: -3%; top: 7%; }
.story-copy h2 { color: #19004d; font-size: clamp(3rem, 5vw, 5.4rem); line-height: .98; margin: 0 0 24px; }
.story-copy h2 span { color: var(--cob-purple); }
.lead-v2 { font-size: 1.25rem; color: #393249; }
.story-copy > p:not(.lead-v2) { color: #6c6674; font-size: 1rem; max-width: 660px; }
.signature-list { margin-top: 34px; display: grid; gap: 0; border-top: 1px solid #e7e1f0; }
.signature-list > div { display: grid; grid-template-columns: 46px 1fr; grid-template-rows: auto auto; column-gap: 12px; padding: 18px 0; border-bottom: 1px solid #e7e1f0; }
.signature-list span { grid-row: 1 / 3; width: 36px; height: 36px; border-radius: 50%; display: grid; place-items: center; background: #f1edff; color: var(--cob-purple); font-weight: 800; font-size: .72rem; }
.signature-list strong { color: #21075d; }
.signature-list small { color: #7b7482; }

.section-v2--purple { background: linear-gradient(120deg, #21006f, #3D00BF 62%, #351094); color: white; overflow: hidden; }
.section-heading--light h2 { color: white; max-width: 900px; }
.proof-social-section::before { content: ""; position: absolute; width: 420px; height: 420px; border-radius: 50%; border: 70px solid rgba(17,229,179,.12); top: -220px; right: -90px; }
.testimonials-v2 { display: grid; grid-template-columns: 1.15fr 1fr 1fr; gap: 18px; position: relative; }
.testimonial-v2 { min-height: 330px; border-radius: 24px; padding: 28px; background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.14); backdrop-filter: blur(10px); display: flex; flex-direction: column; }
.testimonial-v2--featured { background: white; color: #1c0757; }
.quote-mark { color: var(--cob-green); font-size: 4rem; line-height: .7; font-weight: 900; margin-bottom: 20px; }
.testimonial-v2 blockquote { margin: 0; font-size: 1.03rem; line-height: 1.65; flex: 1; }
.testimonial-v2--featured blockquote { font-size: 1.2rem; }
.testimonial-v2 footer { margin-top: 24px; display: grid; gap: 3px; }
.testimonial-v2 footer span { font-size: .75rem; color: rgba(255,255,255,.58); }
.testimonial-v2--featured footer span { color: #7e758e; }

.life-grid { display: grid; grid-template-columns: 1.2fr .8fr .7fr; gap: 18px; }
.life-card { min-height: 520px; border-radius: 26px; overflow: hidden; position: relative; margin: 0; background: #eee; }
.life-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.life-card:hover img { transform: scale(1.04); }
.life-card figcaption { position: absolute; inset: auto 0 0; padding: 70px 28px 28px; color: white; background: linear-gradient(to top, rgba(17,0,57,.9), transparent); }
.life-card figcaption span { display: block; text-transform: uppercase; letter-spacing: .1em; font-size: .67rem; color: var(--cob-green); font-weight: 800; }
.life-card figcaption strong { display: block; font-size: 1.35rem; line-height: 1.2; margin-top: 7px; }
.life-card--text { background: var(--cob-green); color: #1b0754; padding: 32px; display: flex; flex-direction: column; justify-content: flex-end; }
.life-card__number { font-size: clamp(4rem, 7vw, 7rem); line-height: .8; font-weight: 900; letter-spacing: -.08em; }
.life-card--text h3 { font-size: 1.55rem; line-height: 1.16; margin: 24px 0; }
.life-card--text .text-link--white { color: #1b0754; }

.learning-section { background: #f7f6fb; }
.learning-section .section-heading { max-width: 900px; }
.learning-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.learning-card { min-height: 490px; border-radius: 28px; padding: 30px; color: white; display: flex; flex-direction: column; justify-content: space-between; position: relative; overflow: hidden; }
.learning-card::after { content: ""; position: absolute; width: 280px; height: 280px; border: 1px solid rgba(255,255,255,.32); border-radius: 50%; right: -100px; top: -100px; }
.learning-card--one { background: linear-gradient(145deg, #4054DB, #2d20a6); }
.learning-card--two { background: linear-gradient(145deg, #3D00BF, #210070); }
.learning-card--three { background: linear-gradient(145deg, #0ebf97, #078a72); }
.learning-card__index { font-size: .8rem; font-weight: 800; letter-spacing: .12em; opacity: .85; }
.learning-card small { text-transform: uppercase; letter-spacing: .12em; font-size: .68rem; opacity: .72; }
.learning-card h3 { font-size: clamp(2rem, 3vw, 3rem); margin: 10px 0 12px; }
.learning-card p { color: rgba(255,255,255,.78); }
.learning-card a { font-weight: 800; }

.unit-section { background: white; }
.units-v2 { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.unit-v2 { min-height: 590px; border-radius: 30px; overflow: hidden; position: relative; color: white; }
.unit-v2 > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.unit-v2:hover > img { transform: scale(1.04); }
.unit-v2__overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(17,0,60,.95) 0%, rgba(17,0,60,.12) 70%); }
.unit-v2__content { position: absolute; inset: auto 30px 30px; z-index: 2; }
.unit-v2__content > span { color: var(--cob-green); text-transform: uppercase; letter-spacing: .12em; font-size: .72rem; font-weight: 800; }
.unit-v2__content h3 { font-size: clamp(2.6rem, 4vw, 4.2rem); margin: 8px 0 4px; }
.unit-v2__content p { color: rgba(255,255,255,.74); }
.unit-v2__actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 18px; }

.conversion-section { padding-top: 40px; }
.conversion-card { min-height: 540px; border-radius: 38px; background: linear-gradient(110deg, #15004f, #3D00BF 68%, #25127f); color: white; padding: clamp(42px, 7vw, 90px); display: flex; align-items: center; position: relative; overflow: hidden; }
.conversion-card__copy { max-width: 760px; position: relative; z-index: 3; }
.conversion-card h2 { font-size: clamp(3.2rem, 5.8vw, 6.3rem); margin: 0 0 24px; line-height: .94; }
.conversion-card h2 span { color: var(--cob-green); }
.conversion-card p { color: rgba(255,255,255,.74); font-size: 1.07rem; max-width: 650px; margin-bottom: 28px; }
.conversion-shape { position: absolute; border-radius: 50%; }
.conversion-shape--a { width: 480px; height: 480px; background: rgba(17,229,179,.9); right: -220px; top: -100px; }
.conversion-shape--b { width: 280px; height: 520px; border-radius: 280px 0 0 280px; background: rgba(64,84,219,.85); right: 4%; bottom: -280px; }

.site-footer--v2 { background: #12003c; }
.footer-v2-grid { display: grid; grid-template-columns: 1.5fr .7fr .8fr; gap: 70px; }
.footer-v2-brand img { width: 150px; height: auto; margin-bottom: 22px; }
.footer-v2-brand p { max-width: 420px; color: rgba(255,255,255,.68); }

.whatsapp-float--v2 { background: #18c97b; border: 3px solid white; font-size: .72rem; }

@media (max-width: 1120px) {
  .site-header--hero .nav-links { gap: 16px; font-size: .82rem; }
  .header-cta { display: none; }
  .hero-v2__copy { width: 58%; }
  .value-cards { grid-template-columns: repeat(3, 1fr); }
  .system-ribbon { grid-template-columns: 1fr 1fr; }
  .system-ribbon__title { grid-column: 1 / -1; border-bottom: 1px solid rgba(255,255,255,.2); }
  .story-grid { gap: 54px; }
  .life-grid { grid-template-columns: 1fr 1fr; }
  .life-card--text { grid-column: 1 / -1; min-height: 330px; }
}

@media (max-width: 980px) {
  .home-v2 .container { width: min(100% - 34px, 1280px); }
  .site-header--hero .nav-links { color: var(--cob-black); }
  .site-header--hero .brand--image .logo--white { opacity: 0; }
  .site-header--hero .brand--image .logo--color { opacity: 1; }
  .site-header--hero .menu-toggle span,
  .site-header--hero .menu-toggle span::before,
  .site-header--hero .menu-toggle span::after { background: white; }
  .site-header--hero.is-scrolled .menu-toggle span,
  .site-header--hero.is-scrolled .menu-toggle span::before,
  .site-header--hero.is-scrolled .menu-toggle span::after { background: var(--cob-black); }
  .site-header--hero .nav-links { inset: 76px 18px auto; }
  .hero-v2 { height: auto; min-height: 820px; }
  .hero-v2__media img { object-position: 62% center; }
  .hero-v2__veil { background: linear-gradient(90deg, rgba(7,0,31,.97) 0%, rgba(14,0,54,.9) 48%, rgba(8,0,32,.25) 100%); }
  .hero-v2__copy { width: 70%; padding-top: 130px; padding-bottom: 200px; }
  .hero-proof-wrap { bottom: -80px; }
  .hero-proof { grid-template-columns: 1fr 1fr; }
  .hero-proof__item:nth-child(2) { border-right: 0; }
  .hero-proof__item:nth-child(-n+2) { border-bottom: 1px solid rgba(255,255,255,.18); }
  .section-v2--intro { padding-top: 190px; }
  .section-heading--split, .story-grid { grid-template-columns: 1fr; gap: 36px; }
  .value-cards { grid-template-columns: repeat(2, 1fr); }
  .story-visual { min-height: 560px; max-width: 620px; margin-inline: auto; width: 100%; }
  .testimonials-v2, .learning-cards, .units-v2 { grid-template-columns: 1fr; }
  .life-grid { grid-template-columns: 1fr 1fr; }
  .footer-v2-grid { grid-template-columns: 1fr 1fr; }
  .footer-v2-brand { grid-column: 1 / -1; }
}

@media (max-width: 680px) {
  .home-v2 .container { width: min(100% - 24px, 1280px); }
  .brand--image { width: 98px; height: 34px; }
  .hero-v2 { min-height: 810px; }
  .hero-v2__media img { object-position: 59% center; }
  .hero-v2__veil { background: linear-gradient(180deg, rgba(8,0,31,.72) 0%, rgba(8,0,31,.82) 22%, rgba(9,0,37,.96) 64%, rgba(7,0,29,.99) 100%); }
  .hero-v2__inner { align-items: flex-end; }
  .hero-v2__copy { width: 100%; padding: 240px 0 220px; }
  .hero-v2 h1 { font-size: clamp(3.2rem, 15vw, 5rem); }
  .hero-kicker { font-size: .64rem; }
  .hero-actions .btn { width: 100%; }
  .hero-trust { align-items: flex-start; }
  .hero-v2__shape--a { width: 70px; height: 150px; top: 18%; right: -8px; }
  .hero-v2__shape--b { width: 100px; height: 100px; top: 28%; right: -38px; }
  .hero-v2__shape--c { display: none; }
  .hero-proof-wrap { bottom: -155px; }
  .hero-proof { grid-template-columns: 1fr; }
  .hero-proof__item { border-right: 0; border-bottom: 1px solid rgba(255,255,255,.18); }
  .hero-proof__item:last-child { border-bottom: 0; }
  .section-v2--intro { padding-top: 260px; }
  .section-v2 { padding: 84px 0; }
  .section-heading h2 { font-size: clamp(2.6rem, 12vw, 4rem); }
  .value-cards { grid-template-columns: 1fr; }
  .value-card { min-height: auto; }
  .system-ribbon { grid-template-columns: 1fr; }
  .system-ribbon__title { grid-column: auto; }
  .system-ribbon > div { border-right: 0; border-bottom: 1px solid rgba(255,255,255,.2); }
  .story-visual { min-height: 500px; }
  .story-photo--main { width: 82%; right: 0; }
  .story-badge { width: 160px; padding: 22px; }
  .story-badge strong { font-size: 2rem; }
  .story-orbit--a { width: 110px; height: 110px; border-width: 18px; }
  .story-orbit--b { width: 80px; height: 170px; }
  .life-grid { grid-template-columns: 1fr; }
  .life-card, .life-card--text { min-height: 420px; grid-column: auto; }
  .unit-v2 { min-height: 510px; }
  .unit-v2__actions .btn { width: 100%; }
  .conversion-card { border-radius: 28px; padding: 44px 24px; }
  .conversion-card .actions .btn { width: 100%; }
  .footer-v2-grid { grid-template-columns: 1fr; gap: 34px; }
  .footer-v2-brand { grid-column: auto; }
}

/* ================================================================
   COB V3 — ajustes solicitados em legibilidade, fluxo e identidade
   ================================================================ */
body { font-family: Montserrat, Inter, "Segoe UI", Arial, sans-serif; }

/* Escala tipográfica mais equilibrada em todo o projeto. */
h1 { font-size: clamp(2.9rem, 6.2vw, 5.8rem); }
h2 { font-size: clamp(2.25rem, 4.2vw, 4.25rem); }
.page-hero h1 { max-width: 1040px; }

/* Hero em fluxo normal: a faixa inferior deixa de cobrir conteúdos/links. */
.hero-v2 {
  height: auto;
  min-height: 0;
  overflow: hidden;
}
.hero-v2__inner {
  min-height: min(82svh, 800px);
  height: auto;
  padding-top: 104px;
  padding-bottom: 92px;
}
.hero-v2__copy { width: min(580px, 48%); padding-top: 8px; }
.hero-v2 h1 {
  font-size: clamp(3.35rem, 5.25vw, 5.55rem);
  line-height: .98;
  letter-spacing: -.052em;
  margin: 18px 0 22px;
}
.hero-v2 h1 > span { display: block; }
.hero-v2 h1 .hero-title-line { white-space: nowrap; }
.no-break { white-space: nowrap; }
.hero-v2__copy > p { font-size: clamp(1rem, 1.25vw, 1.16rem); max-width: 560px; }
.hero-proof-wrap {
  position: relative;
  left: auto;
  bottom: auto;
  transform: none;
  z-index: 10;
  margin-top: -48px;
  padding-bottom: 12px;
}
.hero-proof { min-height: 98px; }
.section-v2--intro { padding-top: 86px; }

/* Títulos de seção com presença, sem dominar excessivamente a tela. */
.section-heading h2 { font-size: clamp(2.35rem, 3.8vw, 4.1rem); line-height: 1.02; }
.story-copy h2 { font-size: clamp(2.45rem, 4.2vw, 4.4rem); }
.conversion-card h2 { font-size: clamp(2.75rem, 4.7vw, 4.85rem); }
.life-card__number { font-size: clamp(3.6rem, 6vw, 6rem); }

/* Ícones semânticos dos pilares. */
.value-card__icon {
  width: 58px;
  height: 58px;
  margin-bottom: 28px;
  border-radius: 18px;
  background: rgba(61,0,191,.055);
}
.value-card:nth-child(odd) .value-card__icon { background: rgba(17,229,179,.08); }
.value-card__icon svg {
  width: 38px;
  height: 38px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.value-card { min-height: 276px; }

/* Logos e descrições oficiais dos parceiros educacionais. */
.system-ribbon { grid-template-columns: 1.05fr 1fr 1fr; }
.system-ribbon__item {
  flex-direction: column;
  align-items: flex-start !important;
  justify-content: center;
  gap: 10px !important;
}
.system-ribbon__link { transition: background .25s ease, transform .25s ease; }
.system-ribbon__link:hover { background: rgba(255,255,255,.075); }
.system-brand-logo { display: block; width: auto; object-fit: contain; object-position: left center; }
.system-brand-logo--geekie { height: 45px; max-width: 190px; }
.system-brand-logo--lider { height: 40px; max-width: 200px; }
.system-ribbon__item p { font-size: .79rem; line-height: 1.48; margin: 0; }
.system-more { color: var(--cob-green); font-size: .7rem; font-weight: 800; letter-spacing: .025em; }

.ensino-systems__title { max-width: 920px; margin: 18px 0 46px; }
.system-grid--brands { align-items: stretch; }
.system-card--brand { display: flex; flex-direction: column; min-height: 430px; }
.system-card__brand-head { min-height: 96px; display: flex; align-items: center; justify-content: space-between; gap: 22px; margin-bottom: 26px; }
.system-card__brand-head img { width: auto; height: 54px; max-width: 220px; object-fit: contain; object-position: left center; }
.system-card__brand-head img.lider-logo { height: 45px; }
.system-card--brand h3 { margin-top: 0; }
.system-card--brand p { flex: 1; }

/* Logo oficial no rodapé de todas as páginas. */
.footer-logo { display: inline-block; width: min(230px, 72%); margin-bottom: 22px; }
.footer-logo img { width: 100%; height: auto; }
.footer-v2-brand img { width: min(230px, 72%); }

@media (max-width: 1120px) {
  .hero-v2__copy { width: 56%; }
  .system-ribbon { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 980px) {
  .hero-v2 { min-height: 0; }
  .hero-v2__inner { min-height: 760px; padding-top: 118px; padding-bottom: 98px; }
  .hero-v2__copy { width: 68%; padding: 0; }
  .hero-proof-wrap { margin-top: -42px; }
  .section-v2--intro { padding-top: 92px; }
  .system-card__brand-head { align-items: flex-start; flex-direction: column; }
}

@media (max-width: 680px) {
  .hero-v2 { min-height: 0; }
  .hero-v2__inner { min-height: 780px; padding-top: 250px; padding-bottom: 70px; align-items: flex-end; }
  .hero-v2__copy { width: 100%; padding: 0; }
  .hero-v2 h1 { font-size: clamp(2.75rem, 12.6vw, 3.75rem); line-height: 1; letter-spacing: -.05em; }
  .hero-v2 h1 .hero-title-line { white-space: normal; }
  .hero-proof-wrap { margin-top: 0; padding-bottom: 0; }
  .hero-proof { border-radius: 0; margin-inline: -12px; }
  .section-v2--intro { padding-top: 78px; }
  .section-heading h2 { font-size: clamp(2.15rem, 10vw, 3.25rem); }
  .conversion-card h2 { font-size: clamp(2.45rem, 11vw, 3.55rem); }
  .system-ribbon > div,
  .system-ribbon > a { min-height: auto; padding: 28px 24px; }
  .system-brand-logo--geekie { height: 42px; }
  .system-brand-logo--lider { height: 38px; }
}
.system-ribbon > a {
  min-height: 155px;
  padding: 26px 30px;
  display: flex;
  border-right: 1px solid rgba(255,255,255,.2);
  color: white;
}
.system-ribbon > a:last-child { border-right: 0; }
@media (max-width: 1120px) {
  .system-ribbon > a { border-top: 0; }
}
@media (max-width: 680px) {
  .system-ribbon > a { border-right: 0; border-bottom: 1px solid rgba(255,255,255,.2); }
  .system-ribbon > a:last-child { border-bottom: 0; }
}


/* ================================================================
   COB V4 — hero empilhado e faixa de diferenciais sem recorte
   ================================================================ */
.hero-v2 {
  overflow: hidden;
}
.hero-v2__inner {
  min-height: min(84svh, 820px);
  padding-top: 118px;
  padding-bottom: 82px;
}
.hero-v2__copy {
  width: min(560px, 45%);
  max-width: 560px;
}
.hero-v2 h1.hero-title-stacked {
  max-width: 560px;
  font-size: clamp(3.35rem, 4.65vw, 4.9rem);
  line-height: .94;
  letter-spacing: -.055em;
  margin: 18px 0 24px;
}
.hero-v2 h1.hero-title-stacked > span {
  display: block !important;
  width: fit-content;
  max-width: 100%;
  white-space: nowrap !important;
}
.hero-v2 h1.hero-title-stacked > span + span {
  margin-top: .02em;
}
.hero-v2__media img {
  object-position: 70% center;
}
.hero-v2__veil {
  background:
    linear-gradient(90deg, rgba(7,0,31,.99) 0%, rgba(14,0,54,.96) 30%, rgba(18,0,62,.76) 48%, rgba(8,0,32,.25) 66%, rgba(8,0,32,.08) 100%),
    linear-gradient(180deg, rgba(6,0,23,.48) 0%, transparent 30%, rgba(7,0,26,.22) 100%);
}
.hero-proof-region {
  position: relative;
  z-index: 20;
  margin-top: -48px;
  padding: 0 0 18px;
  background: transparent;
}
.hero-proof-region .hero-proof-wrap {
  position: relative;
  left: auto;
  bottom: auto;
  transform: none;
  margin-top: 0;
  padding-bottom: 0;
}
.section-v2--intro {
  padding-top: 72px;
}

@media (max-width: 1240px) {
  .hero-v2__copy { width: min(530px, 49%); }
  .hero-v2 h1.hero-title-stacked { font-size: clamp(3.1rem, 4.55vw, 4.45rem); }
  .hero-v2__media img { object-position: 68% center; }
}

@media (max-width: 980px) {
  .hero-v2__inner {
    min-height: 760px;
    padding-top: 130px;
    padding-bottom: 90px;
  }
  .hero-v2__copy {
    width: min(520px, 62%);
    max-width: 520px;
  }
  .hero-v2 h1.hero-title-stacked {
    font-size: clamp(3rem, 6.7vw, 4.15rem);
  }
  .hero-v2__media img { object-position: 64% center; }
  .hero-proof-region { margin-top: -38px; }
  .section-v2--intro { padding-top: 66px; }
}

@media (max-width: 680px) {
  .hero-v2__inner {
    min-height: 790px;
    padding-top: 230px;
    padding-bottom: 64px;
    align-items: flex-end;
  }
  .hero-v2__copy {
    width: 100%;
    max-width: none;
  }
  .hero-v2 h1.hero-title-stacked {
    max-width: 100%;
    font-size: clamp(2.55rem, 11.7vw, 3.35rem);
    line-height: .98;
    letter-spacing: -.048em;
  }
  .hero-v2 h1.hero-title-stacked > span {
    white-space: normal !important;
  }
  .hero-v2__media img { object-position: 60% center; }
  .hero-proof-region {
    margin-top: 0;
    padding-bottom: 0;
  }
  .hero-proof-region .hero-proof-wrap {
    width: 100%;
  }
  .hero-proof-region .hero-proof {
    margin-inline: 0;
    border-radius: 0;
  }
  .section-v2--intro { padding-top: 72px; }
}


/* ================================================================
   COB V5 — ajustes visuais solicitados em "Alterações 2"
   ================================================================ */
/* Hero: sem círculos/semicírculos laterais. */
.hero-v2__shape { display: none !important; }

/* Faixa azul: ícones em silhueta monocromática. */
.proof-icon {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  color: var(--cob-green);
  font-size: 0;
}
.proof-icon svg { width: 36px; height: 36px; fill: currentColor; display: block; }

/* Logos anexados na faixa de metodologia e desenvolvimento. */
.system-brand-logo--geekie { height: 56px; max-width: 220px; }
.system-brand-logo--lider { height: 56px; max-width: 220px; }

/* Bloco "Aqui, seu filho...": apenas o garoto fornecido, sem formas geométricas. */
.story-visual--boy {
  min-height: 620px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  position: relative;
}
.story-boy {
  display: block;
  width: min(92%, 560px);
  max-height: 620px;
  object-fit: contain;
  object-position: center bottom;
}

/* Depoimentos reais: somente foto, nome e comentário; movimento contínuo da direita para a esquerda. */
.testimonials-real {
  width: 100%;
  overflow: hidden;
  padding: 8px 0 14px;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 4%, #000 96%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 4%, #000 96%, transparent);
}
.testimonials-real__track {
  width: max-content;
  display: flex;
  align-items: stretch;
  gap: 18px;
  animation: cobTestimonialsTicker 55s linear infinite;
}
.testimonials-real__duplicate { display: contents; }
.testimonials-real:hover .testimonials-real__track { animation-play-state: paused; }
.testimonial-real {
  width: 480px;
  min-height: 218px;
  flex: 0 0 480px;
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 22px;
  align-items: center;
  background: #fff;
  color: #170446;
  border: 2px solid rgba(64,84,219,.72);
  border-radius: 28px;
  padding: 26px;
  box-shadow: 0 16px 38px rgba(7,0,40,.24);
}
.testimonial-real img {
  width: 92px;
  height: 92px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #4054DB;
}
.testimonial-real strong {
  display: block;
  color: #2237A9;
  font-size: 1rem;
  margin-bottom: 10px;
}
.testimonial-real p {
  margin: 0;
  color: #171526;
  font-size: .94rem;
  line-height: 1.55;
}
@keyframes cobTestimonialsTicker {
  from { transform: translateX(0); }
  to { transform: translateX(calc(-50% - 9px)); }
}

@media (max-width: 980px) {
  .story-visual--boy { min-height: 520px; }
  .story-boy { max-height: 520px; width: min(76%, 500px); }
}
@media (max-width: 680px) {
  .proof-icon { width: 34px; height: 34px; }
  .proof-icon svg { width: 32px; height: 32px; }
  .system-brand-logo--geekie { height: 50px; max-width: 200px; }
  .system-brand-logo--lider { height: 50px; max-width: 200px; }
  .story-visual--boy { min-height: 440px; }
  .story-boy { max-height: 440px; width: min(92%, 430px); }
  .testimonial-real { width: 340px; flex-basis: 340px; grid-template-columns: 72px 1fr; gap: 16px; padding: 20px; border-radius: 22px; }
  .testimonial-real img { width: 72px; height: 72px; }
  .testimonial-real p { font-size: .84rem; }
  .testimonial-real strong { font-size: .9rem; }
}

@media (prefers-reduced-motion: reduce) {
  .testimonials-real__track { animation: none; flex-wrap: wrap; width: 100%; }
  .testimonials-real__duplicate { display: none; }
}

/* ================================================================
   COB V7 — ajustes pontuais solicitados
   ================================================================ */
/* Exibe o logotipo O Líder em Mim sem recorte ou deformação. */
.system-card__brand-head img.lider-logo {
  width: 230px;
  max-width: 48%;
  height: auto;
  max-height: 86px;
  object-fit: contain;
  object-position: left center;
  display: block;
  flex: 0 1 auto;
}

/* Ícone oficial do WhatsApp no botão flutuante. */
.whatsapp-float.whatsapp-float--v2 {
  padding: 0;
  overflow: hidden;
  background: transparent;
  border: 3px solid #fff;
}
.whatsapp-float.whatsapp-float--v2 img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  border-radius: 50%;
}

@media (max-width: 980px) {
  .system-card__brand-head img.lider-logo {
    width: 220px;
    max-width: 100%;
  }
}
/* Aplica o ícone oficial também nas páginas internas. */
.whatsapp-float {
  padding: 0;
  overflow: hidden;
}
.whatsapp-float img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  border-radius: 50%;
}

/* ================================================================
   COB V8 — galerias e fotos institucionais
   ================================================================ */
.campus-showcase { background: linear-gradient(180deg, #fffdf8 0%, #f7f3eb 100%); }
.campus-story { overflow: hidden; }
.photo-feature {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr);
  gap: clamp(26px, 4vw, 56px);
  align-items: center;
  margin-top: 38px;
}
.photo-feature + .photo-feature { margin-top: 56px; }
.photo-feature--reverse .photo-frame { order: 2; }
.photo-feature--reverse .photo-copy { order: 1; }
.photo-frame {
  position: relative;
  padding: 20px 0 0 20px;
}
.photo-frame::before {
  content: "";
  position: absolute;
  inset: 0 48px 48px 0;
  border-radius: 34px;
  background: linear-gradient(135deg, rgba(49,86,255,.18), rgba(93,216,219,.26));
}
.photo-frame::after {
  content: "";
  position: absolute;
  right: 14px;
  bottom: 18px;
  width: 74px;
  height: 74px;
  border-radius: 24px;
  background: rgba(49,86,255,.14);
}
.photo-frame--cyan::after { background: rgba(93,216,219,.34); }
.photo-frame--blue::after { background: rgba(49,86,255,.22); }
.photo-frame img {
  position: relative;
  z-index: 1;
  width: 100%;
  border-radius: 30px;
  box-shadow: var(--shadow);
  aspect-ratio: 5 / 4;
  object-fit: cover;
}
.photo-copy h3 {
  margin-bottom: 16px;
  color: var(--ink);
}
.photo-copy p {
  color: var(--ink-soft);
  font-size: 1.03rem;
  margin-bottom: 18px;
}
.photo-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.photo-pills span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 15px;
  border-radius: 999px;
  background: rgba(49,86,255,.08);
  color: var(--ink);
  font-weight: 700;
  font-size: .92rem;
  border: 1px solid rgba(49,86,255,.12);
}
.photo-strip {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  margin-top: 30px;
}
.photo-tile {
  position: relative;
  margin: 0;
  border-radius: 26px;
  overflow: hidden;
  background: #fff;
  box-shadow: var(--shadow);
}
.photo-tile::before {
  content: "";
  position: absolute;
  top: 18px;
  left: 18px;
  width: 54px;
  height: 54px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(93,216,219,.6), rgba(49,86,255,.4));
  z-index: 1;
}
.photo-tile img {
  width: 100%;
  height: 280px;
  object-fit: cover;
}
.photo-tile figcaption {
  padding: 18px 22px 22px;
  font-weight: 700;
  color: var(--ink);
}
.unit-gallery-intro {
  margin-bottom: 28px;
}
.unit-gallery-intro p {
  color: var(--ink-soft);
  max-width: 680px;
}
.unit-photo-grid {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 20px;
}
.unit-photo {
  margin: 0;
  background: #fff;
  border-radius: 26px;
  overflow: hidden;
  box-shadow: var(--shadow);
  position: relative;
}
.unit-photo::before {
  content: "";
  position: absolute;
  top: 18px;
  right: 18px;
  width: 52px;
  height: 8px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--cyan), var(--blue));
  z-index: 1;
}
.unit-photo img {
  width: 100%;
  height: 100%;
  min-height: 260px;
  max-height: 100%;
  object-fit: cover;
}
.unit-photo figcaption {
  padding: 18px 22px 22px;
  color: var(--ink);
  font-weight: 700;
  font-size: .96rem;
}
.unit-photo--featured {
  grid-row: span 2;
}
.unit-photo--featured img { min-height: 580px; }
@media (max-width: 980px) {
  .photo-feature,
  .photo-feature--reverse {
    grid-template-columns: 1fr;
  }
  .photo-feature--reverse .photo-frame,
  .photo-feature--reverse .photo-copy {
    order: initial;
  }
  .photo-strip,
  .unit-photo-grid {
    grid-template-columns: 1fr;
  }
  .unit-photo--featured { grid-row: auto; }
  .unit-photo--featured img { min-height: 360px; }
}
@media (max-width: 680px) {
  .photo-frame {
    padding: 14px 0 0 14px;
  }
  .photo-frame::before {
    inset: 0 22px 22px 0;
    border-radius: 26px;
  }
  .photo-frame::after,
  .photo-tile::before,
  .unit-photo::before {
    transform: scale(.86);
    transform-origin: top right;
  }
  .photo-copy p,
  .unit-gallery-intro p { font-size: .96rem; }
  .photo-tile img { height: 220px; }
}


/* ================================================================
   COB V9 — ajuste fino das galerias
   ================================================================ */
.campus-showcase--mosaic,
.campus-story--mosaic {
  background: linear-gradient(180deg, #fffdf8 0%, #f7f3eb 100%);
}
.photo-mosaic {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 18px;
  margin-top: 34px;
  align-items: start;
}
.mosaic-card {
  grid-column: span 4;
  margin: 0;
  background: #fff;
  border: 1px solid rgba(10, 26, 74, .08);
  border-radius: 24px;
  padding: 12px;
  box-shadow: 0 18px 40px rgba(9, 26, 84, .08);
  position: relative;
}
.mosaic-card::before {
  content: "";
  position: absolute;
  top: 12px;
  right: 12px;
  width: 58px;
  height: 7px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--cyan), var(--blue));
  opacity: .85;
}
.mosaic-card--wide {
  grid-column: span 6;
}
.mosaic-card img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 18px;
}
.mosaic-card figcaption {
  display: grid;
  gap: 6px;
  padding: 14px 8px 6px;
}
.mosaic-card figcaption strong {
  font-size: 1rem;
  color: var(--ink);
}
.mosaic-card figcaption span {
  color: var(--ink-soft);
  font-size: .95rem;
  line-height: 1.5;
}
.unit-photo-grid--balanced {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  align-items: start;
}
.unit-photo-grid--balanced .unit-photo {
  overflow: visible;
  padding: 12px;
  border: 1px solid rgba(10, 26, 74, .08);
}
.unit-photo-grid--balanced .unit-photo--wide {
  grid-column: span 2;
}
.unit-photo-grid--balanced .unit-photo img {
  width: 100%;
  height: auto;
  min-height: 0;
  display: block;
  border-radius: 18px;
  object-fit: contain;
}
.unit-photo-grid--balanced .unit-photo figcaption {
  padding: 14px 6px 6px;
  font-size: .94rem;
  line-height: 1.5;
  color: var(--ink-soft);
  font-weight: 600;
}
.unit-photo-grid--balanced .unit-photo::before {
  top: 12px;
  right: 12px;
}
@media (max-width: 1100px) {
  .photo-mosaic {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .mosaic-card,
  .mosaic-card--wide {
    grid-column: auto;
  }
}
@media (max-width: 980px) {
  .unit-photo-grid--balanced {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .unit-photo-grid--balanced .unit-photo--wide {
    grid-column: span 2;
  }
}
@media (max-width: 680px) {
  .photo-mosaic,
  .unit-photo-grid--balanced {
    grid-template-columns: 1fr;
  }
  .unit-photo-grid--balanced .unit-photo--wide {
    grid-column: auto;
  }
  .mosaic-card,
  .unit-photo-grid--balanced .unit-photo {
    border-radius: 20px;
  }
}


/* ================================================================
   COB V10 — organização editorial das galerias
   ================================================================ */
.editorial-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, .8fr);
  gap: 20px;
  align-items: start;
  margin-top: 32px;
}
.editorial-sidebar {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  align-items: start;
}
.editorial-layout .mosaic-card,
.editorial-layout .unit-photo,
.photo-strip .unit-photo {
  margin: 0;
}
.editorial-layout .unit-photo,
.photo-strip .unit-photo {
  padding: 12px;
  border: 1px solid rgba(10, 26, 74, .08);
  overflow: visible;
}
.editorial-layout .unit-photo img,
.photo-strip .unit-photo img {
  width: 100%;
  height: auto;
  min-height: 0;
  object-fit: contain;
  display: block;
  border-radius: 18px;
}
.editorial-layout .unit-photo figcaption,
.photo-strip .unit-photo figcaption {
  padding: 14px 6px 6px;
  color: var(--ink-soft);
  font-size: .94rem;
  line-height: 1.5;
  font-weight: 600;
}
.editorial-layout .unit-photo::before,
.photo-strip .unit-photo::before {
  top: 12px;
  right: 12px;
}
.photo-strip {
  display: grid;
  gap: 18px;
  margin-top: 18px;
}
.photo-strip--single {
  grid-template-columns: minmax(0, 420px);
  justify-content: center;
}
.photo-strip--three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
@media (max-width: 1100px) {
  .editorial-layout {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 760px) {
  .editorial-sidebar,
  .photo-strip--three {
    grid-template-columns: 1fr;
  }
  .photo-strip--single {
    grid-template-columns: 1fr;
  }
}


/* ================================================================
   COB V11 — layout referência para galeria inicial
   ================================================================ */
.photo-layout-ref {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
  margin-top: 32px;
}
.photo-layout-ref__item {
  margin: 0;
  background: #fff;
  border: 1px solid rgba(10, 26, 74, .08);
  border-radius: 26px;
  box-shadow: var(--shadow);
  overflow: hidden;
}
.photo-layout-ref__item img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  background: #f4f6fb;
}
.photo-layout-ref__item figcaption {
  padding: 14px 16px 18px;
}
.photo-layout-ref__item--a {
  grid-column: 1 / span 8;
  grid-row: 1;
}
.photo-layout-ref__item--b {
  grid-column: 9 / span 4;
  grid-row: 1;
}
.photo-layout-ref__item--c {
  grid-column: 1 / span 3;
  grid-row: 2;
}
.photo-layout-ref__item--d {
  grid-column: 4 / span 3;
  grid-row: 2;
}
.photo-layout-ref__item--e {
  grid-column: 7 / span 6;
  grid-row: 2;
}
.photo-layout-ref__item--a img,
.photo-layout-ref__item--e img {
  aspect-ratio: 16 / 8.7;
}
.photo-layout-ref__item--b img {
  aspect-ratio: 5 / 4.2;
}
.photo-layout-ref__item--c img,
.photo-layout-ref__item--d img {
  aspect-ratio: 1 / 1.12;
}
@media (max-width: 980px) {
  .photo-layout-ref {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .photo-layout-ref__item--a,
  .photo-layout-ref__item--b,
  .photo-layout-ref__item--c,
  .photo-layout-ref__item--d,
  .photo-layout-ref__item--e {
    grid-column: auto;
    grid-row: auto;
  }
}
@media (max-width: 640px) {
  .photo-layout-ref {
    grid-template-columns: 1fr;
  }
}


/* ================================================================
   COB V12 — galerias simples e proporcionais
   ================================================================ */
.photo-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  margin-top: 32px;
  align-items: stretch;
}
.photo-card-grid--home,
.photo-card-grid--story {
  max-width: 1080px;
  margin-left: auto;
  margin-right: auto;
}
.photo-card-grid--units {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.photo-card {
  margin: 0;
  background: #fff;
  border: 1px solid rgba(10, 26, 74, .09);
  border-radius: 24px;
  padding: 12px;
  box-shadow: 0 14px 34px rgba(9, 26, 84, .08);
  display: flex;
  flex-direction: column;
  min-width: 0;
  position: relative;
}
.photo-card::before {
  content: "";
  position: absolute;
  top: 12px;
  right: 12px;
  width: 54px;
  height: 7px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--cyan), var(--blue));
  z-index: 2;
}
.photo-card__media {
  width: 100%;
  height: 250px;
  border-radius: 17px;
  overflow: hidden;
  background: #f5f7fb;
  display: flex;
  align-items: center;
  justify-content: center;
}
.photo-card__media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
}
.photo-card figcaption {
  display: grid;
  gap: 6px;
  padding: 14px 7px 7px;
}
.photo-card figcaption strong {
  color: var(--ink);
  font-size: 1rem;
  line-height: 1.3;
}
.photo-card figcaption span {
  color: var(--ink-soft);
  font-size: .92rem;
  line-height: 1.5;
}
@media (max-width: 980px) {
  .photo-card-grid,
  .photo-card-grid--units {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 620px) {
  .photo-card-grid,
  .photo-card-grid--units {
    grid-template-columns: 1fr;
  }
  .photo-card__media {
    height: 230px;
  }
}


/* ================================================================
   COB V13 — fluxo de matrícula 2027
   ================================================================ */
.enrollment-page { background: #fff; }
.enrollment-stage {
  min-height: calc(100vh - 88px);
  padding: 92px 20px;
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #15003f 0%, #22005c 48%, #120037 100%);
}
.enrollment-stage::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(circle at 18% 25%, rgba(17,229,179,.08), transparent 20%), radial-gradient(circle at 83% 75%, rgba(64,84,219,.18), transparent 26%);
}
.enrollment-stage__glow { position:absolute; width:420px; height:420px; border-radius:50%; filter:blur(90px); opacity:.12; pointer-events:none; }
.enrollment-stage__glow--one { background:#11e5b3; left:-180px; bottom:-100px; }
.enrollment-stage__glow--two { background:#4054db; right:-160px; top:-130px; }
.enrollment-wizard {
  width: min(100%, 660px);
  min-height: 390px;
  background: #fff;
  border-radius: 28px;
  padding: 34px;
  box-shadow: 0 34px 80px rgba(4,0,25,.34);
  position: relative; z-index: 2;
}
.enrollment-close {
  position:absolute; top:26px; right:26px; width:42px; height:42px; border-radius:50%; display:grid; place-items:center;
  background:#f5f3fb; color:#3d00bf; text-decoration:none; font-size:1.45rem; line-height:1; font-weight:500;
}
.enrollment-kicker { display:block; color:#3d00bf; font-size:.72rem; font-weight:900; letter-spacing:.08em; margin-bottom:8px; }
.enrollment-step h1, .enrollment-step h2 { font-size:clamp(1.65rem, 3vw, 2.25rem); line-height:1.05; margin:0 56px 20px 0; color:#17004d; }
.enrollment-progress { display:grid; grid-template-columns:32px 1fr 32px 1fr 32px 1fr 32px; align-items:center; margin:18px 0 34px; }
.enrollment-progress span { width:28px; height:28px; display:grid; place-items:center; border-radius:50%; background:#ece9f4; color:#8f8aa3; font-size:.72rem; font-weight:800; }
.enrollment-progress span.is-current, .enrollment-progress span.is-done { background:#4200d3; color:white; box-shadow:0 4px 14px rgba(66,0,211,.25); }
.enrollment-progress i { height:3px; background:#ece9f4; }
.enrollment-progress i.is-done { background:linear-gradient(90deg,#4054db,#11e5b3); }
.enrollment-options { display:grid; gap:12px; }
.enrollment-option {
  width:100%; border:1px solid #ddd9e8; border-radius:18px; background:#fff; display:grid; grid-template-columns:52px 1fr 26px; gap:14px; align-items:center;
  padding:16px 18px; text-align:left; cursor:pointer; color:#1a064f; font:inherit; transition:.2s ease;
}
.enrollment-option:hover { border-color:#8c6cff; transform:translateY(-1px); box-shadow:0 8px 24px rgba(61,0,191,.08); }
.enrollment-option__badge { width:48px; height:48px; border-radius:14px; background:#eee9ff; color:#3d00bf; display:grid; place-items:center; font-weight:900; font-size:1.12rem; }
.enrollment-option__badge--green { background:#e1fbf6; color:#00a885; }
.enrollment-option__body { min-width:0; display:grid; gap:3px; }
.enrollment-option__body strong { font-size:1rem; color:#21005e; }
.enrollment-option__body small { color:#8a8498; font-size:.75rem; line-height:1.35; }
.enrollment-option__body em { color:#3d00bf; font-style:normal; font-size:.67rem; font-weight:900; letter-spacing:.03em; margin-top:3px; }
.enrollment-option__arrow { color:#31008d; font-size:1.35rem; text-align:right; }
.enrollment-back { appearance:none; border:0; background:transparent; padding:0; color:#3d00bf; font-weight:800; font-size:.76rem; cursor:pointer; margin-bottom:10px; }
.enrollment-selection { margin:0 0 16px; color:#8a8498; font-size:.82rem; }
.enrollment-selection strong { color:#26006e; }
.enrollment-years { max-height:430px; overflow:auto; display:grid; gap:10px; padding-right:8px; scrollbar-color:#b99cf8 transparent; scrollbar-width:thin; }
.enrollment-option--year { padding:12px 16px; }
.enrollment-option--year .enrollment-option__badge { width:48px; height:48px; }
.enrollment-option--year .enrollment-option__body strong { font-size:.95rem; }
.enrollment-form { display:grid; gap:14px; }
.enrollment-form label:not(.enrollment-consent) { display:grid; gap:7px; }
.enrollment-form label > span { font-size:.75rem; font-weight:800; color:#21005e; }
.enrollment-form input[type="text"] { height:52px; width:100%; border:1px solid #ddd9e8; border-radius:13px; padding:0 16px; font:inherit; color:#1a064f; background:#fbfaff; outline:none; }
.enrollment-form input[type="text"]:focus { border-color:#704cf0; box-shadow:0 0 0 3px rgba(112,76,240,.08); }
.enrollment-consent { display:flex; gap:10px; align-items:flex-start; margin:0 0 2px; }
.enrollment-consent input { margin-top:4px; accent-color:#3d00bf; }
.enrollment-consent span { color:#777184 !important; font-size:.69rem !important; line-height:1.45; font-weight:500 !important; }
.enrollment-consent a { color:#3d00bf; }
.enrollment-primary {
  min-height:56px; border:0; border-radius:13px; background:#11dcb4; color:#18004f; display:flex; align-items:center; justify-content:center; gap:20px;
  font:inherit; font-weight:900; cursor:pointer; text-decoration:none; box-shadow:0 14px 26px rgba(17,220,180,.18);
}
.enrollment-primary:hover { background:#16e5bd; transform:translateY(-1px); }
.enrollment-review { margin:0; border:1px solid #ddd9e8; border-radius:18px; overflow:hidden; }
.enrollment-review div { display:grid; grid-template-columns:180px 1fr; min-height:50px; align-items:center; gap:16px; padding:10px 18px; border-bottom:1px solid #e5e1ed; }
.enrollment-review div:last-child { border-bottom:0; }
.enrollment-review dt { color:#8d889a; font-size:.67rem; font-weight:800; letter-spacing:.02em; }
.enrollment-review dd { margin:0; color:#21005e; font-size:.82rem; font-weight:800; }
.enrollment-next { margin:16px 0; padding:14px 16px; background:#e6fbf6; border-radius:14px; display:flex; gap:12px; align-items:center; }
.enrollment-next__check { flex:0 0 34px; width:34px; height:34px; border-radius:50%; background:#11dcb4; color:#13004a; display:grid; place-items:center; font-weight:900; }
.enrollment-next div { display:grid; gap:2px; }
.enrollment-next strong { color:#164b43; font-size:.8rem; }
.enrollment-next small { color:#748d88; font-size:.67rem; }
.enrollment-footnote { text-align:center; color:#aaa4b3; font-size:.62rem; margin:10px 0 0; }
@media (max-width: 760px) {
  .enrollment-stage { padding:50px 14px; min-height:auto; }
  .enrollment-wizard { padding:26px 18px; border-radius:22px; }
  .enrollment-close { top:20px; right:18px; width:38px; height:38px; }
  .enrollment-progress { grid-template-columns:28px 1fr 28px 1fr 28px 1fr 28px; }
  .enrollment-review div { grid-template-columns:1fr; gap:4px; padding:10px 14px; }
  .enrollment-option { grid-template-columns:46px 1fr 22px; padding:14px; gap:10px; }
  .enrollment-option__badge, .enrollment-option--year .enrollment-option__badge { width:44px; height:44px; }
}


/* ================================================================
   COB V14 — cabeçalho claro na matrícula
   ================================================================ */
.site-header--solid {
  background: rgba(255,253,248,.98);
  backdrop-filter: blur(16px);
  box-shadow: 0 8px 30px rgba(13,23,54,.08);
}
.site-header--solid .nav-links {
  color: var(--ink);
}
.site-header--solid .menu-toggle span,
.site-header--solid .menu-toggle span::before,
.site-header--solid .menu-toggle span::after {
  background: var(--ink);
}


/* ================================================================
   COB V16 — destaque Matrículas no cabeçalho
   ================================================================ */
.nav-links a[href$="matriculas/"] {
  color: var(--cob-purple);
  font-weight: 900;
}
.nav-links a[href$="matriculas/"]::after {
  height: 3px;
  background: currentColor;
  transform: scaleX(1);
  transform-origin: left;
}
.site-header--hero:not(.is-scrolled) .nav-links a[href$="matriculas/"] {
  color: var(--cob-green);
}
@media (max-width: 760px) {
  .site-header--hero .nav-links a[href$="matriculas/"] {
    color: var(--cob-purple);
  }
}


/* ================================================================
   COB V17 — logo claro e WhatsApp unidades
   ================================================================ */
.site-header:not(.site-header--hero) .brand--image .logo--color {
  opacity: 1;
}
.whatsapp-float img[src*="whatsapp-icon-v17"] {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  border-radius: 50%;
}


/* ================================================================
   COB V18 — padronização logo claro e WhatsApp
   ================================================================ */
/* Todo cabeçalho claro deve mostrar o logo colorido. */
.site-header:not(.site-header--hero) .brand--image {
  width: 132px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  visibility: visible !important;
  opacity: 1 !important;
}
.site-header:not(.site-header--hero) .brand--image .logo--color {
  position: static;
  width: 100%;
  height: auto;
  max-height: 42px;
  display: block !important;
  object-fit: contain;
  object-position: left center;
  opacity: 1 !important;
  visibility: visible !important;
}
.site-header--solid .brand--image .logo--color {
  opacity: 1 !important;
  visibility: visible !important;
}
/* Quando o hero vira cabeçalho claro no scroll, use o logo colorido. */
.site-header--hero.is-scrolled .brand--image .logo--color {
  opacity: 1 !important;
  visibility: visible !important;
}
/* Ícone flutuante oficial, sem fallback textual. */
.whatsapp-float,
.whatsapp-float.whatsapp-float--v2 {
  width: 56px;
  height: 56px;
  padding: 0 !important;
  overflow: hidden;
  border-radius: 50%;
  background: transparent !important;
  border: 0 !important;
  line-height: 0;
  font-size: 0 !important;
}
.whatsapp-float img[src*="whatsapp-oficial-v18"] {
  width: 100% !important;
  height: 100% !important;
  display: block !important;
  object-fit: cover !important;
  border-radius: 50% !important;
  opacity: 1 !important;
  visibility: visible !important;
}
@media (max-width: 760px) {
  .site-header:not(.site-header--hero) .brand--image {
    width: 112px;
    height: 36px;
  }
}


/* ================================================================
   COB V19 — correções exclusivamente mobile
   Corrige apenas Metodologia/Desenvolvimento e CTA final na Home.
   ================================================================ */
@media (max-width: 680px) {
  /* Metodologia e desenvolvimento: todos os blocos empilhados e contidos. */
  .home-v2 .system-ribbon {
    display: grid;
    grid-template-columns: minmax(0, 1fr) !important;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
  }
  .home-v2 .system-ribbon > .system-ribbon__title,
  .home-v2 .system-ribbon > .system-ribbon__item,
  .home-v2 .system-ribbon > a {
    grid-column: 1 / -1 !important;
    width: 100%;
    max-width: 100%;
    min-width: 0;
    box-sizing: border-box;
    padding: 28px 24px;
    border-right: 0 !important;
  }
  .home-v2 .system-ribbon__title {
    min-height: 0;
    border-bottom: 1px solid rgba(255,255,255,.2);
  }
  .home-v2 .system-ribbon__title h2 {
    max-width: 100%;
    font-size: clamp(1.8rem, 8.6vw, 2.35rem);
    line-height: 1.06;
    overflow-wrap: normal;
    word-break: normal;
  }
  .home-v2 .system-ribbon__item {
    display: flex;
    flex-direction: column;
    align-items: flex-start !important;
    justify-content: flex-start;
    min-height: 0;
    gap: 14px !important;
  }
  .home-v2 .system-ribbon__item p,
  .home-v2 .system-more {
    width: 100%;
    max-width: 100%;
    white-space: normal;
    overflow-wrap: break-word;
  }
  .home-v2 .system-ribbon__item p {
    font-size: .94rem;
    line-height: 1.62;
  }
  .home-v2 .system-brand-logo--geekie,
  .home-v2 .system-brand-logo--lider {
    width: auto;
    height: auto;
    max-width: min(210px, 72%);
    max-height: 58px;
    object-fit: contain;
    object-position: left center;
  }

  /* CTA final: conteúdo confortável no celular e formas fora da leitura. */
  .home-v2 .conversion-section {
    padding-top: 24px;
    padding-bottom: 64px;
  }
  .home-v2 .conversion-card {
    min-height: 0;
    padding: 40px 24px 34px;
    border-radius: 28px;
    align-items: flex-start;
    overflow: hidden;
  }
  .home-v2 .conversion-card__copy {
    width: 100%;
    max-width: 100%;
  }
  .home-v2 .conversion-card h2 {
    max-width: 100%;
    margin-bottom: 22px;
    font-size: clamp(2.55rem, 11.5vw, 3.4rem);
    line-height: .98;
    letter-spacing: -.045em;
  }
  .home-v2 .conversion-card h2 br {
    display: none;
  }
  .home-v2 .conversion-card p {
    max-width: 100%;
    margin-bottom: 26px;
    font-size: 1rem;
    line-height: 1.7;
  }
  .home-v2 .conversion-card .actions {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .home-v2 .conversion-card .actions .btn {
    width: 100%;
    min-height: 58px;
    padding-inline: 18px;
    text-align: center;
    justify-content: center;
    box-sizing: border-box;
    white-space: normal;
  }
  .home-v2 .conversion-shape--a {
    width: 180px;
    height: 180px;
    right: -92px;
    top: -74px;
    opacity: .28;
  }
  .home-v2 .conversion-shape--b {
    width: 150px;
    height: 280px;
    right: -46px;
    bottom: -176px;
    opacity: .5;
  }
}

/* ================================================================
   COB V21 — captação de matrícula em 7 etapas
   ================================================================ */
.enrollment-progress--seven {
  grid-template-columns: 28px 1fr 28px 1fr 28px 1fr 28px 1fr 28px 1fr 28px 1fr 28px;
  gap: 0;
}
.enrollment-progress--seven span {
  width: 26px;
  height: 26px;
  font-size: .68rem;
}
.enrollment-form__two {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}
.enrollment-form input[type="email"],
.enrollment-form input[type="tel"],
.enrollment-form textarea {
  width: 100%;
  border: 1px solid #ddd9e8;
  border-radius: 13px;
  padding: 0 16px;
  font: inherit;
  color: #1a064f;
  background: #fbfaff;
  outline: none;
}
.enrollment-form input[type="email"],
.enrollment-form input[type="tel"] {
  height: 52px;
}
.enrollment-form textarea {
  min-height: 104px;
  padding-top: 14px;
  padding-bottom: 14px;
  resize: vertical;
  line-height: 1.45;
}
.enrollment-form input[type="email"]:focus,
.enrollment-form input[type="tel"]:focus,
.enrollment-form textarea:focus {
  border-color: #704cf0;
  box-shadow: 0 0 0 3px rgba(112,76,240,.08);
}
.enrollment-fieldset {
  margin: 0;
  padding: 0;
  border: 0;
  min-width: 0;
}
.enrollment-fieldset legend {
  margin: 0 0 9px;
  padding: 0;
  color: #21005e;
  font-size: .75rem;
  font-weight: 800;
}
.enrollment-choice-grid {
  display: grid;
  gap: 10px;
}
.enrollment-choice-grid--two,
.enrollment-choice-grid--subjects,
.enrollment-choice-grid--origins {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.enrollment-choice-card {
  position: relative;
  min-height: 70px;
  display: grid;
  grid-template-columns: 30px 1fr;
  gap: 11px;
  align-items: center;
  padding: 13px 14px;
  border: 1px solid #ddd9e8;
  border-radius: 15px;
  background: #fff;
  cursor: pointer;
  transition: .18s ease;
}
.enrollment-choice-card:hover {
  border-color: #9a82ee;
  box-shadow: 0 7px 20px rgba(61,0,191,.06);
}
.enrollment-choice-card:has(input:checked) {
  border-color: #704cf0;
  background: #f8f5ff;
  box-shadow: 0 0 0 2px rgba(112,76,240,.07);
}
.enrollment-choice-card input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.enrollment-choice-card__mark {
  width: 28px;
  height: 28px;
  border-radius: 9px;
  display: grid;
  place-items: center;
  border: 1px solid #d5cfee;
  background: #f3efff;
  color: transparent;
  font-size: .8rem;
  font-weight: 900;
  transition: .18s ease;
}
.enrollment-choice-card input[type="radio"] + .enrollment-choice-card__mark {
  border-radius: 50%;
}
.enrollment-choice-card input:checked + .enrollment-choice-card__mark {
  border-color: #3d00bf;
  background: #3d00bf;
  color: #fff;
}
.enrollment-choice-card > span:last-child {
  min-width: 0;
  display: grid;
  gap: 3px;
}
.enrollment-choice-card strong {
  color: #21005e;
  font-size: .83rem;
  line-height: 1.25;
}
.enrollment-choice-card small {
  color: #8a8498;
  font-size: .66rem;
  line-height: 1.35;
}
.enrollment-choice-card--compact {
  min-height: 58px;
  padding: 11px 13px;
}
.enrollment-help {
  display: block;
  margin-top: 2px;
  color: #9a94a5;
  font-size: .65rem;
  line-height: 1.4;
}
.enrollment-inline-error {
  margin: -2px 0 0;
  color: #b42318;
  font-size: .72rem;
  font-weight: 700;
}
.enrollment-review dd {
  overflow-wrap: anywhere;
}

@media (max-width: 760px) {
  .enrollment-progress--seven {
    grid-template-columns: 24px 1fr 24px 1fr 24px 1fr 24px 1fr 24px 1fr 24px 1fr 24px;
    margin-bottom: 26px;
  }
  .enrollment-progress--seven span {
    width: 23px;
    height: 23px;
    font-size: .6rem;
  }
  .enrollment-progress--seven i {
    height: 2px;
  }
  .enrollment-form__two,
  .enrollment-choice-grid--two,
  .enrollment-choice-grid--subjects,
  .enrollment-choice-grid--origins {
    grid-template-columns: 1fr;
  }
  .enrollment-choice-card {
    min-height: 60px;
  }
}

@media (max-width: 420px) {
  .enrollment-progress--seven {
    grid-template-columns: 21px 1fr 21px 1fr 21px 1fr 21px 1fr 21px 1fr 21px 1fr 21px;
  }
  .enrollment-progress--seven span {
    width: 20px;
    height: 20px;
    font-size: .54rem;
  }
}
