:root {
  /* 8pt grid: 4, 8, 12, 16, 24, 32, 40, 48, 64, 80, 96 */
  --space-1: 0.25rem;   /* 4px */
  --space-2: 0.5rem;    /* 8px */
  --space-3: 0.75rem;   /* 12px */
  --space-4: 1rem;      /* 16px */
  --space-5: 1.25rem;   /* 20px */
  --space-6: 1.5rem;    /* 24px */
  --space-8: 2rem;      /* 32px */
  --space-10: 2.5rem;   /* 40px */
  --space-12: 3rem;     /* 48px */
  --space-16: 4rem;     /* 64px */
  --space-20: 5rem;     /* 80px */
  --space-24: 6rem;     /* 96px */

  --bg: #000000;
  --primary: #c01219;
  --primary-hover: #a00f15;
  --primary-light: #e01c25;
  --primary-90: rgba(192, 18, 25, 0.9);
  --primary-80: rgba(192, 18, 25, 0.8);
  --primary-70: rgba(192, 18, 25, 0.7);
  --primary-20: rgba(192, 18, 25, 0.2);

  --teal: #21201e;
  --teal-90: rgba(33, 32, 30, 0.9);
  --teal-80: rgba(33, 32, 30, 0.8);
  --teal-70: rgba(33, 32, 30, 0.7);

  --charcoal: #393636;
  --charcoal-90: rgba(57, 54, 54, 0.9);
  --charcoal-80: rgba(57, 54, 54, 0.8);
  --charcoal-70: rgba(57, 54, 54, 0.7);

  --white: #ffffff;
  --text-primary: rgba(255, 255, 255, 0.95);
  --text-muted: rgba(255, 255, 255, 0.78);
  --text-subtle: rgba(255, 255, 255, 0.6);

  --glass-border: rgba(255, 255, 255, 0.12);
  --refraction: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0) 50%, rgba(255,255,255,0.05) 100%);

  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --border-radius: var(--radius-sm);

  /* Easing: ease-out para entrada, ease-in para saída (UX) */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in: cubic-bezier(0.7, 0, 0.84, 0);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);

  --transition-fast: 150ms var(--ease-out);
  --transition-base: 200ms var(--ease-out);
  --transition: 250ms var(--ease-out);
  --transition-slow: 350ms var(--ease-out);

  --quem-somos-hero-bg: var(--teal);
}

@media (prefers-reduced-motion: reduce) {
  :root {
    --transition-fast: 0ms;
    --transition-base: 0ms;
    --transition: 0ms;
    --transition-slow: 0ms;
  }
}

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

html {
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}

html, body {
  margin: 0;
  padding: 0;
  width: 100%;
  max-width: 100vw;
  overflow-x: hidden;
}

body {
  background-color: var(--bg);
  color: var(--white);
  font-family: 'Inter', sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
  min-height: 100vh;
  max-width: 100vw;
  position: relative;
}

/* Custom Cursor */
#cursor-glow {
  position: fixed;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(192, 18, 25, 0.12) 0%, rgba(8, 27, 34, 0) 70%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: width 0.25s var(--ease-out), height 0.25s var(--ease-out);
  opacity: 0;
}

body.cursor-active #cursor-glow {
  opacity: 1;
}

@media (prefers-reduced-motion: reduce) {
  #cursor-glow,
  #cursor-dot {
    display: none !important;
  }
}

#cursor-dot {
  position: fixed;
  width: 8px;
  height: 8px;
  background: var(--primary);
  border-radius: 50%;
  pointer-events: none;
  z-index: 10000;
  transform: translate(-50%, -50%);
  box-shadow: 0 0 15px var(--primary);
  opacity: 0;
  transition: transform 0.2s;
}

body.cursor-active #cursor-dot {
  opacity: 1;
}

/* Page loader (home): esconde quando imagens críticas carregarem */
.page-loader {
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.page-loader.page-loader-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.page-loader-inner {
  text-align: center;
}

.page-loader-spinner {
  width: 48px;
  height: 48px;
  margin: 0 auto 1rem;
  border: 3px solid var(--charcoal);
  border-top-color: var(--primary);
  border-radius: 50%;
  animation: page-loader-spin 0.85s linear infinite;
}

@keyframes page-loader-spin {
  to { transform: rotate(360deg); }
}

.page-loader-text {
  color: var(--white);
  font-size: 0.95rem;
  font-weight: 400;
}

.whatsapp-widget {
  position: fixed;
  right: 1.25rem;
  bottom: 1.25rem;
  z-index: 9500;
  font-family: inherit;
}

.whatsapp-toggle {
  width: 56px;
  height: 56px;
  border-radius: 999px;
  border: none;
  background: #25d366;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.45);
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.whatsapp-toggle i {
  font-size: 1.6rem;
}

.whatsapp-widget.is-open .whatsapp-toggle {
  background: #1ebe5d;
  transform: translateY(2px) scale(0.96);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.whatsapp-menu {
  position: absolute;
  right: 0;
  bottom: 68px;
  background: rgba(33, 32, 30, 0.88);
  backdrop-filter: blur(22px) saturate(160%);
  -webkit-backdrop-filter: blur(22px) saturate(160%);
  border-radius: 18px;
  padding: 0.9rem 0.85rem 0.85rem;
  min-width: 230px;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.08);
  opacity: 0;
  transform: translateY(12px) scale(0.96);
  transform-origin: bottom right;
  pointer-events: none;
  transition: opacity 0.22s ease-out, transform 0.22s ease-out;
}

.whatsapp-widget.is-open .whatsapp-menu {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.whatsapp-menu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.45rem;
}

.whatsapp-menu-title {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.65);
}

.whatsapp-menu-close {
  width: 28px;
  height: 28px;
  border-radius: 999px;
  border: none;
  background: transparent;
  color: rgba(255, 255, 255, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.whatsapp-menu-close:hover {
  color: var(--primary);
  background: rgba(192, 18, 25, 0.08);
  transform: scale(1.05);
}

.whatsapp-options {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.whatsapp-option {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.55rem 0.6rem;
  border-radius: 12px;
  text-decoration: none;
  color: #ffffff;
  transition: background 0.2s ease, transform 0.2s ease;
}

.whatsapp-option:hover {
  background: rgba(255, 255, 255, 0.06);
  transform: translateY(-1px);
}

.whatsapp-option-icon {
  width: 30px;
  height: 30px;
  border-radius: 999px;
  background: rgba(37, 211, 102, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #25d366;
}

.whatsapp-option-icon i {
  font-size: 1.2rem;
}

.whatsapp-option-text strong {
  display: block;
  font-size: 0.9rem;
}

.whatsapp-option-text small {
  display: block;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.65);
}

@media (max-width: 768px) {
  .whatsapp-widget {
    right: 1rem;
    bottom: 1rem;
  }

  .whatsapp-menu {
    right: 0;
    bottom: 64px;
    min-width: 210px;
  }
}

.container {
  max-width: min(1200px, 100%);
  margin: 0 auto;
  padding: var(--space-16) var(--space-8);
  width: 100%;
  box-sizing: border-box;
}

/* Header ? p?lula esticada */
.header {
  position: fixed;
  top: 1rem;
  left: 50%;
  transform: translateX(-50%);
  width: fit-content;
  max-width: calc(100% - 2rem);
  background: var(--charcoal-80);
  backdrop-filter: blur(15px) saturate(180%);
  -webkit-backdrop-filter: blur(15px) saturate(180%);
  padding: 0.65rem 1.2rem;
  border-radius: 9999px;
  border: 1px solid var(--glass-border);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  z-index: 1000;
  transition: var(--transition);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
  overflow: visible;
}

.logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.logo a {
  display: flex;
  align-items: center;
  text-decoration: none;
  height: 50px;
}

.logo-img {
  height: 50px;
  width: auto;
  max-width: 200px;
  display: block;
  object-fit: contain;
  opacity: 1;
}

/* Remove filtro para SVGs */
.logo-img[src*="ISOTIPO.svg"],
.logo-img[src*="ISOTIPO"] {
  filter: none !important;
}

/* Mant?m filtro apenas para PNGs antigos */
.logo-img[src*=".png"] {
  filter: brightness(0) invert(1);
}

.footer-logo {
  max-width: 200px;
  width: 100%;
  height: auto;
  margin-bottom: 1rem;
  filter: brightness(0) invert(1);
}

.nav {
  flex: 1;
  min-width: 0;
  overflow: visible;
  display: flex;
  justify-content: flex-end;
}

.nav-list {
  display: flex;
  list-style: none;
  gap: 0.5rem;
  align-items: center;
  flex-wrap: nowrap;
  position: relative;
}

.nav-link {
  color: var(--white);
  text-decoration: none;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  opacity: 0.6;
  transition: opacity var(--transition-base), color var(--transition-base);
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  white-space: nowrap;
  flex-shrink: 1;
  min-width: 0;
  cursor: pointer;
  border-radius: var(--radius-md);
  padding: 0.25rem 0.4rem;
}

.nav-link:hover,
.nav-link.active {
  opacity: 1;
  color: var(--primary);
}

.nav-link:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
}

.nav-link.btn-nav {
  background: var(--primary);
  color: var(--white) !important;
  padding: var(--space-2) var(--space-4);
  border-radius: var(--radius-md);
  opacity: 1;
  flex-shrink: 0;
  white-space: nowrap;
}

.nav-link.btn-nav:hover {
  background: var(--primary-hover);
  color: var(--white) !important;
  transform: translateY(-2px);
}

.nav-link.btn-nav:focus-visible {
  outline: 2px solid var(--white);
  outline-offset: 2px;
}

/* Dropdown Menu */
.nav-dropdown {
  position: relative;
  cursor: pointer;
}

/* Ponte invis?vel entre o link e o dropdown para n?o perder o hover ao mover o mouse */
.nav-dropdown::after {
  content: '';
  position: absolute;
  top: 100%;
  left: -10px;
  right: -10px;
  height: 0.6rem;
}

.nav-dropdown > .nav-link {
  cursor: pointer;
}

.nav-dropdown > .nav-link i {
  font-size: 0.7rem;
  transition: transform 0.3s;
}

.nav-dropdown:hover > .nav-link i {
  transform: rotate(180deg);
}

.dropdown-menu {
  position: absolute;
  top: calc(100% + 0.25rem);
  left: 50%;
  transform: translateX(-50%);
  background: #393636;
  backdrop-filter: blur(20px) saturate(180%);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  padding: var(--space-2) 0;
  min-width: max-content;
  width: max-content;
  max-width: min(380px, 92vw);
  list-style: none;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s, visibility 0.2s;
  z-index: 1001;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  pointer-events: none;
}

/* ?rea invis?vel acima do dropdown para manter hover ao descer o mouse */
.dropdown-menu::before {
  content: '';
  position: absolute;
  top: -0.4rem;
  left: -15px;
  right: -15px;
  height: 0.4rem;
  background: transparent;
}

.nav-dropdown:hover .dropdown-menu,
.nav-dropdown.open .dropdown-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
}

/* Manter dropdown vis?vel quando hover est? no dropdown */
.dropdown-menu:hover {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
}

.dropdown-menu li {
  margin: 0;
  text-align: center;
  list-style: none;
}

.dropdown-menu a {
  display: block;
  padding: var(--space-3) var(--space-6);
  color: var(--white);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: none;
  letter-spacing: 0;
  transition: background var(--transition-base), color var(--transition-base), opacity var(--transition-base);
  opacity: 0.8;
  text-align: center;
  white-space: nowrap;
  width: 100%;
  box-sizing: border-box;
  cursor: pointer;
}

.dropdown-menu a:hover {
  background: var(--primary-20);
  color: var(--primary);
  opacity: 1;
}

.dropdown-menu a:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: -2px;
}

.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  padding: var(--space-2);
  z-index: 1001;
  min-width: 44px;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-md);
  transition: background var(--transition-base);
}

.mobile-menu-toggle:hover {
  background: rgba(255, 255, 255, 0.08);
}

.mobile-menu-toggle:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
}

.mobile-menu-toggle span {
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: var(--transition);
  display: block;
}


