/* ============================================================
   Motriz — Design System v3
   Institucional moderno, fotográfico, inspirado em Educação Adventista
   ============================================================ */

/* Fonts loaded via <link> in each HTML <head> for reliability on file:// */

:root {
  /* ----- Cor ----- */
  /* Azul profundo Motriz — cor primária da marca */
  --c-marinho: #172549;
  --c-marinho-dark: #0E1830;
  --c-marinho-light: #23365F;

  /* Vermelho Motriz — acento principal vibrante */
  --c-acento: #E8352D;
  --c-acento-dark: #A41A14;   /* WCAG AAA: 7.3:1 sobre branco — uso em texto */
  --c-acento-light: #F25548;
  --c-acento-fill: #C1241D;   /* tonalidade média, para preenchimento/borda */

  /* Coral/secundário — substitui antiga turquesa */
  --c-turquesa: #F47A6F;
  --c-turquesa-dark: #C8554A;
  --c-turquesa-light: #FFB5B0;

  /* Azul-link — ações e links */
  --c-link: #1A4A8A;
  --c-link-dark: #0F2F5C;

  /* Background base — neutros claros e neutros */
  --c-bege: #FFF6F3;        /* off-white com leve tom rosado */
  --c-bege-warm: #FFE9E3;
  --c-off-white: #FAFAF7;
  --c-branco: #FFFFFF;

  /* Texto */
  --c-texto-primary: #1A1F2E;
  --c-texto-secondary: #4A4E5E;
  --c-texto-muted: #80868F;
  --c-texto-on-dark: #FFFFFF;

  /* Hairlines */
  --c-linha: #E5E1DA;
  --c-linha-soft: #EFEBE3;
  --c-linha-dark: #23365F;

  /* Estados */
  --c-success: #2F7A3E;
  --c-error: #A41A14;

  /* ----- Tipografia ----- */
  --f-sans: 'Fredoka', 'Nunito', 'Trebuchet MS', 'Segoe UI', system-ui, -apple-system, Arial, sans-serif;
  --f-mono: 'Nunito', 'Trebuchet MS', system-ui, sans-serif;

  /* ----- Espaçamento ----- */
  --space-1: 4px;  --space-2: 8px;  --space-3: 12px; --space-4: 16px;
  --space-6: 24px; --space-8: 32px; --space-10: 40px; --space-12: 48px;
  --space-16: 64px; --space-20: 80px; --space-24: 96px;
  --space-32: 128px; --space-40: 160px;

  /* ----- Bordas (estilo arredondado) ----- */
  --radius-xs: 4px;
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;

  /* ----- Sombras (raras) ----- */
  --shadow-sm: 0 1px 2px rgba(23, 37, 73, 0.04);
  --shadow-md: 0 1px 3px rgba(23, 37, 73, 0.08), 0 4px 16px rgba(23, 37, 73, 0.04);
  --shadow-lg: 0 4px 24px rgba(23, 37, 73, 0.08);

  /* ----- Easing ----- */
  --ease-out-quart: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out-quart: cubic-bezier(0.83, 0, 0.17, 1);

  /* ----- Durações ----- */
  --duration-fast: 150ms;
  --duration-base: 300ms;
  --duration-slow: 600ms;
  --duration-reveal: 800ms;
}

/* ============================================================
   Reset
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--f-sans);
  font-size: 16px;
  line-height: 1.65;
  color: var(--c-texto-primary);
  background-color: var(--c-off-white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  font-feature-settings: 'kern' 1, 'liga' 1;
}

img, picture, svg { display: block; max-width: 100%; }
img { height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
h1, h2, h3, h4, h5, h6, p { margin: 0; }
ul, ol { margin: 0; padding: 0; list-style: none; }
address { font-style: normal; }
hr {
  border: none;
  height: 1px;
  background: var(--c-linha);
  margin: 0;
}

/* Transitions */
a, button, .reveal, input, select, textarea, [data-transition] {
  transition-property: color, background-color, border-color, transform, opacity, box-shadow;
  transition-duration: var(--duration-base);
  transition-timing-function: var(--ease-out-quart);
}