/* Hero Parchment */
.parchment-hero-section {
  margin-top: 0;
  position: relative;
  width: 100%;
  padding: 0;
  margin: 0;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg);
  overflow: hidden;
  opacity: 0;
  transform: translateY(24px);
  transition: none;
}

/* Animação de entrada do hero (ease-out para entrada - UX) */
.parchment-hero-section.hero-entrance {
  animation: heroEntrance 0.9s var(--ease-out) forwards;
}

@keyframes heroEntrance {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .parchment-hero-section.hero-entrance {
    animation: none;
    opacity: 1;
    transform: none;
  }
}

.parchment-hero {
  position: relative;
  width: 100%;
  height: 100vh;
  max-width: none;
  margin: 0;
  overflow: hidden;
  background-color: var(--bg);
  background-image:
    radial-gradient(circle at 18% 20%, rgba(192, 18, 25, 0.22) 0, transparent 55px),
    radial-gradient(circle at 82% 28%, rgba(192, 18, 25, 0.18) 0, transparent 60px),
    radial-gradient(circle at 30% 78%, rgba(192, 18, 25, 0.16) 0, transparent 50px),
    radial-gradient(circle at 72% 82%, rgba(192, 18, 25, 0.20) 0, transparent 65px);
  display: flex;
  align-items: center;
  justify-content: center;
}

/* SVG Noise Texture Overlay */
.parchment-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 10;
  opacity: 0.22;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
  mix-blend-mode: soft-light;
}

/* Part?culas Animadas */
.parchment-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 5;
  pointer-events: none;
  background-image: 
    radial-gradient(2px 2px at 20% 30%, rgba(192, 18, 25, 0.4), transparent),
    radial-gradient(2px 2px at 60% 70%, rgba(192, 18, 25, 0.35), transparent),
    radial-gradient(1px 1px at 50% 50%, rgba(192, 18, 25, 0.5), transparent),
    radial-gradient(1px 1px at 80% 10%, rgba(192, 18, 25, 0.4), transparent),
    radial-gradient(2px 2px at 90% 50%, rgba(192, 18, 25, 0.3), transparent),
    radial-gradient(1px 1px at 33% 60%, rgba(192, 18, 25, 0.45), transparent),
    radial-gradient(1px 1px at 66% 20%, rgba(192, 18, 25, 0.4), transparent),
    radial-gradient(2px 2px at 10% 80%, rgba(192, 18, 25, 0.35), transparent),
    radial-gradient(1px 1px at 40% 90%, rgba(192, 18, 25, 0.5), transparent),
    radial-gradient(2px 2px at 70% 40%, rgba(192, 18, 25, 0.3), transparent);
  background-size: 200% 200%;
  animation: particleMove 35s var(--ease-in-out) infinite;
  opacity: 0.35;
}

@keyframes particleMove {
  0%, 100% {
    background-position: 0% 0%, 100% 100%, 50% 50%, 80% 20%, 20% 80%, 30% 70%, 70% 30%, 10% 90%, 90% 10%, 60% 40%;
  }
  25% {
    background-position: 100% 50%, 0% 50%, 50% 100%, 20% 80%, 80% 20%, 70% 30%, 30% 70%, 90% 10%, 10% 90%, 40% 60%;
  }
  50% {
    background-position: 50% 100%, 50% 0%, 0% 50%, 80% 60%, 20% 40%, 30% 20%, 70% 80%, 10% 50%, 90% 50%, 60% 20%;
  }
  75% {
    background-position: 100% 0%, 0% 100%, 100% 50%, 60% 80%, 40% 20%, 20% 50%, 80% 50%, 50% 10%, 50% 90%, 20% 60%;
  }
}

/* Efeito de partículas em seções com fundo preto/escuro */
.bg-particles,
.cursos-section,
.areas-section,
.form-section,
.historia-section,
.blog-section,
.quote-section,
.valores-section,
.footer,
.prevest-metodo,
.prevest-aprovados {
  position: relative;
  overflow: hidden;
}

.bg-particles::after,
.cursos-section::after,
.areas-section::after,
.form-section::after,
.historia-section::after,
.blog-section::after,
.quote-section::after,
.valores-section::after,
.footer::after,
.prevest-metodo::after,
.prevest-aprovados::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image:
    radial-gradient(3px 3px at 20% 30%, rgba(192, 18, 25, 0.5), transparent),
    radial-gradient(3px 3px at 60% 70%, rgba(192, 18, 25, 0.45), transparent),
    radial-gradient(2px 2px at 50% 50%, rgba(192, 18, 25, 0.6), transparent),
    radial-gradient(2px 2px at 80% 10%, rgba(192, 18, 25, 0.5), transparent),
    radial-gradient(3px 3px at 90% 50%, rgba(192, 18, 25, 0.4), transparent),
    radial-gradient(2px 2px at 33% 60%, rgba(192, 18, 25, 0.55), transparent),
    radial-gradient(2px 2px at 66% 20%, rgba(192, 18, 25, 0.5), transparent),
    radial-gradient(3px 3px at 10% 80%, rgba(192, 18, 25, 0.45), transparent),
    radial-gradient(2px 2px at 40% 90%, rgba(192, 18, 25, 0.6), transparent),
    radial-gradient(3px 3px at 70% 40%, rgba(192, 18, 25, 0.4), transparent);
  background-size: 200% 200%;
  animation: particleMove 40s var(--ease-in-out) infinite;
  opacity: 0.5;
}

.bg-particles .container,
.bg-particles > *,
.cursos-section .container,
.areas-section .container,
.form-section .container,
.historia-section .container,
.blog-section .container,
.quote-section .container,
.valores-section .container,
.footer .container,
.footer .footer-content,
.footer .footer-bottom,
.prevest-metodo .container,
.prevest-aprovados .container {
  position: relative;
  z-index: 1;
}

@media (prefers-reduced-motion: reduce) {
  .parchment-hero::after,
  .bg-particles::after,
  .cursos-section::after,
  .areas-section::after,
  .form-section::after,
  .historia-section::after,
  .blog-section::after,
  .quote-section::after,
  .valores-section::after,
  .footer::after,
  .prevest-metodo::after,
  .prevest-aprovados::after {
    animation: none;
    opacity: 0.4;
  }
}

/* Anima??o de part?culas flutuantes */
@keyframes floatParticle {
  0% {
    transform: translate(0, 0) scale(1);
    opacity: 0.3;
  }
  25% {
    transform: translate(30px, -50px) scale(1.2);
    opacity: 0.6;
  }
  50% {
    transform: translate(-20px, -80px) scale(0.8);
    opacity: 0.4;
  }
  75% {
    transform: translate(40px, -30px) scale(1.1);
    opacity: 0.7;
  }
  100% {
    transform: translate(0, 0) scale(1);
    opacity: 0.3;
  }
}

.carousel-viewport {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-slide {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.6s var(--ease-out), transform 0.6s var(--ease-out);
  padding: var(--space-16);
  z-index: 1;
  transform: translateY(20px);
  background-size: 0;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-slide.active {
  opacity: 1;
  pointer-events: all;
  z-index: 2;
  transform: translateY(0);
  transition: opacity 0.6s var(--ease-out) 0.2s, transform 0.6s var(--ease-out) 0.2s;
}

/* The Translucent Parchment Card */
.parchment-layer {
  position: relative;
  width: 80%;
  max-width: 1200px;
  min-height: 60%;
  background: rgba(33, 32, 30, 0.78);
  backdrop-filter: blur(20px) contrast(1.1) brightness(0.95);
  -webkit-backdrop-filter: blur(20px) contrast(1.1) brightness(0.95);
  border: 1px solid rgba(192, 18, 25, 0.35);
  border-radius: var(--radius-lg);
  box-shadow:
    0 30px 60px -12px rgba(0, 0, 0, 0.5),
    inset 0 0 100px rgba(192, 18, 25, 0.08),
    0 0 0 1px rgba(255, 255, 255, 0.05);
  padding: var(--space-16);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  transform: translateY(20px);
  transition: transform var(--transition-slow), opacity var(--transition-slow);
}

.hero-slide.active .parchment-layer {
  transform: translateY(0);
}

/* Background Image */
.parchment-layer-bg {
  position: absolute;
  inset: 0;
  opacity: 0.15;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  mix-blend-mode: overlay;
  z-index: -1;
}

/* Typography & Content */
.slide-meta {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--primary);
  margin-bottom: var(--space-6);
  display: block;
  text-align: center;
  line-height: 1.8;
  transform: translateY(16px);
  opacity: 0;
  transition: transform 0.5s var(--ease-out), opacity 0.5s var(--ease-out);
  transition-delay: 0.15s;
}

.slide-title {
  font-family: 'Outfit', 'Inter', sans-serif;
  font-size: clamp(2.75rem, 8vw, 5.5rem);
  font-weight: 800;
  line-height: 1.15;
  color: var(--white);
  margin: 0 auto var(--space-8);
  max-width: 900px;
  width: 100%;
  text-align: center;
  transform: translateY(24px);
  opacity: 0;
  transition: transform 0.55s var(--ease-out), opacity 0.55s var(--ease-out);
  transition-delay: 0.25s;
  background: linear-gradient(to bottom, #fff 45%, rgba(255,255,255,0.75));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  white-space: pre-line;
  word-wrap: break-word;
  overflow-wrap: break-word;
  letter-spacing: -0.03em;
}

.slide-description {
  font-family: 'Inter', sans-serif;
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255, 255, 255, 0.75);
  max-width: 560px;
  line-height: 1.75;
  text-align: center;
  margin: 0 auto;
  transform: translateY(20px);
  opacity: 0;
  transition: transform 0.5s var(--ease-out), opacity 0.5s var(--ease-out);
  transition-delay: 0.35s;
}

.hero-slide.active .slide-meta,
.hero-slide.active .slide-title,
.hero-slide.active .slide-description {
  transform: translateY(0);
  opacity: 1;
}

/* Floating Abstract Elements */
.floating-element {
  position: absolute;
  z-index: 0;
  background: rgba(192, 18, 25, 0.1);
  border: 1px solid rgba(192, 18, 25, 0.2);
  pointer-events: none;
  transition: opacity 0.5s var(--ease-out), transform 0.5s var(--ease-out), border-color 0.5s var(--ease-out);
  opacity: 0;
}

/* Formas diferentes */
.floating-element.shape-circle {
  border-radius: 50%;
}

.floating-element.shape-square {
  border-radius: 8px;
}

.floating-element.shape-blob {
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  animation: blobMorph 12s var(--ease-in-out) infinite;
}

@keyframes blobMorph {
  0%, 100% {
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  }
  50% {
    border-radius: 50% 50% 33% 67% / 55% 27% 73% 45%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .floating-element.shape-blob {
    animation: none;
  }
}

.hero-slide .el-1 { 
  width: 300px; 
  height: 300px; 
  top: -10%; 
  right: 10%; 
  transition-delay: 0.1s; 
  transform: translate(0, 0);
}

.hero-slide .el-2 { 
  width: 150px; 
  height: 150px; 
  bottom: 5%; 
  left: 5%; 
  transition-delay: 0.3s; 
  transform: translate(0, 0);
}

/* Quando slide est? ativo, mostrar e animar elementos */
.hero-slide.active .el-1 { 
  opacity: 1;
  transform: translate(-20px, 30px); 
}

.hero-slide.active .el-2 { 
  opacity: 1;
  transform: translate(40px, -20px); 
}

/* Rota??o para quadrados quando ativo */
.hero-slide.active .el-1.shape-square { 
  transform: translate(-20px, 30px) rotate(45deg); 
}

.hero-slide.active .el-2.shape-square { 
  transform: translate(40px, -20px) rotate(45deg); 
}

/* Navigation Controls */
.hero-controls {
  position: absolute;
  bottom: 3rem;
  right: 3rem;
  display: flex;
  gap: 1.5rem;
  align-items: center;
  z-index: 20;
}

.hero-nav-btn {
  background: rgba(33, 32, 30, 0.8);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--white);
  width: 48px;
  height: 48px;
  min-width: 48px;
  min-height: 48px;
  border-radius: 50%;
  cursor: pointer;
  font-family: 'JetBrains Mono', monospace;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition-base), border-color var(--transition-base), transform var(--transition-base);
  font-size: 1rem;
}

.hero-nav-btn:hover {
  background: var(--primary);
  border-color: var(--primary);
  transform: scale(1.08);
  color: var(--white);
}

.hero-nav-btn:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
}

.hero-dots {
  position: absolute;
  bottom: 3rem;
  left: 3rem;
  display: flex;
  gap: var(--space-4);
  z-index: 20;
}

.hero-dot {
  width: 40px;
  height: 3px;
  background: rgba(255, 255, 255, 0.3);
  cursor: pointer;
  transition: background var(--transition-base), width var(--transition-base);
  border-radius: 2px;
}

.hero-dot:hover {
  background: rgba(255, 255, 255, 0.5);
}

.hero-dot.active {
  background: var(--primary);
  width: 64px;
}

/* Glass Cards - padronizado #393636 */
.glass-card {
  background: #393636;
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  padding: var(--space-6);
  position: relative;
  overflow: hidden;
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
  box-shadow: 0 20px 40px rgba(0,0,0,0.4);
  cursor: default;
}

.glass-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: var(--refraction);
  pointer-events: none;
}

.glass-card:hover {
  transform: translateY(-4px);
  border-color: var(--primary-70);
  box-shadow: 0 24px 48px rgba(0,0,0,0.45), 0 0 0 1px var(--primary-20);
}

/* Remove efeito 3D do formul?rio (mant?m apenas o glass est?tico) */
.form.glass-card,
.form.glass-card:hover {
  transform: none;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
  border-color: var(--glass-border);
}

/* Typography */
.tag {
  font-family: 'JetBrains Mono', monospace;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.25em;
  font-size: 0.75rem;
  font-weight: 600;
  display: block;
  margin-bottom: var(--space-4);
  text-align: center;
}

h1 {
  font-family: 'Outfit', 'Inter', sans-serif;
  font-size: clamp(2.75rem, 7vw, 5rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: var(--space-8);
  background: linear-gradient(to bottom, #fff 45%, rgba(255,255,255,0.75));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.03em;
  text-align: center;
}

h2 {
  font-family: 'Outfit', 'Inter', sans-serif;
  font-size: clamp(1.75rem, 4.5vw, 3rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: var(--space-6);
  letter-spacing: -0.02em;
}

h3 {
  font-family: 'Outfit', 'Inter', sans-serif;
  font-size: clamp(1.25rem, 3.5vw, 2rem);
  font-weight: 600;
  margin-bottom: var(--space-4);
  letter-spacing: -0.01em;
}

p {
  color: rgba(255,255,255,0.6);
  font-size: 1.1rem;
  line-height: 1.8;
}

/* Sections */
.cursos-section {
  padding: 0 0;
  position: relative;
  background: var(--teal);
}

/* Hero da p?gina Quem Somos: mais padding e fundo edit?vel */
.quem-somos-hero {
  padding: 137px 0 5rem;
  background: var(--quem-somos-hero-bg) !important;
}

.quem-somos-hero .container {
  padding-top: 2rem;
  padding-bottom: 2rem;
}

.areas-section {
  padding: 0 0;
  position: relative;
  background: var(--bg);
}

.form-section {
  padding: 0 0;
  position: relative;
  background: var(--teal);
}

.historia-section {
  padding: 4rem 0;
  position: relative;
  background: var(--bg);
}

.historia-section .container {
  padding: 0 2rem;
}

.blog-section {
  padding: 0 0;
  position: relative;
  background: var(--teal);
}

.cursos-grid,
.areas-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-6);
  margin-top: var(--space-12);
}

.curso-card {
  background: #393636 !important;
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  padding: var(--space-6);
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
  box-shadow: 0 20px 40px rgba(0,0,0,0.4);
  cursor: pointer;
}

.curso-card.glass-card {
  background: #393636 !important;
}

.area-card {
  background: #393636;
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  padding: var(--space-6);
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
  box-shadow: 0 20px 40px rgba(0,0,0,0.4);
  cursor: pointer;
}

.curso-card::before,
.area-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: var(--refraction);
  pointer-events: none;
}

.curso-card:hover,
.area-card:hover {
  transform: translateY(-4px);
  border-color: var(--primary-70);
  box-shadow: 0 24px 48px rgba(0,0,0,0.45), 0 0 0 1px var(--primary-20);
}

.curso-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1rem;
}

.curso-icon,
.area-icon {
  margin: 1rem 0;
}

.curso-icon i,
.area-icon i {
  font-size: 3rem;
  color: var(--primary);
  display: block;
}

.area-card h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.8rem;
}

.area-card p {
  overflow-wrap: break-word;
  word-break: break-word;
  min-width: 0;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  min-height: 44px;
  padding: var(--space-3) var(--space-8);
  background: var(--primary);
  color: var(--white);
  text-decoration: none;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.75rem;
  border: none;
  position: relative;
  transition: background var(--transition-base), color var(--transition-base), transform var(--transition-base), padding var(--transition-base);
  clip-path: polygon(8% 0, 100% 0, 92% 100%, 0% 100%);
  cursor: pointer;
  border-radius: var(--radius-sm);
}

.btn:hover {
  background: var(--white);
  color: var(--bg);
  padding-left: var(--space-10);
}

.btn:active {
  transform: scale(0.98);
}

.btn:focus-visible {
  outline: 2px solid var(--white);
  outline-offset: 2px;
}

.btn-secondary {
  background: transparent;
  border: 1px solid var(--white);
  clip-path: none;
  backdrop-filter: blur(5px);
}

.btn-secondary:hover {
  background: var(--white);
  color: var(--bg);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
  clip-path: none;
}

.btn-outline:hover {
  background: var(--white);
  color: var(--bg);
}

.btn i {
  transition: transform var(--transition-base);
}

.btn:hover i {
  transform: translateX(3px);
}

/* Form - background j? definido acima */

.form-header {
  margin-bottom: 3rem;
  text-align: center;
}


.form-title {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  align-items: center;
}

.form-title i {
  font-size: 2rem;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.title-primary {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 900;
  color: var(--white);
  text-align: center;
}

.title-secondary {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 900;
  color: var(--primary);
  text-align: center;
}

.form {
  max-width: 800px;
  margin: 0 auto;
}

#formEntrevista {
  background-color: #393636;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

.input-group {
  position: relative;
  margin-bottom: 2rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  width: 100%;
  min-width: 0;
}

.form-group label {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 0.5rem;
}

input {
  width: 100%;
  min-width: 0;
  min-height: 44px;
  box-sizing: border-box;
  background: rgba(57, 54, 54, 0.5);
  border: 2px solid var(--glass-border);
  border-radius: var(--radius-md);
  padding: var(--space-3) var(--space-4);
  color: var(--white);
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  transition: border-color var(--transition-base), box-shadow var(--transition-base), background var(--transition-base);
}

input:focus,
input:focus-visible {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px var(--primary-20);
  background: rgba(57, 54, 54, 0.7);
}

input::placeholder {
  color: rgba(255,255,255,0.4);
}

textarea {
  width: 100%;
  background: rgba(57, 54, 54, 0.5);
  border: 2px solid var(--glass-border);
  border-radius: 6px;
  padding: 0.75rem 1rem;
  color: var(--white);
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  transition: border-color var(--transition-base), box-shadow var(--transition-base), background var(--transition-base);
  resize: vertical;
  min-height: 120px;
}

textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(192, 18, 25, 0.2);
  background: rgba(57, 54, 54, 0.7);
}

textarea::placeholder {
  color: rgba(255,255,255,0.4);
}

/* Select estilizado */
select {
  width: 100%;
  min-height: 44px;
  cursor: pointer;
  background-color: rgba(57, 54, 54, 0.5);
  border: 2px solid var(--glass-border);
  border-radius: var(--radius-md);
  padding: var(--space-3) 2.5rem var(--space-3) var(--space-4);
  color: var(--white);
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  line-height: 1.2;
  transition: border-color var(--transition-base), box-shadow var(--transition-base), background var(--transition-base);
}

select:focus,
select:focus-visible {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px var(--primary-20);
  background-color: rgba(57, 54, 54, 0.7);
}

/* Dropdown options */
select option {
  background: #393636;
  color: var(--white);
}

select option[disabled],
select option[value=""] {
  color: rgba(255,255,255,0.5);
}

.checkbox-group {
  grid-column: 1 / -1;
}

.checkbox-group label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  text-transform: none;
  letter-spacing: normal;
}

.checkbox-group input[type="checkbox"] {
  margin-top: 5px;
  cursor: pointer;
  width: auto;
}

.checkbox-group a {
  color: var(--primary);
  text-decoration: none;
}

.checkbox-group a:hover {
  text-decoration: underline;
}

.form-actions {
  text-align: end;
  margin-top: var(--space-8);
}

.btn-submit {
  min-height: 48px;
  padding: var(--space-3) var(--space-10);
}

.form-message {
  margin-top: 2rem;
  padding: 1.5rem;
  border-radius: var(--border-radius);
  display: none;
  border: 1px solid var(--glass-border);
}

.form-message.success {
  background: #393636;
  color: var(--white);
  border-color: var(--primary);
  display: block;
}

.form-message.error {
  background: #393636;
  color: var(--primary);
  border-color: var(--primary);
  display: block;
}

/* Hist?ria Section - background j? definido acima */

.historia-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  justify-content: center;
}

/* Card ?nico (ex.: Nossa trajet?ria) centralizado em desktop e telas m?dias */
.historia-content > *:only-child {
  grid-column: 1 / -1;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  justify-self: center;
}

.historia-title {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 900;
  color: var(--white);
  margin-bottom: 0.5rem;
  text-align: center;
}

.historia-subtitle {
  font-size: clamp(1.3rem, 3vw, 2rem);
  font-weight: 700;
  color: var(--primary);
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  text-align: center;
}

.historia-text {
  width: 100%;
  max-width: 683px;
  min-height: auto;
  padding: 2rem;
}

.historia-text p {
  color: rgba(255,255,255,0.7);
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

.historia-video {
  width: 100%;
  max-width: 100%;
}

.video-wrapper {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 aspect ratio */
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
  overflow: hidden;
  border-radius: var(--border-radius);
  border: 1px solid var(--glass-border);
  background: var(--charcoal);
}

.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* Blog Section - background j? definido acima */

.section-header {
  margin-bottom: var(--space-16);
  text-align: center;
}

.blog-section-ver-todos {
  display: inline-block;
  margin-top: var(--space-4);
  color: var(--primary);
  font-weight: 700;
  font-size: 0.9rem;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: color var(--transition-base);
  cursor: pointer;
}

.blog-section-ver-todos:hover {
  color: var(--white);
}

.blog-section-ver-todos:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
}

.section-title {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  align-items: center;
}

.section-title i {
  font-size: 2.5rem;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

@media (max-width: 1024px) {
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .blog-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

.blog-card {
  background: #393636;
  backdrop-filter: blur(20px) saturate(180%);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color var(--transition-base), box-shadow var(--transition-base);
  box-shadow: 0 20px 40px rgba(0,0,0,0.4);
  position: relative;
  cursor: pointer;
}

.blog-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: var(--refraction);
  pointer-events: none;
}

.blog-card:hover {
  border-color: var(--primary-70);
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.45);
}

.blog-image-link {
  display: block;
  text-decoration: none;
  cursor: pointer;
}

.blog-image {
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.blog-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.6);
  transition: var(--transition);
}

.blog-card:hover .blog-image img {
  filter: brightness(0.6);
  transform: none;
}

.blog-grid-loading .blog-card {
  pointer-events: none;
}

.blog-grid-loading .blog-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(255, 255, 255, 0.04) 50%,
    transparent 100%
  );
  background-size: 200% 100%;
  animation: blog-skeleton-shimmer 1.2s ease-in-out infinite;
  pointer-events: none;
  z-index: 1;
}