/* Focus */
:focus-visible {
  outline: 2px solid var(--c-acento);
  outline-offset: 3px;
  border-radius: 2px;
}

.skip-link {
  position: absolute;
  top: -100px;
  left: 16px;
  background: var(--c-marinho);
  color: var(--c-off-white);
  padding: 12px 20px;
  border-radius: var(--radius-sm);
  z-index: 100;
  font-weight: 600;
  font-size: 14px;
}
.skip-link:focus { top: 16px; }

/* ============================================================
   Mobile calibração — tipografia e spacing escalados
   ============================================================ */
@media (max-width: 767px) {
  /* Display sizes mais compactos */
  .display-1 { font-size: clamp(32px, 9vw, 44px) !important; line-height: 1.1 !important; }
  .display-2 { font-size: clamp(28px, 7.5vw, 38px) !important; line-height: 1.12 !important; }
  .display-3 { font-size: clamp(24px, 6.5vw, 30px) !important; line-height: 1.15 !important; }
  .h2-sec { font-size: clamp(22px, 6vw, 26px) !important; }
  .h3-card { font-size: 18px; }
  .body-lg { font-size: 15px; line-height: 1.6; }

  /* Section padding mais enxuto */
  .section { padding: 56px 0 !important; }
  .section-sm { padding: 48px 0 !important; }

  /* Container padding lateral consistente */
  .container { padding: 0 20px !important; }

  /* Botões menores */
  .btn { padding: 12px 20px; font-size: 14px; }
  .btn-accent { padding: 13px 22px; font-size: 14px; }

  /* CTA strip menor */
  .cta-strip { padding: 56px 0; }
  .cta-strip .display-3 { margin-bottom: 24px; }
  .ctas { gap: 10px; flex-direction: column; align-items: stretch; }
  .ctas .btn { width: 100%; justify-content: center; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px !important; }
  .display-1 { font-size: 32px !important; }
  .display-2 { font-size: 26px !important; }
  .display-3 { font-size: 22px !important; }
}

/* ============================================================
   Watermark — chapéu de graduação (marca da escola)
   Posiciona graduation cap SVG como decoração de fundo em seções
   ============================================================ */
.cap-watermark {
  position: absolute;
  pointer-events: none;
  z-index: 0;
  display: block;
}
.cap-watermark svg { width: 100%; height: 100%; display: block; }

/* Tamanhos */
.cap-watermark.size-sm  { width: 220px; height: 220px; }
.cap-watermark.size-md  { width: 360px; height: 360px; }
.cap-watermark.size-lg  { width: 520px; height: 520px; }
.cap-watermark.size-xl  { width: 720px; height: 720px; }

/* Posições */
.cap-watermark.pos-tr { top: 5%; right: -80px; }
.cap-watermark.pos-tl { top: 5%; left: -80px; }
.cap-watermark.pos-br { bottom: -80px; right: 5%; }
.cap-watermark.pos-bl { bottom: -80px; left: 5%; }
.cap-watermark.pos-center { top: 50%; left: 50%; transform: translate(-50%, -50%); }
.cap-watermark.pos-right-center { top: 50%; right: -120px; transform: translateY(-50%); }
.cap-watermark.pos-left-center { top: 50%; left: -120px; transform: translateY(-50%); }

/* Cores / opacidades */
.cap-watermark.tone-white { color: rgba(255, 255, 255, 0.10); }
.cap-watermark.tone-white-stronger { color: rgba(255, 255, 255, 0.16); }
.cap-watermark.tone-dark  { color: rgba(0, 0, 0, 0.06); }
.cap-watermark.tone-dark-stronger { color: rgba(0, 0, 0, 0.10); }

/* Rotação opcional */
.cap-watermark.rot-neg { transform: rotate(-12deg); }
.cap-watermark.rot-pos { transform: rotate(8deg); }
.cap-watermark.pos-center.rot-neg { transform: translate(-50%, -50%) rotate(-12deg); }
.cap-watermark.pos-center.rot-pos { transform: translate(-50%, -50%) rotate(8deg); }
.cap-watermark.pos-right-center.rot-neg { transform: translateY(-50%) rotate(-12deg); }
.cap-watermark.pos-left-center.rot-pos { transform: translateY(-50%) rotate(8deg); }

/* ============================================================
   Typography utilities (IBM Plex Sans throughout)
   ============================================================ */

/* Eyebrow / label — sans bold, uppercase, sky link blue */
.eyebrow {
  font-family: var(--f-sans);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--c-link);
  margin: 0;
}
.eyebrow-light {
  color: var(--c-acento);
}

/* Number marker */
.num {
  font-family: var(--f-sans);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--c-acento-dark);
}

/* Display sizes — Fredoka has rounded, friendly letterforms, so we use looser tracking */
.display-1 {
  font-family: var(--f-sans);
  font-size: clamp(44px, 6.8vw, 80px);
  line-height: 1.05;
  letter-spacing: -0.015em;
  font-weight: 700;
}
.display-2 {
  font-family: var(--f-sans);
  font-size: clamp(36px, 5.2vw, 60px);
  line-height: 1.08;
  letter-spacing: -0.012em;
  font-weight: 700;
}
.display-3 {
  font-family: var(--f-sans);
  font-size: clamp(30px, 3.8vw, 48px);
  line-height: 1.12;
  letter-spacing: -0.01em;
  font-weight: 700;
}
.h2-sec {
  font-size: clamp(26px, 2.8vw, 34px);
  line-height: 1.2;
  letter-spacing: -0.005em;
  font-weight: 700;
}
.h3-card {
  font-size: 22px;
  line-height: 1.25;
  letter-spacing: 0;
  font-weight: 600;
}

.body-lg {
  font-size: 18px;
  line-height: 1.65;
  letter-spacing: -0.005em;
  font-weight: 400;
}
.body-sm {
  font-size: 14px;
  line-height: 1.55;
}
.micro {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--c-texto-muted);
}

/* ============================================================
   Layout
   ============================================================ */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}
@media (min-width: 480px) {
  .container { padding: 0 28px; }
}
@media (min-width: 768px) {
  .container { padding: 0 40px; }
}
@media (min-width: 1024px) {
  .container { padding: 0 64px; }
}
@media (min-width: 1440px) {
  .container { padding: 0 96px; }
}
@media (min-width: 1680px) {
  .container { padding: 0 120px; }
}

.section { padding: 72px 0; }
@media (min-width: 768px) {
  .section { padding: 96px 0; }
}
@media (min-width: 1024px) {
  .section { padding: 128px 0; }
}

.section-sm { padding: 56px 0; }
@media (min-width: 768px) {
  .section-sm { padding: 72px 0; }
}
@media (min-width: 1024px) {
  .section-sm { padding: 96px 0; }
}

/* Hairline divider */
.hairline {
  width: 48px;
  height: 1px;
  background: var(--c-acento);
}

/* ============================================================
   Buttons — pill rounded
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 26px;
  border-radius: 999px;
  font-family: var(--f-sans);
  font-weight: 500;
  font-size: 14px;
  letter-spacing: -0.005em;
  white-space: nowrap;
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none;
  line-height: 1.2;
}

.btn-accent {
  background-color: var(--c-acento);
  color: var(--c-branco);
  font-weight: 600;
  padding: 16px 32px;
  font-size: 15px;
}
.btn-accent:hover {
  background-color: var(--c-acento-fill);
  color: var(--c-branco);
}

/* On dark / blue sections, the accent CTA flips to white-on-navy */
.hero .btn-accent,
.pillars-section .btn-accent,
.invite-section .btn-accent,
.cta-strip .btn-accent,
.cta-strip-flex .btn-accent,
.inner-hero .btn-accent,
.mobile-menu .btn-accent,
.site-footer .btn-accent {
  background-color: var(--c-branco);
  color: var(--c-marinho);
}
.hero .btn-accent:hover,
.pillars-section .btn-accent:hover,
.invite-section .btn-accent:hover,
.cta-strip .btn-accent:hover,
.cta-strip-flex .btn-accent:hover,
.inner-hero .btn-accent:hover,
.mobile-menu .btn-accent:hover,
.site-footer .btn-accent:hover {
  background-color: var(--c-bege);
  color: var(--c-marinho);
}