@keyframes blog-skeleton-shimmer {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

@media (prefers-reduced-motion: reduce) {
  .blog-grid-loading .blog-card::after {
    animation: none;
    background: rgba(255, 255, 255, 0.03);
  }
}

.blog-content {
  padding: 1.5rem;
}

.blog-badge {
  display: inline-block;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--primary);
  background: rgba(192, 18, 25, 0.2);
  padding: 0.35rem 0.75rem;
  border-radius: 4px;
  margin-bottom: 1rem;
}

.blog-date {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.blog-title {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.8rem;
}

.blog-title a {
  color: var(--white);
  text-decoration: none;
  transition: color var(--transition-base);
  cursor: pointer;
}

.blog-title a:hover {
  color: var(--primary);
}

.blog-title a:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
}

.blog-link {
  color: var(--primary);
  text-decoration: none;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.8rem;
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  transition: color var(--transition-base);
  cursor: pointer;
}

.blog-link:hover {
  color: var(--white);
}

.blog-link:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
}

/* P?gina de post ?nico */
.post-page {
  padding: 4rem 0 5rem;
  min-height: 60vh;
}

.post-loading,
.post-not-found {
  text-align: center;
  padding: 4rem 2rem;
  color: var(--white);
}

.post-not-found .btn {
  margin-top: 1.5rem;
}

.post-breadcrumb {
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
}

.post-breadcrumb a {
  color: var(--primary);
  text-decoration: none;
}

.post-breadcrumb a:hover {
  text-decoration: underline;
}

.post-breadcrumb-sep {
  margin: 0 0.5rem;
  color: rgba(255, 255, 255, 0.5);
}

.breadcrumb,
.post-breadcrumb {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.25rem;
}

.breadcrumb {
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.breadcrumb a {
  color: var(--primary);
  text-decoration: none;
  transition: opacity var(--transition-base);
}

.breadcrumb a:hover {
  opacity: 0.9;
  text-decoration: underline;
}

.breadcrumb-sep {
  margin: 0 0.25rem;
  color: var(--text-subtle);
}

.post-single .post-badge {
  display: inline-block;
  margin-bottom: 1rem;
}

.post-single .post-title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 0.75rem;
  line-height: 1.3;
}

.post-single .post-date {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 1.5rem;
}

.post-image-wrap {
  margin-bottom: 2rem;
  border-radius: var(--border-radius);
  overflow: hidden;
}

.post-featured-image {
  width: 100%;
  height: auto;
  max-height: 420px;
  object-fit: cover;
  display: block;
}

.post-body {
  color: rgba(255, 255, 255, 0.92);
  font-size: 1.05rem;
  line-height: 1.75;
  max-width: 720px;
}

.post-body p {
  margin-bottom: 1.25rem;
}

.post-body p:last-child {
  margin-bottom: 0;
}

.post-back {
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--glass-border);
}

.post-back .blog-link {
  text-transform: none;
  font-size: 0.95rem;
}

.blog-link i {
  transition: var(--transition);
}

.blog-link:hover i {
  transform: translateX(3px);
}

/* Footer */
.footer {
  background: var(--bg);
  padding: 4rem 0 2rem;
  border-top: 1px solid var(--glass-border);
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-section h4 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-section h4 i,
.footer-section h4 .icon-svg {
  color: var(--primary);
}

.icon-svg {
  display: inline-block;
  width: 1.1em;
  height: 1.1em;
  flex-shrink: 0;
  vertical-align: -0.2em;
  color: inherit;
}

.footer-section a .icon-svg,
.footer-section p .icon-svg {
  margin-right: 0.35rem;
}

.footer-phones li .icon-svg-phone {
  color: var(--primary);
}

.footer-phones li .icon-svg-whatsapp {
  color: #25D366;
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin-bottom: 1rem;
}

.footer-section a {
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  transition: color var(--transition-base);
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  cursor: pointer;
}

.footer-section a:hover {
  color: var(--primary);
}

.footer-section a:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
}

.footer-section p {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255,255,255,0.6);
}

.footer-section p i {
  color: var(--primary);
}

/* Footer Contato - e-mail + telefones das unidades */
.footer-contact .footer-contact-item {
  margin-bottom: 1rem;
}

.footer-contact .footer-contact-item a {
  color: rgba(255,255,255,0.8);
  text-decoration: none;
}

.footer-contact .footer-contact-item a:hover {
  color: var(--primary);
}

.footer-phones {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-phones li {
  margin-bottom: 0.65rem;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.75);
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 0.25rem;
}

.footer-phones li i.fa-phone-alt {
  color: var(--primary);
  margin-right: 0.35rem;
}

.footer-phones li .fab.fa-whatsapp {
  color: #25D366;
}

.footer-phones li a {
  color: rgba(255,255,255,0.85);
  text-decoration: none;
}

.footer-phones li a:hover {
  color: var(--primary);
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid var(--glass-border);
  color: rgba(255,255,255,0.4);
}

/* Accent Line Animation */
@keyframes slide {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}

.accent-line {
  height: 1px;
  width: 100%;
  margin: var(--space-3) auto var(--space-6);
  background: linear-gradient(90deg, transparent, var(--primary), transparent);
  position: relative;
  overflow: hidden;
}

.accent-line::after {
  content: '';
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, #fff, transparent);
  animation: slide 4s var(--ease-in-out) infinite;
}

@media (prefers-reduced-motion: reduce) {
  .accent-line::after {
    animation: none;
  }
}

/* Stats Section */
.stats-section {
  padding: 6rem 0;
  background: var(--teal);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}

.stat-card {
  text-align: center;
  padding: 1.5rem 1.25rem;
  background: #393636;
  backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: var(--border-radius);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  min-width: 0;
}

.stat-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: var(--refraction);
  pointer-events: none;
}

.stat-card:hover {
  transform: translateY(-5px);
  border-color: var(--primary-70);
}

.stat-icon {
  margin-bottom: 1rem;
}

.stat-icon i {
  font-size: 2.5rem;
  color: var(--primary);
  display: block;
}

.stats-number,
.stat-text {
  font-size: 3rem;
  font-weight: 900;
  color: var(--white);
  display: block;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 0.95rem;
  line-height: 1.5;
  color: rgba(255,255,255,0.6);
  max-width: 100%;
}

/* Page Hero */
.page-hero {
  background: linear-gradient(135deg, var(--primary) 0%, var(--teal) 100%);
  padding: 6rem 0 4rem;
  text-align: center;
}

.page-title {
  font-size: clamp(3rem, 8vw, 5rem);
  font-weight: 900;
  color: var(--white);
  margin-bottom: 0.5rem;
}

.blog-hero .blog-hero-title {
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 900;
  margin-bottom: 0.5rem;
  line-height: 1.2;
}

.blog-hero .blog-hero-title .first {
  color: var(--white);
  display: block;
}

.blog-hero .blog-hero-title .second {
  color: rgba(255, 255, 255, 0.85);
  display: block;
  font-weight: 700;
}

.blog-hero .blog-hero-desc {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255, 255, 255, 0.95);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.5;
}

.page-hero-subtitle {
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  color: rgba(255, 255, 255, 0.9);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.5;
}

/* Quote Section */
.quote-section {
  padding: 6rem 0;
  background: var(--bg);
  text-align: center;
}

.quote-block {
  max-width: 800px;
  margin: 0 auto;
}

.quote-text {
  font-size: clamp(2rem, 6vw, 4rem);
  font-weight: 900;
  color: var(--white);
  font-family: 'JetBrains Mono', monospace;
  position: relative;
  display: inline-block;
}

.quote-svg {
  width: 100%;
  height: 20px;
  fill: var(--primary);
  margin-top: 1rem;
  opacity: 0.8;
}

.quote-subtitle {
  margin-top: 1.5rem;
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.7);
}

.quote-inline {
  text-align: center;
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.8);
  max-width: 640px;
  margin: 2rem auto 0;
  line-height: 1.6;
  font-style: italic;
}

.section-header-animate {
  text-align: center;
  margin-bottom: 2.5rem;
}

.section-header-animate .tag {
  display: inline-block;
  margin-bottom: 0.5rem;
}

.section-header-animate .accent-line {
  margin: 1rem auto 0;
}

.trajetoria-content p {
  margin-bottom: 1.5rem;
  color: rgba(255,255,255,0.7);
}

.galeria-section {
  padding: 6rem 0;
  background: var(--bg);
}

.galeria-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}

@media (max-width: 768px) {
  .galeria-grid {
    grid-template-columns: 1fr;
  }
}

.galeria-item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  border-radius: var(--border-radius);
  border: 1px solid var(--glass-border);
  transition: border-color var(--transition), box-shadow var(--transition);
  aspect-ratio: 4 / 3;
  height: auto;
}

.galeria-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--primary-80);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
  z-index: 1;
}

.galeria-overlay i {
  font-size: 2.5rem;
  color: var(--white);
  transform: scale(0);
  transition: var(--transition);
}

.galeria-item:hover .galeria-overlay {
  opacity: 1;
}

.galeria-item:hover .galeria-overlay i {
  transform: scale(1);
}

.galeria-item:hover {
  border-color: var(--primary);
  box-shadow: 0 8px 24px rgba(192, 18, 25, 0.25);
}

.galeria-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.7);
  transition: var(--transition);
}

.galeria-item:hover img {
  filter: brightness(0.6);
}

/* Valores Section */
.valores-section {
  padding: 6rem 0;
  background: var(--bg);
}

.section-title-medium {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 900;
  color: var(--white);
  margin-bottom: 3rem;
  text-align: center;
}

.valores-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}

.valor-card {
  text-align: center;
  padding: 1.5rem;
  background: #393636;
  backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: var(--border-radius);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.valor-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: var(--refraction);
  pointer-events: none;
}

.valor-card:hover {
  transform: translateY(-5px);
  border-color: var(--primary-70);
}

.valor-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.valor-icon i {
  font-size: 2.5rem;
  color: var(--primary);
  transition: var(--transition);
}

.valor-card:hover .valor-icon i {
  transform: scale(1.1);
  color: var(--white);
}

.valor-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.8rem;
}

.valor-card p {
  color: rgba(255,255,255,0.6);
}

/* Page Content */
.page-content {
  padding: 8rem 0 4rem;
  background: var(--teal);
}

.content-text {
  max-width: 900px;
  margin: 0 auto;
}