.btn-primary {
  background-color: var(--c-marinho);
  color: var(--c-off-white);
}
.btn-primary:hover {
  background-color: var(--c-marinho-light);
}

.btn-ghost {
  background-color: transparent;
  color: var(--c-marinho);
  border-color: var(--c-marinho);
}
.btn-ghost:hover {
  background-color: var(--c-marinho);
  color: var(--c-off-white);
}

.btn-ghost-light {
  background-color: transparent;
  color: var(--c-off-white);
  border-color: rgba(255, 255, 255, 0.35);
}
.btn-ghost-light:hover {
  background-color: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.7);
}

.btn .arrow {
  width: 14px; height: 14px;
  stroke: currentColor;
  stroke-width: 1.8;
  fill: none;
  transition: transform var(--duration-base) var(--ease-out-quart);
}
.btn:hover .arrow { transform: translateX(3px); }

/* Inline link with arrow */
.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--c-marinho);
  font-weight: 700;
  font-size: 14px;
  padding-bottom: 4px;
  border-bottom: 2px solid var(--c-acento);
  width: fit-content;
}
.link-arrow:hover {
  gap: 12px;
  color: var(--c-acento-dark);
  border-bottom-color: var(--c-acento-dark);
}

/* ============================================================
   Header
   ============================================================ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--c-linha-soft);
}
.site-header.is-dark {
  background: rgba(23, 37, 73, 0.92);
  border-bottom-color: rgba(255, 255, 255, 0.08);
}
.site-header.is-dark .header-link,
.site-header.is-dark .brand-name { color: var(--c-off-white); }
.site-header.is-dark .brand-line { color: rgba(250, 247, 242,0.55); }

.header-row {
  height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
@media (max-width: 1023px) {
  .header-row { height: 70px; }
}

/* Brand mark — image logo */
.brand-mark {
  display: inline-flex;
  align-items: center;
  color: var(--c-marinho);
}
.brand-logo {
  height: 60px;
  width: auto;
  display: block;
}
@media (max-width: 540px) {
  .brand-logo { height: 50px; }
}

.primary-nav {
  display: none;
}
@media (min-width: 1024px) {
  .primary-nav { display: flex; align-items: center; gap: 28px; }
}
.header-link {
  font-size: 14px;
  font-weight: 400;
  color: var(--c-texto-primary);
  display: inline-flex;
  align-items: center;
  gap: 4px;
  letter-spacing: -0.005em;
  position: relative;
}
.header-link:hover { color: var(--c-acento-dark); }
.header-link.is-active { color: var(--c-marinho); font-weight: 500; }
.header-link.is-active::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0; right: 0;
  height: 3px;
  background: var(--c-acento);
  border-radius: 2px;
}
.header-link svg { width: 10px; height: 10px; }

.has-dropdown { position: relative; }
/* Hover bridge — área invisível entre o link e o dropdown */
/* mantém o hover ativo enquanto o mouse atravessa o gap */
.has-dropdown::after {
  content: '';
  position: absolute;
  top: 100%;
  left: -16px;
  right: -16px;
  height: 20px;
}

.dropdown {
  position: absolute;
  top: calc(100% + 14px);
  left: -16px;
  min-width: 240px;
  background: var(--c-off-white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-4px);
  border: 1px solid var(--c-linha);
  transition:
    opacity var(--duration-base) var(--ease-out-quart),
    visibility var(--duration-base) var(--ease-out-quart),
    transform var(--duration-base) var(--ease-out-quart);
  transition-delay: 150ms; /* Delay no FECHAR — dá tempo do mouse cruzar */
}
.has-dropdown:hover .dropdown,
.has-dropdown:focus-within .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  transition-delay: 0ms; /* Abre imediato */
}
.dropdown a {
  display: block;
  padding: 10px 14px;
  font-size: 14px;
  color: var(--c-texto-primary);
  border-radius: var(--radius-sm);
}
.dropdown a:hover { background: var(--c-bege); color: var(--c-marinho); }
.dropdown-meta {
  font-family: var(--f-sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--c-acento-dark);
  padding: 8px 14px 4px;
  display: block;
}

.header-cta-group {
  display: flex;
  align-items: center;
  gap: 8px;
}
.header-cta {
  display: none;
}
@media (min-width: 1024px) {
  .header-cta {
    display: inline-flex;
    padding: 10px 20px;
    font-size: 13px;
    background: var(--c-marinho);
    color: var(--c-branco);
    border-radius: 999px;
    font-weight: 500;
    gap: 8px;
    align-items: center;
  }
  .header-cta:hover { background: var(--c-marinho-light); }
  .header-cta .arrow {
    width: 12px;
    height: 12px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
  }
}

.menu-toggle {
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  color: var(--c-marinho);
}
.site-header.is-dark .menu-toggle { color: var(--c-off-white); }
@media (min-width: 1024px) { .menu-toggle { display: none; } }