.content-text h2 {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 700;
  color: var(--white);
  margin-top: 3rem;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.content-text h2::before {
  content: '?';
  color: var(--primary);
  font-size: 2rem;
}

.content-text p {
  margin-bottom: 1.5rem;
  color: rgba(255,255,255,0.7);
}

/* ── Responsive: Desktop ── */
@media (min-width: 1025px) {
  h1 {
    margin-bottom: var(--space-20);
    line-height: 1.15;
  }

  h2 {
    margin-bottom: 4rem;
  }

  h3 {
    margin-bottom: 3rem;
  }
}

/* ── Header responsivo: escala progressiva ──
   Breakpoints:
   > 1400px  → base styles (full size)
   1200-1400 → slightly smaller nav text
   1025-1199 → smaller logo + nav, hide "Blog" and "Unidades"
   769-1024  → hide more items, compact layout
   < 769     → hamburger menu (handled in mobile block)
   ────────────────────────────────────────── */

/* Notebooks grandes (1200-1400px) */
@media (max-width: 1400px) {
  .nav-link {
    font-size: 0.7rem;
    letter-spacing: 0.5px;
    padding: 0.22rem 0.35rem;
  }

  .nav-link.btn-nav {
    font-size: 0.7rem;
    padding: 0.4rem 0.8rem;
  }

  .nav-list {
    gap: 0.4rem;
  }

  .logo-img {
    height: 44px;
    max-width: 170px;
  }

  .logo a {
    height: 44px;
  }
}

/* Notebooks médios (1025-1199px) */
@media (max-width: 1199px) {
  .header {
    padding: 0.6rem 1rem;
  }

  .nav-link {
    font-size: 0.65rem;
    letter-spacing: 0.4px;
    padding: 0.2rem 0.3rem;
  }

  .nav-link.btn-nav {
    font-size: 0.65rem;
    padding: 0.35rem 0.7rem;
  }

  .nav-list {
    gap: 0.3rem;
  }

  .logo-img {
    height: 40px;
    max-width: 150px;
  }

  .logo a {
    height: 40px;
  }

  /* Ocultar itens menos essenciais para liberar espaço */
  .nav-list li:nth-child(5),  /* Blog */
  .nav-list li:nth-child(7) { /* Unidades */
    display: none;
  }
}

/* Tablets e notebooks pequenos (769-1024px) */
@media (min-width: 769px) and (max-width: 1024px) {
  h1 {
    line-height: 1.2;
  }

  .header {
    padding: 0.55rem 0.8rem;
  }

  .nav-link {
    font-size: 0.6rem;
    letter-spacing: 0.3px;
    padding: 0.18rem 0.25rem;
  }

  .nav-link.btn-nav {
    font-size: 0.6rem;
    padding: 0.32rem 0.6rem;
    flex-shrink: 0;
    white-space: nowrap;
  }

  .nav-list {
    gap: 0.2rem;
  }

  .logo-img {
    height: 36px;
    max-width: 130px;
  }

  .logo a {
    height: 36px;
  }

  /* Ocultar mais itens para caber no header */
  .nav-list li:nth-child(4),  /* Professores e Palestrantes */
  .nav-list li:nth-child(5),  /* Blog */
  .nav-list li:nth-child(7),  /* Unidades */
  .nav-list li:nth-child(8) { /* Fale Conosco */
    display: none;
  }

  .historia-content {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .historia-text {
    max-width: 100%;
    padding: 1.5rem;
  }

  .video-wrapper {
    max-width: 100%;
  }

  .form-row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  h1 {
    line-height: 1.2;
  }
  
  .header {
    padding: 0.75rem 1rem;
    gap: 0.75rem;
    width: calc(100% - 1rem);
    max-width: calc(100vw - 1rem);
  }

  /* Evitar que o t?tulo fique atr?s do header fixo na p?gina Quem Somos */
  .quem-somos-hero {
    padding-top: 10rem;
    padding-bottom: 4rem;
  }

  .quem-somos-hero .container {
    padding-top: 123px;
  }

  .nav {
    display: none;
  }

  .nav.active {
    display: block;
    position: absolute;
    top: calc(100% + 0.75rem);
    left: 1rem;
    right: 1rem;
    width: calc(100% - 2rem);
    max-height: calc(100vh - 100px);
    overflow-y: auto;
    background: var(--charcoal-90);
    backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 0;
    margin: 0;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
  }

  .nav.active .nav-list {
    flex-direction: column;
    gap: 0;
    align-items: stretch;
    padding: 0.5rem 0;
  }

  .nav.active .nav-list > li {
    width: 100%;
    margin: 0;
    list-style: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .nav.active .nav-list > li:last-child {
    border-bottom: none;
  }

  .nav.active .nav-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 1rem 1.25rem;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap;
    text-align: left;
    box-sizing: border-box;
  }

  .nav.active .nav-link i.fa-chevron-down {
    font-size: 0.7rem;
    transition: transform 0.25s ease;
  }

  .nav.active .nav-dropdown.active .nav-link i.fa-chevron-down {
    transform: rotate(180deg);
  }

  .nav-dropdown {
    width: 100%;
  }

  .nav.active .dropdown-menu {
    position: static;
    transform: none;
    width: 100%;
    margin: 0;
    padding: 0 0 0.5rem 0;
    opacity: 1;
    visibility: visible;
    background: rgba(0, 0, 0, 0.25);
    border: none;
    border-radius: 0;
    box-shadow: none;
    display: none;
    min-width: 100%;
    max-width: 100%;
  }

  .nav-dropdown.active .dropdown-menu {
    display: block;
  }

  .nav.active .dropdown-menu li {
    margin: 0;
    border: none;
  }

  .nav.active .dropdown-menu a {
    display: block;
    padding: 0.75rem 1.25rem 0.75rem 2rem;
    font-size: 0.85rem;
    font-weight: 500;
    text-transform: none;
    letter-spacing: 0;
    text-align: left;
    width: 100%;
    box-sizing: border-box;
    border: none;
    opacity: 1;
  }

  .nav.active .nav-link.btn-nav {
    justify-content: center;
    text-align: center;
    margin: 0.75rem 1.25rem 0 1.25rem;
    padding: 0.9rem 1.25rem;
    border-radius: 10px;
    background: var(--primary);
  }

  .mobile-menu-toggle {
    display: flex;
  }

  .mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

  .mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
  }

  .mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
  }
  
  /* Hero Parchment mobile - sem card; só texto; imagem atrás cobrindo todo o hero */
  .parchment-hero {
    height: 100vh;
  }

  .hero-slide {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 8rem 0.5rem 0.5rem;
    align-items: flex-start;
    justify-content: flex-start;
  }

  .hero-slide-has-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.4) 50%, rgba(0,0,0,0.35) 100%);
    z-index: 0;
    pointer-events: none;
  }

  .hero-slide .floating-element {
    display: none;
  }

  .parchment-layer {
    width: 100%;
    max-width: none;
    min-height: auto;
    height: auto;
    max-height: none;
    padding: 0.5rem 0.5rem;
    align-items: center;
    text-align: center;
    transform: translateY(20px);
    background: transparent !important;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border: none;
    box-shadow: none;
    position: relative;
    z-index: 1;
    margin-top: 0;
  }

  .hero-slide .parchment-layer-bg {
    display: none;
  }

  .hero-slide.active .parchment-layer {
    transform: translateY(0);
  }

  .slide-title {
    font-size: clamp(1.95rem, 7vw, 3.1rem);
    line-height: 1.25;
    text-align: center;
    margin: 0 auto 1rem;
    max-width: 100%;
    width: 100%;
    padding: 0;
    white-space: pre-line;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  .slide-meta {
    font-size: 0.7rem;
    line-height: 1.6;
    text-align: center;
    margin-bottom: 0.5rem;
  }

  .slide-description {
    font-size: clamp(0.95rem, 2.2vw, 1.05rem);
    line-height: 1.65;
    text-align: center;
    margin: 0 auto;
    max-width: 100%;
  }

  .hero-controls,
  .hero-dots {
    bottom: 1.5rem;
  }

  .hero-controls {
    right: 1.5rem;
    gap: 1rem;
  }

  .hero-dots {
    left: 1.5rem;
    gap: 0.5rem;
  }

  .hero-nav-btn {
    width: 40px;
    height: 40px;
    font-size: 0.8rem;
  }
  
  /* Reduzir n?mero de part?culas no mobile */
  .particles-container {
    display: none;
  }
  
  .parchment-hero::after {
    opacity: 0.4;
  }
  
  .container {
    padding: 1rem 0.5rem;
  }
  
  .cursos-section,
  .areas-section,
  .form-section,
  .blog-section {
    padding: 0 0;
  }

  .page-hero {
    padding-top: 10rem;
    padding-bottom: 3rem;
  }
  
  .historia-section {
    padding: 3rem 0;
  }
  
  .historia-section .container {
    padding: 0 1rem;
  }
  
  /* Hist?ria responsiva mobile */
  .historia-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .historia-text {
    padding: 1.5rem;
    width: 100%;
    max-width: 100%;
  }
  
  .historia-title {
    font-size: clamp(1.5rem, 5vw, 2rem);
    margin-bottom: 0.5rem;
  }
  
  .historia-subtitle {
    font-size: clamp(1rem, 4vw, 1.5rem);
    margin-bottom: 1rem;
  }
  
  .historia-text p {
    font-size: 0.95rem;
    margin-bottom: 1.25rem;
  }
  
  .historia-video {
    width: 100%;
  }
  
  .video-wrapper {
    max-width: 100%;
    padding-bottom: 56.25%;
  }
}

/* Professores */
.professores-section .section-header {
  margin-bottom: 2rem;
}

.professores-intro {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 3rem;
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.1rem;
  line-height: 1.7;
}

.professores-area {
  margin-bottom: 4rem;
}

.professores-section .professores-area:nth-child(4),
.professores-section .professores-area:nth-child(6) {
  padding: 2rem;
  border-radius: var(--border-radius);
  background: rgba(0, 0, 0, 0.12);
}

.area-title {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  font-weight: 700;
  color: var(--primary);
  text-transform: uppercase;
  margin-bottom: 2rem;
  text-align: center;
  width: 100%;
}

.area-title .area-icon {
  font-size: 1.25rem;
  opacity: 0.9;
}

.professores-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.professor-card {
  background: #393636;
  backdrop-filter: blur(20px) saturate(180%);
  border: 1px solid var(--glass-border);
  border-radius: var(--border-radius);
  padding: 0;
  text-align: center;
  transition: var(--transition);
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
  overflow: hidden;
}

.professor-card:hover {
  transform: translateY(-4px);
  border-color: var(--primary-70);
  box-shadow: 0 15px 40px rgba(192, 18, 25, 0.2);
}

.professor-card-photo {
  width: 100%;
  aspect-ratio: 1;
  background: rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.professor-card-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.professor-card-photo .professor-placeholder {
  width: 100%;
  height: 100%;
  display: none;
  align-items: center;
  justify-content: center;
  background: #393636;
  color: var(--primary);
  font-size: 2.5rem;
}

.professor-card-photo .professor-placeholder.show {
  display: flex;
}

.professor-card-body {
  padding: 1rem 1rem 1.25rem;
}

.professor-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.35rem;
  text-transform: capitalize;
}

.professor-card p {
  font-size: 0.85rem;
  color: var(--primary);
  font-weight: 600;
  text-transform: uppercase;
  margin: 0;
}

/* Grid ajustado para cards com foto */
.professores-grid {
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
}

/* Stats da p?gina professores */
.professores-stats-grid {
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

/* CTA Professores */
.professores-cta {
  text-align: center;
  padding: 3rem 2rem;
  margin-top: 3rem;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
  border: 1px solid var(--glass-border);
  border-radius: var(--border-radius);
  background: #393636;
  backdrop-filter: blur(20px);
}

.professores-cta h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.75rem;
}

.professores-cta p {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.professores-cta .btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

/* Unidades - p?gina no padr?o antigo (bloco + lista + mapa) */
.unidades-page {
  padding: 2.5rem 0 4rem;
}

.unidade-block {
  margin-bottom: 3rem;
}

.unidade-block:last-child {
  margin-bottom: 0;
}

.unidade-block-title {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--white);
  margin: 0 0 1.25rem 0;
}

.unidade-block-title b {
  font-weight: 700;
  color: var(--primary);
}

.unidade-icon-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.unidade-icon-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.unidade-icon-list li i {
  color: var(--primary);
  font-size: 1.1rem;
  margin-top: 0.2rem;
  flex-shrink: 0;
}

.unidade-icon-list li span,
.unidade-icon-list li a {
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.5;
}

.unidade-icon-list li a {
  text-decoration: none;
  transition: var(--transition);
}

.unidade-icon-list li a:hover {
  color: var(--primary);
}

.unidade-map-wrap {
  width: 100%;
  border-radius: var(--border-radius);
  overflow: hidden;
  border: 1px solid var(--glass-border);
  background: #0a1f28;
}

/* Mapa em largura total (padr?o da p?gina antiga) */
.unidade-map-full {
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
  width: 100vw;
  max-width: 100vw;
  border-radius: 0;
  border-left: none;
  border-right: none;
}

.unidade-map-wrap iframe {
  display: block;
  width: 100%;
  height: 320px;
  border: 0;
}

@media (min-width: 768px) {
  .unidade-map-wrap iframe {
    height: 400px;
  }
}

/* Unidades - grid/cards (legado) */
.unidades-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

@media (max-width: 768px) {
  .unidades-grid {
    grid-template-columns: 1fr;
  }
  
  .unidade-actions {
    flex-direction: column;
  }
  
  .unidade-actions .btn {
    width: 100%;
  }
}