/* Mobile menu */
.mobile-menu {
  position: fixed;
  top: 0; right: 0; bottom: 0;
  width: 100%; max-width: 380px;
  background: var(--c-marinho);
  color: var(--c-off-white);
  z-index: 60;
  transform: translateX(100%);
  transition: transform var(--duration-base) var(--ease-out-quart);
  display: flex;
  flex-direction: column;
  padding: 20px;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
}
.mobile-menu.is-open { transform: translateX(0); }
.mobile-menu-overlay {
  position: fixed; inset: 0;
  background: rgba(23, 37, 73, 0.55);
  z-index: 55;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--duration-base) var(--ease-out-quart);
}
.mobile-menu-overlay.is-open { opacity: 1; pointer-events: auto; }
.mobile-menu-head {
  display: flex; align-items: center; justify-content: space-between;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  margin-bottom: 24px;
}
.mobile-menu-head .brand-name { color: var(--c-off-white); }
.mobile-menu-head .brand-line { color: rgba(250, 247, 242,0.5); }
.mobile-menu-close {
  width: 44px; height: 44px;
  color: var(--c-off-white);
  display: flex; align-items: center; justify-content: center;
}
.mobile-menu nav {
  display: flex;
  flex-direction: column;
  flex: 1;
}
.mobile-menu nav a {
  font-size: 20px;
  font-weight: 500;
  padding: 16px 0;
  color: var(--c-off-white);
  letter-spacing: -0.015em;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.mobile-menu nav a:last-child { border-bottom: none; }
.mobile-menu nav a:hover { color: var(--c-acento-light); }
.mobile-menu nav a .menu-num {
  font-family: var(--f-sans);
  font-size: 12px;
  font-weight: 700;
  color: var(--c-acento);
  letter-spacing: 0.08em;
}
/* Submenu nested under "Ensino" no menu mobile */
.mobile-submenu {
  display: flex;
  flex-direction: column;
  padding: 4px 0 8px 16px;
  margin-bottom: 4px;
  border-left: 2px solid rgba(232, 53, 45, 0.5);
  margin-left: 4px;
}
.mobile-menu nav .mobile-submenu .mobile-submenu-link {
  font-size: 15px;
  font-weight: 500;
  padding: 10px 0;
  border-bottom: none;
  color: rgba(255, 255, 255, 0.78);
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
}
.mobile-menu nav .mobile-submenu .mobile-submenu-link:hover { color: var(--c-acento-light); }
.mobile-menu nav .mobile-submenu .mobile-submenu-meta {
  font-family: var(--f-sans);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
}
.mobile-menu-cta {
  margin-top: 24px;
}

/* ============================================================
   Footer
   ============================================================ */
.site-footer {
  background: var(--c-marinho-dark);
  color: var(--c-off-white);
  padding: 96px 0 32px;
  border-top: 1px solid rgba(255,255,255,0.05);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  margin-bottom: 80px;
}
@media (min-width: 768px) {
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .footer-grid { grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 64px; }
}
.footer-col h4 {
  font-family: var(--f-sans);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--c-acento);
  margin-bottom: 24px;
}
.footer-brand .brand-mark { color: var(--c-off-white); margin-bottom: 24px; }
.footer-brand p {
  font-size: 14px;
  line-height: 1.65;
  color: rgba(250, 247, 242, 0.7);
  margin-bottom: 16px;
  max-width: 320px;
}
.footer-brand .slogan {
  font-family: var(--f-sans);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--c-acento-light);
  text-transform: uppercase;
}
.footer-list { display: flex; flex-direction: column; gap: 10px; }
.footer-list a {
  font-size: 14px;
  color: rgba(250, 247, 242, 0.78);
}
.footer-list a:hover { color: var(--c-acento); }
.footer-contact p { font-size: 14px; line-height: 1.65; color: rgba(250, 247, 242, 0.78); margin-bottom: 12px; }
.footer-contact a:hover { color: var(--c-acento); }
.footer-socials { display: flex; gap: 10px; margin-bottom: 24px; }
.footer-socials a {
  width: 36px; height: 36px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(250, 247, 242, 0.2);
  display: flex; align-items: center; justify-content: center;
  color: var(--c-off-white);
}
.footer-socials a:hover { border-color: var(--c-acento); color: var(--c-acento); }
.footer-bottom {
  border-top: 1px solid rgba(250, 247, 242, 0.08);
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-bottom p {
  font-family: var(--f-sans);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.02em;
  color: rgba(255,255,255,0.5);
  margin: 0;
}
.footer-bottom a:hover { color: var(--c-acento); }

/* ============================================================
   Reveal on scroll
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition:
    opacity var(--duration-reveal) var(--ease-out-quart),
    transform var(--duration-reveal) var(--ease-out-quart);
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.reveal[data-delay="1"] { transition-delay: 80ms; }
.reveal[data-delay="2"] { transition-delay: 160ms; }
.reveal[data-delay="3"] { transition-delay: 240ms; }
.reveal[data-delay="4"] { transition-delay: 320ms; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; }
  * { transition-duration: 0.01ms !important; animation-duration: 0.01ms !important; }
}

/* ============================================================
   Editorial markers
   ============================================================ */
.section-marker {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
  padding: 8px 16px;
  background: var(--c-acento);
  border-radius: 999px;
}
.section-marker .marker-num {
  font-family: var(--f-sans);
  font-size: 12px;
  font-weight: 700;
  color: var(--c-branco);
  letter-spacing: 0.06em;
}
.section-marker .marker-line {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--c-branco);
  flex: none;
  max-width: none;
}
.section-marker .marker-label {
  font-family: var(--f-sans);
  font-size: 12px;
  font-weight: 700;
  color: var(--c-branco);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.section-marker.is-dark {
  background: var(--c-acento);
}
.section-marker.is-dark .marker-num,
.section-marker.is-dark .marker-line,
.section-marker.is-dark .marker-label { color: var(--c-branco); background: transparent; }
.section-marker.is-dark .marker-line { background: var(--c-branco); }

/* Caption pattern */
.caption {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--c-texto-muted);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.caption::before {
  content: '';
  width: 18px;
  height: 1px;
  background: var(--c-acento);
}

/* ============================================================
   Placeholders (PENDENTE DE COLETA) — editorial style
   ============================================================ */
.img-ph {
  position: relative;
  overflow: hidden;
  background: var(--c-bege);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 20px;
  border-radius: var(--radius-sm);
}
.img-ph::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(0deg, var(--c-bege-warm), transparent 60%),
    radial-gradient(circle at 50% 50%, rgba(232, 53, 45, 0.28) 0%, rgba(232, 53, 45, 0) 65%);
}
.img-ph.is-dark {
  background: var(--c-marinho-light);
  color: rgba(255,255,255,0.85);
}
.img-ph.is-dark::before {
  background-image:
    linear-gradient(0deg, var(--c-marinho-dark), transparent 60%),
    radial-gradient(circle at 50% 50%, rgba(232, 53, 45, 0.18) 0%, rgba(232, 53, 45, 0) 65%);
}
.img-ph .ph-corner {
  position: relative;
  font-family: var(--f-sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--c-branco);
  background: var(--c-acento);
  padding: 6px 12px;
  border-radius: 999px;
  align-self: flex-start;
  z-index: 1;
}
.img-ph.is-dark .ph-corner {
  color: var(--c-branco);
  background: var(--c-acento);
}
.img-ph .ph-bottom {
  position: relative;
  font-family: var(--f-sans);
  font-size: 12px;
  font-weight: 600;
  color: var(--c-marinho);
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 10px;
}
.img-ph.is-dark .ph-bottom { color: var(--c-branco); }
.img-ph .ph-bottom::before {
  content: '';
  width: 16px;
  height: 2px;
  background: var(--c-acento);
}
.img-ph.is-dark .ph-bottom::before { background: var(--c-acento); }