.unidade-card {
  background: #393636;
  backdrop-filter: blur(20px) saturate(180%);
  border: 1px solid var(--glass-border);
  border-radius: var(--border-radius);
  padding: 2rem;
  transition: var(--transition);
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.unidade-card:hover {
  transform: translateY(-4px);
  border-color: var(--primary-70);
  box-shadow: 0 15px 40px rgba(192, 18, 25, 0.2);
}

.unidade-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--glass-border);
}

.unidade-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--white);
  margin: 0;
}

.unidade-badge {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--primary);
  background: rgba(192, 18, 25, 0.2);
  padding: 0.35rem 0.75rem;
  border-radius: 4px;
}

.unidade-content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.unidade-info {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.unidade-info-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.unidade-info-item i {
  font-size: 1.25rem;
  color: var(--primary);
  margin-top: 0.25rem;
  flex-shrink: 0;
}

.unidade-info-item strong {
  display: block;
  color: var(--white);
  font-weight: 700;
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.unidade-info-item p {
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
  line-height: 1.6;
  font-size: 0.95rem;
}

.unidade-info-item a {
  color: var(--primary);
  text-decoration: none;
  transition: var(--transition);
}

.unidade-info-item a:hover {
  color: var(--white);
}

.unidade-docs {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding-top: 1rem;
  border-top: 1px solid var(--glass-border);
}

.doc-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  font-size: 0.9rem;
  padding: 0.75rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 6px;
  transition: var(--transition);
}

.doc-link:hover {
  background: rgba(192, 18, 25, 0.2);
  color: var(--primary);
}

.doc-link i {
  color: var(--primary);
  font-size: 1.1rem;
}

.unidade-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.unidade-actions .btn {
  flex: 1;
  min-width: 140px;
  justify-content: center;
}

.unidade-info p {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 1rem;
  line-height: 1.8;
}

.unidade-info a {
  color: var(--primary);
  text-decoration: none;
  transition: 0.3s;
}

.unidade-info a:hover {
  color: var(--white);
}

.unidade-docs {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.unidade-docs .btn {
  width: 100%;
  justify-content: center;
}

/* Instala??es/Salas */
.instalacoes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

@media (max-width: 768px) {
  .instalacoes-grid {
    grid-template-columns: 1fr;
  }
}

.instalacao-card {
  background: #393636;
  backdrop-filter: blur(20px) saturate(180%);
  border: 1px solid var(--glass-border);
  border-radius: var(--border-radius);
  padding: 2rem;
  text-align: center;
  transition: var(--transition);
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.instalacao-card:hover {
  transform: translateY(-4px);
  border-color: var(--primary-70);
  box-shadow: 0 15px 40px rgba(192, 18, 25, 0.2);
}

.instalacao-icon {
  font-size: 3rem;
  color: var(--primary);
  margin-bottom: 1rem;
}

.instalacao-card h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.75rem;
}

.instalacao-card p {
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
  margin: 0;
}

.page-subtitle {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255, 255, 255, 0.7);
  text-align: center;
  max-width: 800px;
  margin: 1rem auto 0;
  line-height: 1.6;
}

/* Scroll-triggered animations (ease-out para entrada - UX) */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.scroll-animate {
  opacity: 0;
  transform: translateY(24px);
  will-change: opacity, transform;
}

.scroll-animate.fade-in-up,
.fade-in-up {
  animation: fadeInUp 0.6s var(--ease-out) forwards;
}

/* Stagger expandido para grids (recomendação landing) */
.cursos-grid .curso-card.fade-in-up:nth-child(1) { animation-delay: 0s; }
.cursos-grid .curso-card.fade-in-up:nth-child(2) { animation-delay: 0.08s; }
.cursos-grid .curso-card.fade-in-up:nth-child(3) { animation-delay: 0.16s; }

.areas-grid .area-card.fade-in-up:nth-child(1) { animation-delay: 0s; }
.areas-grid .area-card.fade-in-up:nth-child(2) { animation-delay: 0.08s; }
.areas-grid .area-card.fade-in-up:nth-child(3) { animation-delay: 0.16s; }

.stats-grid .stat-card.fade-in-up:nth-child(1) { animation-delay: 0s; }
.stats-grid .stat-card.fade-in-up:nth-child(2) { animation-delay: 0.1s; }
.stats-grid .stat-card.fade-in-up:nth-child(3) { animation-delay: 0.2s; }

.valores-grid .valor-card.fade-in-up:nth-child(1) { animation-delay: 0s; }
.valores-grid .valor-card.fade-in-up:nth-child(2) { animation-delay: 0.1s; }
.valores-grid .valor-card.fade-in-up:nth-child(3) { animation-delay: 0.2s; }

.galeria-grid .galeria-item.fade-in-up:nth-child(1) { animation-delay: 0s; }
.galeria-grid .galeria-item.fade-in-up:nth-child(2) { animation-delay: 0.08s; }
.galeria-grid .galeria-item.fade-in-up:nth-child(3) { animation-delay: 0.16s; }

.blog-grid .blog-card.fade-in-up:nth-child(1) { animation-delay: 0s; }
.blog-grid .blog-card.fade-in-up:nth-child(2) { animation-delay: 0.06s; }
.blog-grid .blog-card.fade-in-up:nth-child(3) { animation-delay: 0.12s; }
.blog-grid .blog-card.fade-in-up:nth-child(4) { animation-delay: 0.18s; }
.blog-grid .blog-card.fade-in-up:nth-child(5) { animation-delay: 0.24s; }
.blog-grid .blog-card.fade-in-up:nth-child(6) { animation-delay: 0.3s; }

.vantagens-cards .vantagem-card.fade-in-up:nth-child(1) { animation-delay: 0s; }
.vantagens-cards .vantagem-card.fade-in-up:nth-child(2) { animation-delay: 0.07s; }
.vantagens-cards .vantagem-card.fade-in-up:nth-child(3) { animation-delay: 0.14s; }
.vantagens-cards .vantagem-card.fade-in-up:nth-child(4) { animation-delay: 0.21s; }
.vantagens-cards .vantagem-card.fade-in-up:nth-child(5) { animation-delay: 0.28s; }
.vantagens-cards .vantagem-card.fade-in-up:nth-child(6) { animation-delay: 0.35s; }

.footer-section.fade-in-up:nth-child(1) { animation-delay: 0s; }
.footer-section.fade-in-up:nth-child(2) { animation-delay: 0.1s; }
.footer-section.fade-in-up:nth-child(3) { animation-delay: 0.2s; }

/* ========== ProtENEM ========== */
.section-pad {
  padding: 3.5rem 0;
}

.protenem-hero {
  padding: 2rem 0 1rem;
  text-align: center;
}

.protenem-logo {
  max-width: 100%;
  height: auto;
  max-height: 80px;
  object-fit: contain;
}

.protenem-intro-grid,
.protenem-why-grid,
.protenem-vantagens-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: center;
}

@media (max-width: 900px) {
  .protenem-intro-grid,
  .protenem-why-grid,
  .protenem-vantagens-grid {
    grid-template-columns: 1fr;
  }
  .protenem-intro-img,
  .protenem-why-img,
  .protenem-vantagens-img { order: -1; }
}

.protenem-title {
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  font-weight: 700;
  color: var(--white);
  margin: 0 0 0.5rem 0;
}

.protenem-subtitle {
  font-size: clamp(1.1rem, 2.5vw, 1.35rem);
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  margin: 0 0 1.25rem 0;
}

.protenem-intro-text p,
.protenem-why-text p,
.protenem-vantagens-text p {
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 1rem;
  line-height: 1.6;
}

.protenem-intro-img img,
.protenem-why-img img,
.protenem-vantagens-img img {
  width: 100%;
  height: auto;
  border-radius: var(--border-radius);
  border: 1px solid var(--glass-border);
}

.protenem-form-section .section-title,
.protenem-cta .section-title,
.protenem-para-quem .section-title,
.protenem-depoimentos .section-title,
.protenem-vantagens .section-title {
  color: var(--white);
  font-size: clamp(1.5rem, 3vw, 1.85rem);
  margin-bottom: 1rem;
}

.protenem-form-lead {
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 1.5rem;
  max-width: 640px;
}

.protenem-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

@media (max-width: 600px) {
  .protenem-form .form-row {
    grid-template-columns: 1fr;
  }
}

.protenem-form .form-group-submit {
  display: flex;
  align-items: flex-end;
}

.protenem-form .btn-lg {
  width: 100%;
  justify-content: center;
}

.protenem-why-title {
  font-size: 1.35rem;
  color: var(--white);
  margin: 1.5rem 0 1rem 0;
}

.protenem-checklist {
  list-style: none;
  padding: 0;
  margin: 0;
}

.protenem-checklist li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.5;
}

.protenem-checklist li i {
  color: var(--primary);
  margin-top: 0.25rem;
  flex-shrink: 0;
}

/* Layout bloco: título em cima, descrição embaixo */
.protenem-checklist--block li {
  align-items: flex-start;
  margin-bottom: 1rem;
}
.protenem-checklist--block li div {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}
.protenem-checklist--block li strong {
  color: #fff;
  font-size: 0.95rem;
  line-height: 1.4;
}
.protenem-checklist--block li span {
  color: rgba(255,255,255,0.6);
  font-size: 0.875rem;
  line-height: 1.5;
}

/* ── Vantagens Cards + Imagem ── */
.vantagens-sub {
  color: rgba(255,255,255,0.5);
  font-size: 1rem;
  text-align: center;
  margin-bottom: 2.5rem;
}

.vantagens-split {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 2rem;
  align-items: center;
}

.vantagens-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.vantagem-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-left: 3px solid var(--primary);
  border-radius: 10px;
  padding: 1.25rem 1.2rem;
  transition: transform 0.3s ease, background 0.3s ease, border-color 0.3s ease;
}
.vantagem-card:hover {
  transform: translateY(-4px);
  background: rgba(255,255,255,0.07);
  border-left-color: #e8151d;
}

.vantagem-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(192,18,25,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.75rem;
}
.vantagem-icon i {
  color: var(--primary);
  font-size: 0.9rem;
}

.vantagem-card h3 {
  color: #fff;
  font-family: 'Outfit', 'Inter', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  margin: 0 0 0.4rem;
  line-height: 1.3;
}

.vantagem-card p {
  color: rgba(255,255,255,0.55);
  font-size: 0.82rem;
  line-height: 1.5;
  margin: 0;
}

.vantagens-img {
  border-radius: 12px;
  overflow: hidden;
  height: 100%;
  max-height: 480px;
}
.vantagens-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.vantagens-cta {
  text-align: center;
  margin-top: 2.5rem;
}

@media (max-width: 900px) {
  .vantagens-split {
    grid-template-columns: 1fr;
  }
  .vantagens-img {
    max-height: 350px;
  }
}
@media (max-width: 540px) {
  .vantagens-cards {
    grid-template-columns: 1fr;
  }
}

.protenem-icon-boxes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 1.5rem;
}

@media (max-width: 768px) {
  .protenem-icon-boxes {
    grid-template-columns: 1fr;
  }
}

.protenem-icon-box {
  padding: 2rem;
  text-align: center;
}

.protenem-icon-box-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 1rem;
  border-radius: 50%;
  background: rgba(192, 18, 25, 0.2);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}

.protenem-icon-box-title {
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
  margin: 0;
  line-height: 1.45;
}

.protenem-depoimentos-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 1.5rem;
}

@media (max-width: 768px) {
  .protenem-depoimentos-grid {
    grid-template-columns: 1fr;
  }
}

.protenem-depoimento {
  padding: 1.5rem;
}

.protenem-depoimento-texto {
  color: rgba(255, 255, 255, 0.9);
  font-style: italic;
  margin: 0 0 1rem 0;
  line-height: 1.6;
}

.protenem-depoimento cite {
  font-style: normal;
  font-size: 0.9rem;
  color: var(--primary);
}

.protenem-depoimento-nome {
  font-weight: 700;
  color: var(--white);
}

.protenem-cta {
  text-align: center;
}

.protenem-cta p {
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 1.5rem;
}

.protenem-vantagens-text .btn {
  margin-top: 1rem;
}