/* Pending block (text) */
.pending-block {
  border-left: 4px solid var(--c-acento);
  padding: 24px 24px 24px 28px;
  background: rgba(232, 53, 45, 0.08);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
}
.pending-block .ph-label {
  font-family: var(--f-sans);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--c-acento-dark);
  margin-bottom: 12px;
  display: block;
}
.pending-block p {
  font-size: 14px;
  line-height: 1.65;
  color: var(--c-texto-secondary);
}

/* ============================================================
   Utility
   ============================================================ */
.text-center { text-align: center; }
.no-scroll { overflow: hidden; }
.measure { max-width: 640px; }
.measure-wide { max-width: 760px; }
.measure-narrow { max-width: 540px; }

/* Two-col content layout */
.two-col {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: start;
}
@media (min-width: 1024px) {
  .two-col {
    grid-template-columns: 1fr 1fr;
    gap: 80px;
  }
}
.two-col.reverse > :first-child { order: 2; }
@media (min-width: 1024px) {
  .two-col.reverse > :first-child { order: 0; }
  .two-col.reverse { grid-template-columns: 5fr 7fr; }
}

/* Mobile/tablet: imagens vêm antes do conteúdo nas seções com two-col */
@media (max-width: 1023px) {
  .two-col > .image-col,
  .two-col > .image-col-real {
    order: -1;
  }
  .two-col > .text-col {
    order: 0;
  }
}

.text-col { max-width: 560px; }
.text-col .display-3 { color: var(--c-marinho); margin: 24px 0 32px; }
.text-col p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--c-texto-primary);
  margin-bottom: 18px;
}

/* Image col — foto real preenche, com cantos arredondados */
.image-col-real {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  max-height: 520px;
  object-fit: cover;
  object-position: center;
  border-radius: 16px;
  display: block;
}
@media (min-width: 1024px) {
  .image-col-real {
    aspect-ratio: 5 / 4;
    max-height: none;
    min-height: 420px;
  }
}
.text-col p:last-child { margin-bottom: 0; }

.image-col {
  position: relative;
}
.image-col > .image-col-real {
  display: block;
}