/* Form privacy text */
.form-privacidade {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
  margin: 0 0 1rem 0;
}
.form-privacidade a {
  color: var(--primary-light, #e85a5f);
  text-decoration: underline;
}

/* Pré-Vestibular page */
.prevest-hero .page-subtitle {
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  color: rgba(255, 255, 255, 0.95);
  max-width: 720px;
  margin: 0 auto 1rem;
  line-height: 1.5;
}
.prevest-hero p {
  color: rgba(255, 255, 255, 0.9);
  max-width: 720px;
  margin: 0 auto;
  line-height: 1.6;
}

.prevest-form-lead {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 1.5rem;
  text-align: center;
}

.prevest-stats {
  background: linear-gradient(135deg, var(--primary) 0%, var(--teal) 100%);
}
.prevest-stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-bottom: 3rem;
}
@media (max-width: 768px) {
  .prevest-stats-grid {
    grid-template-columns: 1fr;
  }
}
.prevest-stat {
  padding: 2rem;
  text-align: center;
  color: var(--white);
}
.prevest-stat i {
  font-size: 2rem;
  color: var(--primary-light, rgba(255,255,255,0.9));
  margin-bottom: 0.5rem;
}
.prevest-stat-num {
  display: block;
  font-size: 2.5rem;
  font-weight: 800;
  margin: 0.5rem 0;
}
.prevest-stat p {
  margin: 0;
  font-size: 1rem;
  opacity: 0.95;
}

.prevest-top50 {
  text-align: center;
}
.prevest-top50 img {
  max-width: 280px;
  height: auto;
  margin-bottom: 1.5rem;
}
.prevest-top50 .section-title {
  margin-bottom: 1.5rem;
}
.prevest-top50 .btn {
  margin-top: 0.5rem;
}

.prevest-oque,
.prevest-metodo {
  background: var(--bg);
}
.prevest-checklist {
  margin: 1.5rem 0;
}
.prevest-checklist li {
  color: var(--text);
}
.prevest-checklist li i {
  color: var(--primary);
}
.prevest-oque .btn,
.prevest-metodo .btn {
  margin-top: 1rem;
}

.prevest-metodo-sub {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--text);
  margin: 1rem 0 1.5rem 0;
}

.prevest-depoimento {
  background: linear-gradient(135deg, var(--primary) 0%, var(--teal) 100%);
}
.prevest-depoimento .protenem-why-text p,
.prevest-depoimento .section-title {
  color: var(--white);
}
.prevest-depoimento .protenem-why-text p {
  color: rgba(255, 255, 255, 0.9);
}
.prevest-depoimento .btn {
  margin-top: 1rem;
}

.prevest-aprovados {
  background: var(--bg);
}
.prevest-aprovados-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin: 1.5rem 0;
}
@media (max-width: 768px) {
  .prevest-aprovados-grid {
    grid-template-columns: 1fr;
  }
}
.prevest-aprovado {
  padding: 0;
  overflow: hidden;
  text-align: center;
}
.prevest-aprovado img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  display: block;
}
.prevest-aprovado h4 {
  font-size: 1.1rem;
  margin: 1rem 1rem 0.25rem;
  color: var(--text);
}
.prevest-aprovado p {
  font-size: 0.95rem;
  color: var(--primary);
  margin: 0 1rem 1rem;
}
.prevest-aprovados > .container > .btn {
  display: block;
  text-align: center;
  margin-top: 1rem;
}

/* Breakpoint 375px — iPhone SE e telas pequenas */
@media (max-width: 375px) {
  .header {
    width: calc(100% - 1.5rem);
    padding: 0.75rem 1rem;
    top: 0.75rem;
  }

  .logo-img {
    height: 44px;
  }

  .logo a {
    height: 44px;
  }

  .container {
    padding: 1rem 0.75rem;
  }

  .historia-section .container {
    padding: 0 0.75rem;
  }

  .hero-slide {
    padding: 7rem 0.75rem 0.5rem;
  }

  .slide-title {
    font-size: clamp(1.5rem, 6vw, 2.5rem);
  }

  .whatsapp-widget {
    right: 0.75rem;
    bottom: 0.75rem;
  }

  .whatsapp-toggle {
    width: 48px;
    height: 48px;
    min-width: 48px;
    min-height: 48px;
  }

  .btn,
  .btn-primary,
  .btn-secondary,
  .btn-outline {
    min-height: 44px;
    padding: 0.75rem 1.25rem;
  }
}


/* ===========================================
   HERO EDITORIAL — Opção 4 (Minimalista)
   =========================================== */

.editorial-hero-section {
  margin-top: 0;
  position: relative;
  width: 100%;
}

.editorial-hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 620px;
  background: #0a0a0a;
  display: flex;
  align-items: center;
  overflow: hidden;
}

/* Glow vermelho sutil no canto inferior esquerdo */
.editorial-hero::before {
  content: '';
  position: absolute;
  bottom: -15%;
  left: -8%;
  width: 55vw;
  height: 55vh;
  background: radial-gradient(ellipse at center, rgba(192, 18, 25, 0.13) 0%, transparent 68%);
  pointer-events: none;
  z-index: 1;
}

/* Linha tênue no topo */
.editorial-hero::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    to right,
    transparent,
    rgba(192, 18, 25, 0.4) 40%,
    rgba(192, 18, 25, 0.4) 60%,
    transparent
  );
  z-index: 3;
}

/* Textura grain */
.editorial-grain {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 220px;
  pointer-events: none;
  z-index: 1;
  opacity: 0.6;
}

/* Label lateral rotacionado */
.editorial-side-label {
  position: absolute;
  right: 2rem;
  top: 50%;
  transform: translateY(-50%) rotate(90deg);
  transform-origin: center center;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.58rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: rgba(255, 255, 255, 0.18);
  white-space: nowrap;
  z-index: 2;
  animation: editorialFadeUp 0.8s var(--ease-out) 1.15s both;
}

/* Linha vertical decorativa */
.editorial-line-v {
  position: absolute;
  right: 11vw;
  top: 8%;
  bottom: 8%;
  width: 1px;
  background: linear-gradient(
    to bottom,
    transparent 0%,
    rgba(255, 255, 255, 0.055) 15%,
    rgba(255, 255, 255, 0.055) 85%,
    transparent 100%
  );
  z-index: 1;
}

/* ── Conteúdo ── */
.editorial-hero-content {
  position: relative;
  z-index: 2;
  padding: 0 7vw;
  max-width: 1300px;
  width: 100%;
}

/* Eyebrow */
.editorial-eyebrow {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.68rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: rgba(255, 255, 255, 0.38);
  margin: 0 0 1.75rem;
  animation: editorialFadeUp 0.75s var(--ease-out) 0.2s both;
}

.editorial-eyebrow-dot {
  display: inline-block;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--primary);
  flex-shrink: 0;
  animation: editorialPulse 2.4s ease-in-out 1s infinite;
}

/* Headline principal */
.editorial-headline {
  display: flex;
  flex-direction: column;
  font-family: 'Outfit', 'Inter', sans-serif;
  font-size: clamp(3.8rem, 10vw, 9.5rem);
  font-weight: 900;
  line-height: 0.93;
  letter-spacing: -0.04em;
  color: #ffffff;
  margin: 0 0 2.75rem;
  animation: editorialFadeUp 0.9s var(--ease-out) 0.35s both;
}

.editorial-hl-line {
  display: block;
  /* sem animação individual — visível sempre */
}

.editorial-hl-accent {
  color: var(--primary);
  font-style: italic;
}

/* CTA row */
.editorial-cta-row {
  display: flex;
  align-items: center;
  gap: 2.2rem;
  animation: editorialFadeUp 0.75s var(--ease-out) 0.88s both;
}

.btn-editorial-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  background: var(--primary);
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-size: 0.93rem;
  font-weight: 600;
  letter-spacing: 0.015em;
  padding: 0.9rem 1.9rem;
  border-radius: 3px;
  text-decoration: none;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 28px rgba(192, 18, 25, 0.38);
}

.btn-editorial-primary:hover {
  background: var(--primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 10px 36px rgba(192, 18, 25, 0.52);
}

.btn-editorial-primary svg {
  transition: transform 0.22s;
  flex-shrink: 0;
}

.btn-editorial-primary:hover svg {
  transform: translateX(4px);
}

.editorial-link-cta {
  font-family: 'Inter', sans-serif;
  font-size: 0.88rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.4);
  text-decoration: none;
  letter-spacing: 0.02em;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  padding-bottom: 2px;
  transition: color 0.2s, border-color 0.2s;
}

.editorial-link-cta:hover {
  color: rgba(255, 255, 255, 0.8);
  border-color: rgba(255, 255, 255, 0.4);
}

/* ── Stats (rodapé do hero) ── */
.editorial-stats {
  position: absolute;
  bottom: 2.75rem;
  left: 7vw;
  right: 7vw;
  display: flex;
  align-items: center;
  gap: 2.75rem;
  z-index: 2;
  animation: editorialFadeUp 0.75s var(--ease-out) 1.05s both;
}

.editorial-stat {
  display: flex;
  flex-direction: column;
  gap: 0.22rem;
}

.editorial-stat-number {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(1.3rem, 2.2vw, 1.85rem);
  font-weight: 800;
  color: #ffffff;
  letter-spacing: -0.03em;
  line-height: 1;
}

.editorial-stat-number sup {
  font-size: 0.55em;
  vertical-align: super;
  font-weight: 700;
}

.editorial-stat-label {
  font-family: 'Inter', sans-serif;
  font-size: 0.62rem;
  color: rgba(255, 255, 255, 0.35);
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.editorial-stat-divider {
  width: 1px;
  height: 2.25rem;
  background: rgba(255, 255, 255, 0.1);
  flex-shrink: 0;
}

/* ── Animações ── */
@keyframes editorialFadeUp {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes editorialSlideUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes editorialPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.45; transform: scale(0.8); }
}

/* Reduced motion — desativa animações mas mantém os elementos visíveis */
@media (prefers-reduced-motion: reduce) {
  .editorial-eyebrow,
  .editorial-headline,
  .editorial-cta-row,
  .editorial-stats,
  .editorial-side-label {
    animation: none;
    opacity: 1;
    transform: none;
  }
  .editorial-eyebrow-dot { animation: none; }
}

/* ── Responsivo ── */
@media (max-width: 1024px) {
  .editorial-headline {
    font-size: clamp(3.5rem, 9.5vw, 7rem);
  }
  .editorial-line-v { display: none; }
}

@media (max-width: 768px) {
  .editorial-hero-content {
    padding: 0 5.5vw;
    padding-top: 4.5rem;
  }
  .editorial-headline {
    font-size: clamp(3rem, 13.5vw, 5.5rem);
    line-height: 0.95;
    margin-bottom: 2rem;
  }
  .editorial-stats {
    gap: 1.6rem;
    left: 5.5vw;
    right: 5.5vw;
    bottom: 2rem;
    flex-wrap: wrap;
  }
  .editorial-stat-number { font-size: 1.3rem; }
  .editorial-stat-divider { display: none; }
  .editorial-side-label,
  .editorial-line-v { display: none; }
}

@media (max-width: 480px) {
  .editorial-eyebrow {
    font-size: 0.58rem;
    gap: 0.5rem;
    letter-spacing: 0.12em;
  }
  .editorial-headline {
    font-size: clamp(2.75rem, 15vw, 4rem);
    margin-bottom: 1.75rem;
  }
  .editorial-cta-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.1rem;
  }
  .editorial-stats { bottom: 1.25rem; gap: 1rem; }
  .editorial-stat-label { font-size: 0.58rem; }
}


/* ===========================================
   HERO SPLIT-SCREEN — Opção 1
   =========================================== */

.split-hero-section {
  margin-top: 0;
  width: 100%;
}

/* Grid de 2 colunas */
.split-hero {
  display: grid;
  grid-template-columns: 54% 46%;
  min-height: 100vh;
}

/* ── Lado esquerdo (conteúdo) ── */
.split-hero-left {
  position: relative;
  background: #0b0b0b;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 9rem 4vw 4rem 7vw;
  z-index: 1;
  /* Sutil glow vermelho no fundo esq */
  background-image: radial-gradient(
    ellipse 70% 55% at 10% 80%,
    rgba(192, 18, 25, 0.11) 0%,
    transparent 70%
  );
}

/* Linha fina de separação direita */
.split-hero-left::after {
  content: '';
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 1px;
  background: linear-gradient(
    to bottom,
    transparent 0%,
    rgba(192, 18, 25, 0.35) 30%,
    rgba(192, 18, 25, 0.35) 70%,
    transparent 100%
  );
  z-index: 2;
}

/* Eyebrow */
.split-eyebrow {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.65rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 1.5rem;
}

.split-eyebrow-dot {
  display: inline-block;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--primary);
  flex-shrink: 0;
  animation: splitDotPulse 2.5s ease-in-out infinite;
}

/* Headline */
.split-headline {
  font-family: 'Outfit', 'Inter', sans-serif;
  font-size: clamp(3.2rem, 5.5vw, 6.2rem);
  font-weight: 900;
  line-height: 0.95;
  letter-spacing: -0.04em;
  color: #ffffff;
  margin: 0 0 1.75rem;
}

.split-headline em {
  font-style: italic;
  color: var(--primary);
}

/* Descrição */
.split-desc {
  font-family: 'Inter', sans-serif;
  font-size: clamp(0.9rem, 1.4vw, 1.05rem);
  font-weight: 400;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.55);
  margin: 0 0 2.25rem;
  max-width: 38ch;
}

/* CTAs */
.split-cta {
  display: flex;
  align-items: center;
  gap: 1.75rem;
  margin-bottom: 3.5rem;
}

.btn-split-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: var(--primary);
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  padding: 0.85rem 1.8rem;
  border-radius: 3px;
  text-decoration: none;
  box-shadow: 0 4px 24px rgba(192, 18, 25, 0.35);
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
}

.btn-split-primary:hover {
  background: var(--primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(192, 18, 25, 0.5);
}

.btn-split-primary svg {
  transition: transform 0.2s;
}

.btn-split-primary:hover svg {
  transform: translateX(4px);
}

.btn-split-ghost {
  font-family: 'Inter', sans-serif;
  font-size: 0.87rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.45);
  text-decoration: none;
  letter-spacing: 0.02em;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  padding-bottom: 2px;
  transition: color 0.2s, border-color 0.2s;
}

.btn-split-ghost:hover {
  color: rgba(255, 255, 255, 0.85);
  border-color: rgba(255, 255, 255, 0.45);
}

/* Stats */
.split-stats {
  display: flex;
  align-items: flex-start;
  gap: 2rem;
}

.split-stat {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.split-stat-num {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(1.5rem, 2.2vw, 2rem);
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.03em;
  line-height: 1;
}

.split-stat-num sup {
  font-size: 0.55em;
  vertical-align: super;
}

.split-stat-label {
  font-family: 'Inter', sans-serif;
  font-size: 0.63rem;
  color: rgba(255, 255, 255, 0.38);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  line-height: 1.45;
}

.split-stat-sep {
  width: 1px;
  height: 2.5rem;
  background: rgba(255, 255, 255, 0.1);
  margin-top: 0.2rem;
  flex-shrink: 0;
}

/* ── Lado direito (imagem) ── */
.split-hero-right {
  position: relative;
  overflow: hidden;
}

.split-hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

/* Gradiente: borda esquerda da imagem desbota no escuro */
.split-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    #0b0b0b 0%,
    rgba(11, 11, 11, 0.25) 18%,
    transparent 40%
  ),
  linear-gradient(
    to top,
    rgba(0, 0, 0, 0.55) 0%,
    transparent 40%
  );
  pointer-events: none;
}

/* Badge flutuante */
.split-hero-badge {
  position: absolute;
  bottom: 2.5rem;
  right: 2rem;
  background: rgba(11, 11, 11, 0.82);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(192, 18, 25, 0.3);
  border-radius: 6px;
  padding: 0.9rem 1.1rem;
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
}

.split-badge-icon {
  font-size: 0.95rem;
  color: var(--primary);
  line-height: 1.4;
  flex-shrink: 0;
}

.split-badge-text {
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.75);
  letter-spacing: 0.01em;
}

.split-badge-text strong {
  color: #fff;
  font-weight: 700;
}

/* Animação do ponto */
@keyframes splitDotPulse {
  0%, 100% { opacity: 1;   transform: scale(1); }
  50%       { opacity: 0.4; transform: scale(0.75); }
}

/* ── Responsivo ── */
@media (max-width: 1100px) {
  .split-hero {
    grid-template-columns: 58% 42%;
  }
  .split-headline {
    font-size: clamp(2.8rem, 5vw, 5rem);
  }
}

@media (max-width: 900px) {
  /* Em tablet: empilha verticalmente */
  .split-hero {
    grid-template-columns: 1fr;
    grid-template-rows: 50vh auto;
  }

  /* Imagem vem primeiro no mobile */
  .split-hero-right {
    order: -1;
    min-height: 50vh;
  }

  .split-hero-left {
    padding: 3rem 5vw 3.5rem;
    background-image: none;
    justify-content: flex-start;
  }

  .split-hero-left::after {
    display: none;
  }

  .split-headline {
    font-size: clamp(2.5rem, 8vw, 4rem);
    margin-bottom: 1.25rem;
  }

  .split-stats {
    gap: 1.25rem;
  }

  .split-stat-sep {
    height: 2rem;
  }

  .split-cta {
    margin-bottom: 2.5rem;
  }
}

@media (max-width: 480px) {
  .split-hero-right {
    min-height: 42vh;
  }

  .split-hero-left {
    padding: 2.5rem 5vw 3rem;
  }

  .split-headline {
    font-size: clamp(2.2rem, 11vw, 3.2rem);
  }

  .split-eyebrow {
    font-size: 0.58rem;
    letter-spacing: 0.12em;
  }

  .split-cta {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 2rem;
  }

  .split-stat-sep {
    display: none;
  }

  .split-stats {
    flex-wrap: wrap;
    gap: 1rem 1.5rem;
  }

  .split-hero-badge {
    bottom: 1rem;
    right: 1rem;
  }
}


/* ===========================================
   HERO MOSAICO — Dark + 3 fotos em grid
   =========================================== */

.mosaic-hero-section {
  margin-top: 0;
  width: 100%;
}

.mosaic-hero {
  display: grid;
  grid-template-columns: 48% 52%;
  min-height: 100vh;
  background: #0c0c0c;
}

/* ── Esquerda: conteúdo ── */
.mosaic-hero-left {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  text-align: left;
  padding: 9rem 3vw 5rem 7vw;
  background: #0c0c0c;
  overflow: hidden;
}

/* Glow vermelho sutil no fundo */
.mosaic-hero-left::before {
  content: '';
  position: absolute;
  bottom: -10%;
  left: -15%;
  width: 60%;
  height: 60%;
  background: radial-gradient(ellipse, rgba(192,18,25,0.1) 0%, transparent 70%);
  pointer-events: none;
}

/* SVG ondulado decorativo */
.mosaic-wave-deco {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 130px;
  height: 340px;
  pointer-events: none;
  opacity: 1;
}

/* Linha separadora vertical */
.mosaic-hero-left::after {
  content: '';
  position: absolute;
  right: 0;
  top: 10%;
  bottom: 10%;
  width: 1px;
  background: linear-gradient(to bottom,
    transparent,
    rgba(192,18,25,0.3) 30%,
    rgba(192,18,25,0.3) 70%,
    transparent);
}

/* Eyebrow */
.mosaic-eyebrow {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.65rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--primary);
  margin-bottom: 1.25rem;
  display: block;
  text-align: left;
}

/* Headline */
.mosaic-headline {
  font-family: 'Outfit', 'Inter', sans-serif;
  font-size: clamp(2.8rem, 4.6vw, 5.2rem);
  font-weight: 900;
  line-height: 1.03;
  letter-spacing: -0.03em;
  color: #ffffff;
  margin: 0 0 1.5rem;
  text-align: left;
}

.mosaic-headline em {
  font-style: italic;
  color: var(--primary);
}

.mosaic-headline-accent {
  color: var(--primary);
  font-style: normal;
}

/* Descrição */
.mosaic-desc {
  font-family: 'Inter', sans-serif;
  font-size: clamp(0.88rem, 1.2vw, 1rem);
  font-weight: 400;
  line-height: 1.75;
  color: rgba(255,255,255,0.5);
  margin: 0 0 2.25rem;
  max-width: 38ch;
  text-align: left;
}

/* CTA */
.btn-mosaic-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  background: transparent;
  color: #ffffff;
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  padding: 0.85rem 1.75rem;
  border: 1.5px solid rgba(255,255,255,0.35);
  border-radius: 3px;
  text-decoration: none;
  width: fit-content;
  transition: background 0.2s, color 0.2s, border-color 0.2s, transform 0.2s;
}

.btn-mosaic-primary:hover {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(192,18,25,0.4);
}

.btn-mosaic-primary svg { transition: transform 0.2s; }
.btn-mosaic-primary:hover svg { transform: translateX(4px); }

/* Tagline */
.mosaic-tagline {
  display: flex;
  align-items: baseline;
  gap: 0.65rem;
  margin-top: 2.75rem;
}

.mosaic-tagline em {
  font-family: 'Outfit', sans-serif;
  font-style: italic;
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--primary);
  letter-spacing: -0.01em;
}

.mosaic-tagline span {
  font-family: 'Inter', sans-serif;
  font-size: 0.7rem;
  font-weight: 500;
  color: rgba(255,255,255,0.3);
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

/* ── Direita: grid de fotos ── */
.mosaic-hero-right {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 10px;
  padding: 6rem 3rem 3rem 2.5rem;
  background: #0c0c0c;
}

/* Seta decorativa entre lados */
.mosaic-arrow {
  display: none; /* escondida no dark, não combina */
}

/* Base das fotos */
.mosaic-photo {
  border-radius: 8px;
  overflow: hidden;
  position: relative;
}

.mosaic-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.5s ease;
}

.mosaic-photo:hover img {
  transform: scale(1.04);
}

/* Foto 1 — alta, ocupa as 2 linhas da coluna esquerda */
.mosaic-photo-1 {
  grid-column: 1;
  grid-row: 1 / 3;
  min-height: 0;
}

/* Foto 2 — quadrada, topo-direito */
.mosaic-photo-2 {
  grid-column: 2;
  grid-row: 1;
}

/* Foto 3 — landscape, inferior-direito */
.mosaic-photo-3 {
  grid-column: 2;
  grid-row: 2;
}

/* Molduras: escondidas no dark (não precisam) */
.mosaic-frame { display: none; }

/* ── Responsivo ── */
@media (max-width: 1100px) {
  .mosaic-hero-left  { padding: 8rem 2.5vw 4rem 5vw; }
  .mosaic-hero-right { padding: 6rem 2rem 2.5rem 2rem; }
  .mosaic-headline   { font-size: clamp(2.4rem, 4.5vw, 4rem); }
}

@media (max-width: 860px) {
  .mosaic-hero {
    grid-template-columns: 1fr;
    min-height: unset;
  }
  .mosaic-hero-left {
    padding: 8rem 6vw 3rem;
    justify-content: flex-start;
  }
  .mosaic-hero-left::after { display: none; }
  .mosaic-hero-right {
    padding: 0 4vw 3rem;
    height: auto;
    aspect-ratio: 16 / 10;
  }
  .mosaic-headline { font-size: clamp(2.4rem, 8vw, 4rem); }
  .mosaic-wave-deco { display: none; }
}

@media (max-width: 480px) {
  .mosaic-hero-left  { padding: 7rem 5vw 2.5rem; }
  .mosaic-headline   { font-size: clamp(2rem, 10vw, 3rem); }
  .mosaic-desc       { font-size: 0.88rem; }
  .mosaic-hero-right {
    height: auto;
    aspect-ratio: 4 / 3;
    padding: 0 3vw 2rem;
    gap: 7px;
  }
  .mosaic-tagline em { font-size: 1.1rem; }
}
