/* ========================================
   EU ME DEIXO CURAR — TEMPLATE DEFINITIVO
   Cores do template/ + Design do index/
   GSAP + Lenis + Three.js
======================================== */
:root {
  /* ====== PALETA MEDITERRÂNEA ====== */
  --terracota: #C24A28;      /* Terra Cotta — ação primária */
  --terracota-dark: #9A3712;  /* sombra/hover */
  --sand: #E5D3B3;            /* areia — backgrounds claros */
  --sand-light: #EFE2C6;      /* areia mais clara */
  --olive: #6D7D33;           /* oliva vivo — natureza, crianças */
  --olive-dark: #4F5C22;      /* sombra/hover */
  --ochre: #D4A84B;           /* ocre/mostarda — destaques */
  --clay: #C76D37;            /* clay — laranja queimado, calor */
  --clay-dark: #9E5226;       /* sombra/hover */
  --sea: #2D5F6B;             /* sea — teal vivo, águas profundas */
  --sea-dark: #1B434D;        /* versão escura */
  --azul-petroleo: #0D4D55;  /* petróleo — fundo dark principal */
  --gold-solid: #D4A84B;      /* alias de ochre */
  --gold-light: #E8C97A;
  --white: #FFFFFF;
  --off-white: #FAF6F0;
  --text-dark: #1B434D;
  --font-display: 'Playfair Display', 'Georgia', serif;
  --font-body: 'Cormorant Garamond', 'Times New Roman', serif;
  --section-padding: clamp(80px, 12vw, 140px);
  --container-max: 1200px;
  --transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

/* RESET */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
html.lenis, html.lenis body { height: auto; }

body {
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--text-dark);
  background: var(--off-white);
  line-height: 1.7;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: var(--transition); }
ul { list-style: none; }
button { border: none; background: none; cursor: pointer; font-family: inherit; color: inherit; }
::selection { background: var(--terracota); color: var(--white); }

.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 40px);
}

/* TIPOGRAFIA */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  line-height: 1.15;
  letter-spacing: -0.01em;
  font-weight: 700;
}

h1 { font-size: clamp(2.8rem, 6vw, 4.5rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.6rem); }
p  { font-size: clamp(1rem, 1.5vw, 1.15rem); line-height: 1.8; }

.section-label {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  opacity: 0.8;
}

/* ============ BOTOES ============ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 36px;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  will-change: transform;
}

.btn::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
  transition: none;
}

.btn:hover::after {
  animation: btnShimmer 0.6s ease forwards;
}

@keyframes btnShimmer {
  to { left: 100%; }
}

.btn-primary { background: var(--terracota); color: var(--white); }
.btn-primary:hover { background: var(--clay); transform: translateY(-2px); box-shadow: 0 8px 30px rgba(184,58,24,0.35); }

.btn-secondary { background: transparent; color: var(--white); border: 1px solid var(--gold-solid); }
.btn-secondary:hover { background: rgba(212,168,75,0.1); color: var(--gold-light); box-shadow: 0 0 20px rgba(212,168,75,0.15); }

.btn-outline {
  background: rgba(255, 255, 255, 0.06);
  color: var(--gold-light);
  border: 1.5px solid var(--gold-solid);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.btn-outline:hover {
  background: var(--gold-solid);
  color: var(--azul-petroleo);
  border-color: var(--gold-solid);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(212, 168, 75, 0.35);
}

.btn-secondary--dark { color: var(--azul-petroleo); border-color: var(--terracota); }
.btn-secondary--dark:hover { background: rgba(184,58,24,0.06); color: var(--terracota); }

.btn-white { background: var(--white); color: var(--terracota); font-weight: 700; }
.btn-white:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(0,0,0,0.15); }

.btn-text {
  font-family: var(--font-body);
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  color: var(--sand);
  opacity: 0.7;
  border-bottom: 1px solid rgba(229, 211, 179, 0.4);
  padding-bottom: 3px;
  transition: opacity 0.3s, border-color 0.3s;
}
.btn-text:hover { opacity: 1; border-color: var(--sand); }

/* DECORATIVOS */
.gold-line { width: 60px; height: 2px; background: linear-gradient(90deg, var(--gold-solid), var(--gold-light)); margin: 20px auto; }
.gold-line--left { margin: 20px 0; }

/* ============ PRELOADER ============ */
.preloader {
  position: fixed; inset: 0; z-index: 10000;
  background: var(--azul-petroleo);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 2rem;
}
.preloader__logo {
  width: clamp(80px, 16vw, 140px); height: auto;
  border-radius: 50%;
  opacity: 0; transform: scale(0.8);
}
.preloader__brand {
  font-family: var(--font-display); font-size: clamp(1.4rem, 4vw, 2.8rem);
  color: var(--sand); letter-spacing: 0.15em; text-transform: uppercase;
  opacity: 0; transform: translateY(30px);
}
.preloader__line { width: 0; height: 1px; background: var(--terracota); }
.preloader__counter {
  font-family: var(--font-display); font-size: clamp(3rem, 8vw, 7rem);
  font-weight: 700; color: var(--terracota); opacity: 0; transform: translateY(20px);
}
.preloader__curtain { position: fixed; inset: 0; z-index: 9999; background: var(--azul-petroleo); }

/* ============ CUSTOM CURSOR ============ */
.cursor {
  position: fixed; width: 20px; height: 20px;
  border: 1.5px solid var(--terracota); border-radius: 50%;
  pointer-events: none; z-index: 9998; mix-blend-mode: difference;
  transform: translate(-50%, -50%);
  transition: width 0.35s var(--ease-out), height 0.35s var(--ease-out), border-color 0.35s;
  will-change: transform;
}
.cursor.hovering { width: 60px; height: 60px; border-color: var(--gold-solid); }
@media (hover: none) and (pointer: coarse) { .cursor { display: none !important; } }

/* ============ FILM GRAIN ============ */
.grain { position: fixed; inset: 0; z-index: 9000; pointer-events: none; opacity: 0.03; }

/* ============ SCROLL PROGRESS BAR ============ */
.scroll-progress {
  position: fixed; top: 0; left: 0; width: 100%; height: 3px;
  background: var(--gold-solid); z-index: 10001;
  transform-origin: left; transform: scaleX(0);
  box-shadow: 0 0 10px rgba(212, 168, 75, 0.4);
}

/* ============ NAVBAR ============ */
.navbar {
  position: fixed; top: 0; left: 0; width: 100%;
  z-index: 1000; padding: 20px 0;
  transition: var(--transition);
}

.navbar.scrolled {
  background: rgba(13,77,85,0.97);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  padding: 12px 0;
  box-shadow: 0 4px 30px rgba(0,0,0,0.2);
}

.navbar .container { display: flex; justify-content: space-between; align-items: center; }

.navbar__logo img { height: 56px; width: auto; transition: var(--transition); border-radius: 50%; }
.navbar.scrolled .navbar__logo img { height: 44px; }

.navbar__links { display: flex; align-items: center; gap: 28px; }

.navbar__links a {
  font-family: var(--font-body);
  font-size: 0.85rem; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--white); position: relative;
}

.navbar__links a::after {
  content: ''; position: absolute; bottom: -4px; left: 0;
  width: 0; height: 1.5px;
  background: var(--gold-solid); transition: var(--transition);
}

.navbar__links a:hover::after,
.navbar__links a.active::after { width: 100%; }

.navbar__cta { padding: 10px 24px; font-size: 0.8rem; }

.navbar__toggle {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; background: none; border: none; padding: 8px;
}

.navbar__toggle span { width: 24px; height: 2px; background: var(--white); transition: var(--transition); border-radius: 2px; }
.navbar__toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.navbar__toggle.active span:nth-child(2) { opacity: 0; }
.navbar__toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

/* ============ MOBILE NAV OVERLAY ============ */
.nav__overlay {
  position: fixed; inset: 0; z-index: 7999;
  background: rgba(13, 77, 85, 0.97); backdrop-filter: blur(30px);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 2.5rem;
  clip-path: inset(0 0 100% 0);
  transition: clip-path 0.6s var(--ease-out);
}
.nav__overlay.open { clip-path: inset(0 0 0 0); }
.nav__overlay a {
  font-family: var(--font-display); font-size: clamp(1.8rem, 5vw, 3rem);
  color: var(--sand); letter-spacing: 0.1em;
  opacity: 0; transform: translateY(30px);
}
.nav__overlay.open a { opacity: 1; transform: translateY(0); transition: opacity 0.5s ease, transform 0.5s var(--ease-out); }
.nav__overlay.open a:nth-child(1) { transition-delay: 0.1s; }
.nav__overlay.open a:nth-child(2) { transition-delay: 0.18s; }
.nav__overlay.open a:nth-child(3) { transition-delay: 0.26s; }
.nav__overlay.open a:nth-child(4) { transition-delay: 0.34s; }
.nav__overlay.open a:nth-child(5) { transition-delay: 0.42s; }
.nav__overlay.open a:nth-child(6) { transition-delay: 0.50s; }
.nav__overlay.open a:nth-child(7) { transition-delay: 0.58s; }
.nav__overlay.open a:nth-child(8) { transition-delay: 0.66s; }

/* ============ HERO — Cinematic ============ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 8rem clamp(1.5rem, 4vw, 4rem) 4rem;
  overflow: hidden;
  background: var(--azul-petroleo);
}

#hero-canvas {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
}

.hero__orb {
  position: absolute; border-radius: 50%;
  filter: blur(120px); pointer-events: none; will-change: transform;
}
.hero__orb--1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, var(--terracota), transparent 70%);
  top: -10%; right: -10%; opacity: 0.12;
}
.hero__orb--2 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, var(--sea), transparent 70%);
  bottom: -15%; left: -10%; opacity: 0.1;
}
.hero__orb--3 {
  width: 300px; height: 300px;
  background: radial-gradient(circle, var(--ochre), transparent 70%);
  top: 40%; left: 50%; opacity: 0.06;
}

/* Relogio Kairos (GIF animado - fundo gigante dos headers) */
.hero__clock {
  position: absolute;
  right: -12%; top: 50%; transform: translateY(-50%);
  width: clamp(600px, 65vw, 1100px);
  height: clamp(600px, 65vw, 1100px);
  z-index: 1; pointer-events: none;
  opacity: 0.22;
  mix-blend-mode: screen;
  filter: saturate(1.15) contrast(1.05) brightness(1.05) drop-shadow(0 30px 80px rgba(212, 168, 75, 0.25));
  -webkit-mask-image: radial-gradient(circle at center, #000 58%, transparent 72%);
          mask-image: radial-gradient(circle at center, #000 58%, transparent 72%);
}
.hero__clock img {
  width: 100%; height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

/* ═══════════ BRAND MARK (logo fixa em destaque) ═══════════ */
.brand-mark {
  display: flex;
  justify-content: center;
  align-items: center;
  width: clamp(110px, 14vw, 160px);
  height: auto;
  margin: 56px auto 8px;
}
.brand-mark img {
  width: 100%;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 12px 28px rgba(27, 67, 77, 0.18)) drop-shadow(0 4px 10px rgba(212, 168, 75, 0.22));
  transition: transform 0.6s var(--ease);
}
.brand-mark:hover img {
  transform: scale(1.05) rotate(-1deg);
}
@media (max-width: 768px) {
  .brand-mark {
    width: clamp(90px, 26vw, 130px);
    margin: 40px auto 4px;
  }
}

/* Pre-titulo */
.hero__pre {
  position: relative; z-index: 2;
  font-family: var(--font-body);
  font-size: clamp(0.7rem, 1.2vw, 0.9rem);
  letter-spacing: 0.35em; text-transform: uppercase;
  color: var(--gold-solid);
  margin-bottom: 2rem;
  opacity: 0; transform: translateY(20px);
}

/* Titulo GIGANTE */
.hero__title {
  position: relative; z-index: 2;
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 10vw, 11rem);
  font-weight: 900; line-height: 0.95;
  color: var(--sand);
  margin-bottom: 1.5rem; max-width: 14ch;
  letter-spacing: -0.02em;
}
.hero__title .word { display: inline-block; overflow: hidden; vertical-align: top; padding-bottom: 0.08em; }
.hero__title .word-inner { display: inline-block; transform: translateY(110%); }

/* Subtitulo */
.hero__sub {
  position: relative; z-index: 2;
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.2rem, 2.5vw, 2rem);
  color: var(--sand); opacity: 0;
  margin-bottom: 3rem;
  transform: translateY(20px);
}

/* Acoes */
.hero__actions {
  position: relative; z-index: 2;
  display: flex; align-items: center; gap: 2rem;
  flex-wrap: wrap; justify-content: center;
  opacity: 0; transform: translateY(20px);
}

/* Scroll indicator */
.hero__scroll {
  position: absolute; bottom: 2.5rem; left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 0.5rem;
  opacity: 0; z-index: 3;
}
.hero__scroll span {
  font-size: 0.7rem; letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--sand); opacity: 0.6;
}
.hero__scroll-line {
  width: 1px; height: 40px; background: var(--terracota);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { transform: scaleY(0.3); opacity: 0.3; transform-origin: top; }
  50% { transform: scaleY(1); opacity: 1; }
}

/* ============ PAGE HEADER (subpages) ============ */
.page-header {
  min-height: 50vh;
  display: flex; align-items: center; justify-content: center;
  text-align: center;
  background: var(--azul-petroleo);
  position: relative; overflow: hidden;
  padding: 140px 20px 80px;
}

.page-header::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 20% 80%, rgba(184,58,24,0.06) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 20%, rgba(212,168,75,0.04) 0%, transparent 50%);
  pointer-events: none;
}

.page-header .hero__clock {
  right: auto; left: -12%; top: 55%; transform: translateY(-50%);
  width: clamp(420px, 52vw, 780px); height: clamp(420px, 52vw, 780px);
  opacity: 0.18;
}

.page-header__content { position: relative; z-index: 2; max-width: 700px; }
.page-header__label { color: var(--gold-solid); margin-bottom: 16px; }
.page-header h1 { color: var(--white); margin-bottom: 16px; }
.page-header p { color: var(--sand); font-size: clamp(1.05rem,2vw,1.2rem); font-style: italic; opacity: 0.85; }

/* ============ SECTIONS ============ */
.section { padding: var(--section-padding) 0; position: relative; overflow: hidden; }
.section--light { background: var(--off-white); }
.section--sand  { background: var(--sand); }
.section--dark  { background: var(--azul-petroleo); }
.section--terracota { background: var(--terracota); }
.section--sea { background: var(--sea); }
.section--olive {
  position: relative;
  background:
    radial-gradient(ellipse at 20% 0%, rgba(212, 168, 75, 0.12), transparent 55%),
    radial-gradient(ellipse at 80% 100%, rgba(0, 0, 0, 0.30), transparent 60%),
    linear-gradient(180deg, #536a27 0%, #465a20 45%, #536a27 100%);
  overflow: hidden;
  isolation: isolate;
}
.section--olive::before {
  content: '';
  position: absolute;
  width: 520px;
  height: 520px;
  top: 8%;
  left: -12%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212, 168, 75, 0.28), transparent 70%);
  filter: blur(120px);
  pointer-events: none;
  z-index: 0;
  opacity: 0.55;
}
.section--olive::after {
  content: '';
  position: absolute;
  width: 520px;
  height: 520px;
  bottom: 8%;
  right: -12%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(194, 74, 40, 0.22), transparent 70%);
  filter: blur(120px);
  pointer-events: none;
  z-index: 0;
  opacity: 0.55;
}
.section--olive > .container {
  position: relative;
  z-index: 2;
}
.section--clay { background: var(--clay); }
.section--ochre { background: var(--ochre); }

.section__header { text-align: center; margin-bottom: 60px; }
.section__header .label-terra { color: var(--terracota); }
.section__header .label-gold { color: var(--gold-solid); }
.section__header .label-olive { color: var(--olive); }
.section__header .label-sea { color: var(--sea); }
.section__header .label-clay { color: var(--clay); }
.section__header h2 { margin-bottom: 8px; }
.section--dark h2, .section--terracota h2,
.section--sea h2, .section--olive h2, .section--clay h2 { color: var(--white); }
.section--sea .section-label, .section--olive .section-label,
.section--clay .section-label { color: var(--sand); opacity: 0.95; }

/* ============ GRIDS ============ */
.split-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; }
.grid-2 { display: grid; grid-template-columns: repeat(2,1fr); gap: 32px; }
.grid-4 { display: grid; grid-template-columns: repeat(4,1fr); gap: 28px; }

/* ============ PREVIEW CARDS ============ */
.preview-card {
  background: var(--white); border-radius: 8px;
  padding: 40px 32px; text-align: center;
  transition: var(--transition);
  box-shadow: 0 4px 24px rgba(13,77,85,0.06);
  position: relative;
  will-change: transform;
  transform-style: preserve-3d;
}

.preview-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold-solid), var(--gold-light));
  opacity: 0; transition: var(--transition); border-radius: 8px 8px 0 0;
}

.preview-card:hover { transform: translateY(-8px); box-shadow: 0 20px 50px rgba(13,77,85,0.12); }
.preview-card:hover::before { opacity: 1; }

.preview-card__icon {
  width: 60px; height: 60px; margin: 0 auto 20px;
  border-radius: 50%; border: 1.5px solid rgba(212,168,75,0.35);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold-solid);
}

.preview-card__icon svg { width: 26px; height: 26px; }
.preview-card h3 { color: var(--azul-petroleo); margin-bottom: 12px; }
.preview-card p { color: var(--sea); font-size: 0.95rem; margin-bottom: 20px; opacity: 0.8; }

.preview-card__link {
  font-family: var(--font-body); font-size: 0.85rem; font-weight: 700;
  color: var(--terracota); letter-spacing: 0.05em;
  display: inline-flex; align-items: center; gap: 6px; text-transform: uppercase;
}
.preview-card__link svg { width: 14px; height: 14px; transition: var(--transition); }
.preview-card__link:hover svg { transform: translateX(5px); }

/* ============ CHAMADA EMOCIONAL ============ */
.chamada__content { max-width: 780px; margin: 0 auto; text-align: center; position: relative; z-index: 2; }

.chamada__quote {
  font-family: var(--font-display);
  font-size: clamp(1.8rem,4vw,2.8rem); font-weight: 400; font-style: italic;
  color: var(--white); line-height: 1.4; margin-bottom: 24px;
}

.chamada__quote::before {
  content: '\201C'; display: block; font-size: 5rem;
  color: var(--gold-solid); line-height: 1; margin-bottom: 8px; opacity: 0.5;
}

.chamada__author { font-family: var(--font-body); font-size: 1rem; color: var(--sand); letter-spacing: 0.1em; }

/* ============ FUNDADORA PREVIEW ============ */
.fundadora-preview { display: grid; grid-template-columns: auto 1fr; gap: 48px; align-items: center; }

.fundadora-preview__circle {
  width: 240px; height: 240px; border-radius: 50%;
  background: var(--sea);
  display: flex; align-items: center; justify-content: center;
  flex-direction: column; gap: 8px; color: var(--sand); opacity: 0.6;
  position: relative; box-shadow: 0 24px 60px rgba(0,0,0,0.25);
}

.fundadora-preview__circle::before {
  content: ''; position: absolute; inset: -3px; border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-solid), var(--gold-light));
  z-index: -1; opacity: 0.5;
}

.fundadora-preview__circle svg { width: 48px; height: 48px; }
.fundadora-preview__text h2 { color: var(--white); margin-bottom: 16px; }
.fundadora-preview__text p { color: var(--sand); opacity: 0.85; margin-bottom: 24px; }

/* ============ TESTEMUNHO CARDS ============ */
.testemunho-card {
  background: var(--white); padding: 36px; border-radius: 8px;
  box-shadow: 0 4px 24px rgba(13,77,85,0.05); transition: var(--transition);
  will-change: transform; transform-style: preserve-3d;
}

.testemunho-card:hover { transform: translateY(-6px); box-shadow: 0 16px 48px rgba(13,77,85,0.1); }

.testemunho-card__quote-icon { font-family: var(--font-display); font-size: 3.5rem; color: var(--gold-solid); line-height: 1; opacity: 0.4; margin-bottom: 12px; }
.testemunho-card p { font-style: italic; color: var(--sea); margin-bottom: 20px; font-size: 1rem; line-height: 1.8; }
.testemunho-card__author { display: flex; align-items: center; gap: 12px; }

.testemunho-card__avatar {
  width: 44px; height: 44px; border-radius: 50%; background: var(--azul-petroleo);
  display: flex; align-items: center; justify-content: center;
  color: var(--sand); font-family: var(--font-display); font-size: 1.1rem; font-weight: 700; flex-shrink: 0;
}

.testemunho-card__name { font-family: var(--font-display); font-weight: 700; font-size: 0.95rem; color: var(--azul-petroleo); }
.testemunho-card__role { font-size: 0.8rem; color: var(--terracota); opacity: 0.8; }

/* ============ EVENTO CARDS ============ */
.evento-card {
  background: var(--white); border-radius: 8px; overflow: hidden;
  transition: var(--transition); position: relative;
  box-shadow: 0 4px 24px rgba(13,77,85,0.06);
  will-change: transform; transform-style: preserve-3d;
}

.evento-card:hover { transform: translateY(-8px); box-shadow: 0 24px 60px rgba(13,77,85,0.14); }

.evento-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 3px; background: linear-gradient(90deg, var(--gold-solid), var(--gold-light));
  opacity: 0; transition: var(--transition); z-index: 2;
}
.evento-card:hover::before { opacity: 1; }

.evento-card__image {
  height: 220px; background: var(--azul-petroleo);
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
}

.evento-card__date {
  position: absolute; top: 16px; right: 16px;
  background: var(--terracota); color: var(--white);
  padding: 10px 16px; border-radius: 4px; text-align: center;
  z-index: 2; font-family: var(--font-display);
}

.evento-card__date-day { font-size: 1.6rem; font-weight: 700; line-height: 1; }
.evento-card__date-month { font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.1em; opacity: 0.9; }

.evento-card__image-placeholder { color: var(--sand); opacity: 0.25; z-index: 1; }
.evento-card__image-placeholder svg { width: 48px; height: 48px; }

.evento-card__body { padding: 28px; }
.evento-card__body h3 { color: var(--azul-petroleo); margin-bottom: 10px; }

.evento-card__location {
  font-size: 0.85rem; color: var(--terracota); margin-bottom: 14px;
  display: flex; align-items: center; gap: 6px; font-weight: 600;
}
.evento-card__location svg { width: 14px; height: 14px; flex-shrink: 0; }
.evento-card__body p { font-size: 0.95rem; color: var(--sea); margin-bottom: 20px; opacity: 0.85; }
.evento-card__body .btn { width: 100%; justify-content: center; padding: 12px 24px; font-size: 0.85rem; }

/* ============ FUNDADORA FULL PAGE ============ */
.fundadora-full { padding: var(--section-padding) 0; }

.fundadora-full__grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 60px; align-items: start; }

.fundadora-full__image-frame {
  aspect-ratio: 3/4; border-radius: 200px 200px 8px 8px;
  overflow: hidden; background: var(--azul-petroleo); position: relative;
  box-shadow: 0 30px 60px rgba(13,77,85,0.2);
}

.fundadora-full__image-frame::after {
  content: ''; position: absolute; inset: -2px;
  border-radius: 200px 200px 8px 8px;
  border: 1.5px solid rgba(212,168,75,0.3); pointer-events: none;
}

.fundadora-full__placeholder {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  flex-direction: column; gap: 12px; color: var(--sand); opacity: 0.4;
}
.fundadora-full__placeholder svg { width: 60px; height: 60px; }

.fundadora-full__text h2 { color: var(--azul-petroleo); margin-bottom: 20px; }
.fundadora-full__text h3 { color: var(--terracota); margin-bottom: 24px; font-style: italic; font-weight: 400; }
.fundadora-full__text p { color: var(--sea); margin-bottom: 16px; }

.fundadora-full__missao {
  margin-top: 40px; padding: 40px; background: var(--azul-petroleo);
  border-radius: 8px; text-align: center;
}
.fundadora-full__missao h3 { color: var(--gold-solid); margin-bottom: 12px; }
.fundadora-full__missao p { color: var(--sand); font-style: italic; }

/* ============ COMUNIDADE ============ */
.comunidade-content { padding: var(--section-padding) 0; }
.comunidade-content__intro { max-width: 700px; margin: 0 auto 60px; text-align: center; }
.comunidade-content__intro h2 { color: var(--azul-petroleo); margin-bottom: 16px; }
.comunidade-content__intro p { color: var(--sea); }

.beneficio-card {
  text-align: center; padding: 40px 28px; background: var(--white);
  border-radius: 8px; box-shadow: 0 4px 24px rgba(13,77,85,0.05); transition: var(--transition);
  will-change: transform; transform-style: preserve-3d;
}
.beneficio-card:hover { transform: translateY(-6px); box-shadow: 0 16px 50px rgba(13,77,85,0.1); }

.beneficio-card__icon {
  width: 64px; height: 64px; margin: 0 auto 20px;
  border-radius: 50%; background: var(--azul-petroleo);
  display: flex; align-items: center; justify-content: center; color: var(--gold-solid);
}
.beneficio-card__icon svg { width: 28px; height: 28px; }
.beneficio-card h3 { color: var(--azul-petroleo); margin-bottom: 10px; }
.beneficio-card p { color: var(--sea); font-size: 0.95rem; opacity: 0.8; }

.como-participar { padding: var(--section-padding) 0; background: var(--azul-petroleo); text-align: center; }
.como-participar h2 { color: var(--white); margin-bottom: 16px; }
.como-participar > .container > p { color: var(--sand); margin-bottom: 48px; max-width: 600px; margin-left: auto; margin-right: auto; opacity: 0.85; }

.passos { display: grid; grid-template-columns: repeat(3,1fr); gap: 32px; margin-bottom: 48px; }
.passo { text-align: center; padding: 20px; }
.passo__num { font-family: var(--font-display); font-size: 3rem; font-weight: 700; color: var(--gold-solid); opacity: 0.4; margin-bottom: 12px; }
.passo h4 { font-family: var(--font-display); color: var(--white); margin-bottom: 8px; font-size: 1.15rem; }
.passo p { color: var(--sand); font-size: 0.9rem; opacity: 0.7; }

/* ============ CONTEUDOS ============ */
.conteudos-content { padding: var(--section-padding) 0; }

.conteudos__tags { display: flex; justify-content: center; gap: 12px; flex-wrap: wrap; margin-bottom: 48px; }

.conteudos__tag {
  padding: 10px 24px; border: 1.5px solid var(--azul-petroleo);
  border-radius: 30px; font-family: var(--font-body); font-size: 0.85rem;
  font-weight: 700; letter-spacing: 0.05em; color: var(--azul-petroleo);
  cursor: pointer; transition: var(--transition); background: transparent;
}
.conteudos__tag:hover, .conteudos__tag.active { background: var(--azul-petroleo); color: var(--white); }

.conteudo-card {
  background: var(--white); border-radius: 8px; overflow: hidden;
  transition: var(--transition); box-shadow: 0 2px 16px rgba(13,77,85,0.05);
  will-change: transform; transform-style: preserve-3d;
}
.conteudo-card:hover { transform: translateY(-6px); box-shadow: 0 16px 48px rgba(13,77,85,0.1); }

.conteudo-card__image { height: 180px; background: var(--azul-petroleo); display: flex; align-items: center; justify-content: center; color: var(--sand); opacity: 0.3; }
.conteudo-card__image svg { width: 40px; height: 40px; }

.conteudo-card__cat {
  display: inline-block; padding: 4px 14px;
  background: rgba(184,58,24,0.08); color: var(--terracota);
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; border-radius: 3px; margin-bottom: 12px;
}

.conteudo-card__body { padding: 28px; }
.conteudo-card__body h3 { color: var(--azul-petroleo); margin-bottom: 10px; line-height: 1.4; }
.conteudo-card__body p { font-size: 0.9rem; color: var(--sea); opacity: 0.8; margin-bottom: 16px; }

.conteudo-card__link {
  font-family: var(--font-body); font-size: 0.85rem; font-weight: 700;
  color: var(--terracota); letter-spacing: 0.05em;
  display: inline-flex; align-items: center; gap: 6px;
}
.conteudo-card__link svg { width: 14px; height: 14px; transition: var(--transition); }
.conteudo-card__link:hover svg { transform: translateX(5px); }

/* ============ CONTATO ============ */
.contato-content { padding: var(--section-padding) 0; }
.contato__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }

.contato__info .section-label { color: var(--terracota); margin-bottom: 12px; }
.contato__info h2 { color: var(--azul-petroleo); margin-bottom: 20px; }
.contato__info > p { color: var(--sea); margin-bottom: 32px; opacity: 0.85; }

.contato__channels { display: flex; flex-direction: column; gap: 20px; }

.contato__channel { display: flex; align-items: center; gap: 16px; color: var(--azul-petroleo); transition: var(--transition); }
.contato__channel:hover { color: var(--terracota); }

.contato__channel-icon {
  width: 50px; height: 50px; border-radius: 50%;
  border: 1.5px solid var(--sand); background: var(--off-white);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; transition: var(--transition); color: var(--terracota);
}
.contato__channel:hover .contato__channel-icon { border-color: var(--terracota); background: rgba(184,58,24,0.05); }
.contato__channel-icon svg { width: 20px; height: 20px; }
.contato__channel-label { font-size: 0.8rem; opacity: 0.6; margin-bottom: 2px; }
.contato__channel-value { font-weight: 700; font-size: 0.95rem; }

.contato__socials { display: flex; gap: 12px; margin-top: 36px; }

.contato__social {
  width: 46px; height: 46px; border-radius: 50%;
  border: 1.5px solid var(--sand);
  display: flex; align-items: center; justify-content: center;
  color: var(--azul-petroleo); transition: var(--transition);
}
.contato__social:hover { border-color: var(--terracota); color: var(--terracota); background: rgba(184,58,24,0.05); }
.contato__social svg { width: 16px; height: 16px; }

/* Formularios */
.contato__form, .inscricao__form {
  background: var(--azul-petroleo); padding: 44px; border-radius: 8px;
  box-shadow: 0 24px 60px rgba(13,77,85,0.2);
}
.contato__form h3, .inscricao__form h3 { color: var(--white); margin-bottom: 28px; font-size: 1.3rem; }

.form-group { margin-bottom: 20px; position: relative; }

.form-group label {
  display: block; font-size: 0.8rem; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--sand); margin-bottom: 8px; opacity: 0.8;
}

.form-group input, .form-group textarea, .form-group select {
  width: 100%; padding: 14px 18px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(229,211,179,0.15);
  border-radius: 4px; color: var(--white);
  font-family: var(--font-body); font-size: 1rem;
  transition: var(--transition); outline: none;
}
.form-group input::placeholder, .form-group textarea::placeholder { color: var(--sand); opacity: 0.4; }
.form-group input:focus, .form-group textarea:focus, .form-group select:focus { border-color: var(--gold-solid); background: rgba(255,255,255,0.1); }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-group select option { background: var(--azul-petroleo); color: var(--white); }

/* ============ INSCRICAO ============ */
.inscricao-content { padding: var(--section-padding) 0; }
.inscricao__grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 60px; align-items: start; }

.inscricao__info h2 { color: var(--azul-petroleo); margin-bottom: 16px; }
.inscricao__info > p { color: var(--sea); margin-bottom: 32px; }

.inscricao__benefit { display: flex; gap: 16px; align-items: flex-start; margin-bottom: 24px; }

.inscricao__benefit-icon {
  width: 44px; height: 44px; border-radius: 50%; background: var(--azul-petroleo);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; color: var(--gold-solid);
}
.inscricao__benefit-icon svg { width: 20px; height: 20px; }
.inscricao__benefit h4 { font-size: 1rem; color: var(--azul-petroleo); margin-bottom: 4px; }
.inscricao__benefit p { font-size: 0.9rem; color: var(--sea); opacity: 0.8; }

/* ============ CTA SECTION ============ */
.cta-section {
  padding: var(--section-padding) 0; background: var(--terracota);
  text-align: center; position: relative; overflow: hidden;
}

.cta-section::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(255,255,255,0.05) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 50%, rgba(212,168,75,0.08) 0%, transparent 50%);
  pointer-events: none;
}

.cta-section__content { position: relative; z-index: 2; max-width: 650px; margin: 0 auto; }
.cta-section h2 { color: var(--white); margin-bottom: 20px; }
.cta-section p { color: var(--sand); margin-bottom: 36px; font-size: 1.1rem; opacity: 0.9; }
.cta-section .btn-secondary { border-color: var(--white); color: var(--white); background: rgba(255,255,255,0.08); }
.cta-section .btn-secondary:hover { background: rgba(255,255,255,0.18); }

/* ============ FAQ ============ */
.faq__list { max-width: 800px; margin: 0 auto; }
.faq__item { border-bottom: 1px solid rgba(212, 168, 75, 0.12); }
.faq__question {
  width: 100%; display: flex; align-items: center; justify-content: space-between;
  padding: 1.8rem 0; font-family: var(--font-display); font-size: clamp(1rem, 1.5vw, 1.2rem);
  font-weight: 700; color: var(--azul-petroleo); text-align: left;
  background: none; border: none; cursor: pointer; transition: color 0.3s;
}
.faq__question:hover { color: var(--terracota); }
.faq__icon {
  font-family: var(--font-body); font-size: 1.5rem; color: var(--terracota);
  transition: transform 0.4s var(--ease-out); flex-shrink: 0; margin-left: 1rem;
}
.faq__item.active .faq__icon { transform: rotate(45deg); }
.faq__answer { height: 0; overflow: hidden; }
.faq__answer-inner {
  padding-bottom: 1.5rem; font-size: 1rem; color: var(--sea);
  line-height: 1.8; max-width: 90%;
}

/* Dark section FAQ overrides */
.section--dark .faq__question { color: var(--sand); }
.section--dark .faq__answer-inner { color: var(--sand); opacity: 0.8; }

/* ============ MARQUEE ============ */
.marquee { background: var(--terracota); padding: 1.5rem 0; overflow: hidden; white-space: nowrap; }
.marquee__track { display: inline-flex; will-change: transform; }
.marquee__item {
  font-family: var(--font-display); font-size: clamp(1rem, 2vw, 1.4rem);
  font-weight: 700; color: var(--white); letter-spacing: 0.1em;
  text-transform: uppercase; padding: 0 2rem; flex-shrink: 0;
}
.marquee__sep { color: rgba(255,255,255,0.4); padding: 0 1rem; flex-shrink: 0; }

/* ============ FOOTER ============ */
.footer { background: #0a3a40; padding: 48px 0 28px; }

.footer__top {
  display: flex; justify-content: space-between; align-items: center;
  padding-bottom: 28px; border-bottom: 1px solid rgba(212,168,75,0.1); margin-bottom: 28px;
}

.footer__logo img { height: 48px; border-radius: 50%; opacity: 0.8; }

.footer__links { display: flex; gap: 28px; }

.footer__links a {
  font-size: 0.8rem; font-weight: 700; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--sand); opacity: 0.5;
}
.footer__links a:hover { opacity: 1; color: var(--gold-solid); }

.footer__bottom { text-align: center; }
.footer__bottom p { font-size: 0.8rem; color: var(--sand); opacity: 0.35; }

/* Social row no rodapé — Instagram oficial */
.footer__social{
  display:flex;
  justify-content:center;
  padding: 18px 0 24px;
}
.footer__social-link{
  display:inline-flex;
  align-items:center;
  gap:10px;
  color: var(--sand);
  opacity: .58;
  font-family: var(--font-body);
  font-size: .8rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  text-decoration: none;
  transition: opacity .25s, color .25s, transform .35s;
}
.footer__social-link svg{ width:20px; height:20px; transition: transform .35s ease; }
.footer__social-link:hover{ opacity: 1; color: var(--gold-solid); }
.footer__social-link:hover svg{ transform: scale(1.08) rotate(-3deg); }

/* ============ WORD/CHAR ANIMATION HELPERS ============ */
.word { display: inline-block; overflow: hidden; }
.char { display: inline-block; will-change: transform; }

/* ============ SECTION DIVIDERS ============ */
.section--terracota::before,
.cta-section::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-solid), transparent);
  opacity: 0.3;
}

/* ============ RESPONSIVIDADE ============ */
@media (max-width: 1180px) {
  .navbar__links { gap: 20px; }
  .navbar__links a { font-size: 0.78rem; letter-spacing: 0.08em; }
}

@media (max-width: 1024px) {
  .split-grid { gap: 40px; }
  .grid-3 { grid-template-columns: repeat(2,1fr); }
  .grid-4 { grid-template-columns: repeat(2,1fr); gap: 24px; }
  .fundadora-full__grid { gap: 40px; }
  .navbar__links { gap: 16px; }
  .navbar__links a { font-size: 0.74rem; letter-spacing: 0.06em; }
  .navbar__logo img { height: 48px; }
  .navbar.scrolled .navbar__logo img { height: 40px; }
}

@media (max-width: 900px) {
  .navbar__links { display: none; }
  .navbar__toggle { display: flex; }
  .navbar__links.open {
    display: flex; flex-direction: column; position: absolute;
    top: 100%; left: 0; right: 0;
    background: rgba(13,77,85,0.98); backdrop-filter: blur(14px);
    padding: 28px; gap: 20px; text-align: center;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
  }
}

@media (max-width: 768px) {
  .navbar__links { display: none; }
  .navbar__toggle { display: flex; }

  .navbar__links.open {
    display: flex; flex-direction: column; position: absolute;
    top: 100%; left: 0; right: 0;
    background: rgba(13,77,85,0.98); backdrop-filter: blur(14px);
    padding: 28px; gap: 20px; text-align: center;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
  }

  .hero { padding-top: 120px; }
  .hero__title { font-size: clamp(3rem, 14vw, 5rem); }
  .hero__actions { flex-direction: column; align-items: center; }

  .hero__clock {
    right: auto; left: 50%; top: auto; bottom: -18%;
    transform: translateX(-50%);
    width: 130vw; height: 130vw; opacity: 0.18;
  }

  .page-header .hero__clock {
    left: 50%; top: auto; bottom: -25%;
    transform: translateX(-50%); width: 95vw; height: 95vw;
    opacity: 0.15;
  }

  .split-grid { grid-template-columns: 1fr; }
  .grid-3 { grid-template-columns: 1fr; max-width: 420px; margin-left: auto; margin-right: auto; }
  .grid-2 { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: 1fr; max-width: 360px; margin-left: auto; margin-right: auto; gap: 22px; }

  .fundadora-preview { grid-template-columns: 1fr; text-align: center; }
  .fundadora-preview__circle { margin: 0 auto; width: 180px; height: 180px; }

  .fundadora-full__grid { grid-template-columns: 1fr; }
  .fundadora-full__grid > div:first-child { max-width: 320px; margin: 0 auto; }

  .passos { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto 48px; }

  .contato__grid { grid-template-columns: 1fr; gap: 48px; }
  .inscricao__grid { grid-template-columns: 1fr; gap: 40px; }

  .footer__top { flex-direction: column; gap: 20px; }
  .footer__links { flex-wrap: wrap; justify-content: center; gap: 16px; }

  .cursor { display: none !important; }
  body { cursor: auto !important; }
}

@media (max-width: 480px) {
  .contato__form, .inscricao__form { padding: 28px 20px; }
  .btn { padding: 14px 28px; font-size: 0.9rem; }
}

/* ========================================
   NOVOS COMPONENTES — ARQUITETURA v1.1
======================================== */

/* ============ DROPDOWN NAVBAR ============ */
.navbar__links .has-dropdown {
  position: relative;
}
.navbar__links .has-dropdown > a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.navbar__links .has-dropdown > a::before {
  content: '';
  display: inline-block;
  width: 6px; height: 6px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
  margin-left: 4px;
  transition: transform 0.3s ease;
}
.navbar__links .has-dropdown:hover > a::before {
  transform: rotate(-135deg) translateY(-1px);
}
.dropdown-menu {
  position: absolute;
  top: 100%; left: 50%;
  transform: translateX(-50%) translateY(10px);
  min-width: 280px;
  background: rgba(13, 77, 85, 0.98);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(212, 168, 75, 0.2);
  border-radius: 8px;
  padding: 12px 0;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
  z-index: 1001;
}
.navbar__links .has-dropdown:hover .dropdown-menu,
.navbar__links .has-dropdown:focus-within .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(12px);
}
.dropdown-menu a {
  display: block;
  padding: 10px 24px;
  font-size: 0.8rem;
  color: var(--sand);
  letter-spacing: 0.08em;
  white-space: nowrap;
  transition: all 0.25s ease;
}
.dropdown-menu a::after { display: none; }
.dropdown-menu a:hover {
  background: rgba(212, 168, 75, 0.12);
  color: var(--gold-light);
  padding-left: 32px;
}

/* ============ TABS CONTATO ============ */
.contato-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 40px;
  border-bottom: 1px solid rgba(13, 77, 85, 0.15);
  padding-bottom: 0;
}
.contato-tab {
  padding: 14px 22px;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--sea);
  background: transparent;
  border: none;
  border-bottom: 3px solid transparent;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}
.contato-tab:hover {
  color: var(--terracota);
}
.contato-tab.active {
  color: var(--terracota);
  border-bottom-color: var(--gold-solid);
}
/* Tab cores por projeto (mediterranean palette) */
.contato-tab[data-tab="sorriso-mundial"].active { color: var(--olive); border-bottom-color: var(--olive); }
.contato-tab[data-tab="mulheres-chamadas-maes"].active { color: var(--clay); border-bottom-color: var(--clay); }
.contato-tab[data-tab="toca-as-nacoes-ide"].active { color: var(--sea); border-bottom-color: var(--sea); }
.contato-tab[data-tab="charme-de-menina"].active { color: var(--ochre); border-bottom-color: var(--ochre); }
.contato-tab[data-tab="exercito-valente"].active { color: var(--terracota); border-bottom-color: var(--terracota); }
.contato-tab[data-tab="eu-me-deixo-curar"].active { color: var(--azul-petroleo); border-bottom-color: var(--gold-solid); }
.contato-tab[data-tab="sorriso-mundial"]:hover { color: var(--olive); }
.contato-tab[data-tab="mulheres-chamadas-maes"]:hover { color: var(--clay); }
.contato-tab[data-tab="toca-as-nacoes-ide"]:hover { color: var(--sea); }
.contato-tab[data-tab="charme-de-menina"]:hover { color: var(--ochre); }
.contato-tab[data-tab="exercito-valente"]:hover { color: var(--terracota); }
.contato-panel {
  display: none;
  animation: fadeInUp 0.4s var(--ease-out);
}
.contato-panel.active {
  display: block;
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}
.contato-panel__intro {
  background: var(--sand);
  border-left: 4px solid var(--gold-solid);
  padding: 20px 24px;
  border-radius: 8px;
  margin-bottom: 32px;
  font-style: italic;
  color: var(--sea);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-bottom: 18px;
}
.form-row--triple { grid-template-columns: 1fr 1fr 1fr; }
.form-field {
  display: flex;
  flex-direction: column;
  margin-bottom: 18px;
}
.form-field label {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--sea);
  margin-bottom: 8px;
}
.form-field label .req { color: var(--terracota); margin-left: 4px; }
.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 14px 16px;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--azul-petroleo);
  background: var(--off-white);
  border: 1.5px solid rgba(13, 77, 85, 0.2);
  border-radius: 6px;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--gold-solid);
  box-shadow: 0 0 0 3px rgba(212, 168, 75, 0.15);
}
.form-field textarea { resize: vertical; min-height: 90px; }
.form-field--honeypot { position: absolute; left: -9999px; opacity: 0; pointer-events: none; }
.form-radio-group, .form-check-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 4px;
}
.form-radio-group label, .form-check-group label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--sea);
  text-transform: none;
  letter-spacing: 0;
  font-weight: 400;
  cursor: pointer;
}
.form-radio-group input, .form-check-group input {
  width: 18px; height: 18px;
  accent-color: var(--terracota);
  cursor: pointer;
}
.form-lgpd {
  background: rgba(212, 168, 75, 0.08);
  border: 1px solid rgba(212, 168, 75, 0.3);
  border-radius: 6px;
  padding: 16px;
  margin-top: 20px;
}
.form-lgpd label {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.92rem;
  color: var(--sea);
  cursor: pointer;
}
.form-lgpd input { margin-top: 3px; }
.form-hint {
  font-size: 0.85rem;
  color: var(--sea);
  opacity: 0.75;
  margin-top: 20px;
  text-align: center;
  font-style: italic;
}

/* ============ PROJECT CARDS ============ */
.projeto-card {
  position: relative;
  background: var(--white);
  border-radius: 14px;
  padding: 40px 32px;
  text-align: center;
  border: 1px solid rgba(212, 168, 75, 0.25);
  transition: transform 0.5s var(--ease-out), box-shadow 0.5s var(--ease-out);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 340px;
}
.projeto-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--gold-solid), var(--terracota), var(--gold-solid));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.6s var(--ease-out);
}
.projeto-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 80px rgba(13, 77, 85, 0.15);
}
.projeto-card:hover::before { transform: scaleX(1); }
.projeto-card__icon {
  width: 72px; height: 72px;
  margin: 0 auto 24px;
  border-radius: 50%;
  background: var(--sand);
  display: flex; align-items: center; justify-content: center;
  color: var(--terracota);
  border: 2px solid var(--gold-solid);
}
.projeto-card__icon svg { width: 36px; height: 36px; stroke: currentColor; fill: none; stroke-width: 1.5; }
.projeto-card h3 {
  color: var(--azul-petroleo);
  margin-bottom: 14px;
}
.projeto-card p {
  color: var(--sea);
  font-size: 1rem;
  flex: 1;
}
.projeto-card__link {
  margin-top: 20px;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--terracota);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.projeto-card__link::after {
  content: '→';
  transition: transform 0.3s ease;
}
.projeto-card:hover .projeto-card__link::after { transform: translateX(4px); }
.projeto-card--em-breve { opacity: 0.7; }
.projeto-card--em-breve .projeto-card__link { color: var(--sea); }

/* ============ PILLAR CARDS (HOME — 3 pilares) ============ */
.pillar-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 60px;
}
.pillar-grid--4 {
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.pillar-grid--4 .pillar-card {
  padding: 38px 26px 34px;
}
.section--olive .pillar-grid--4 .pillar-card {
  padding: 38px 26px 34px;
}
.section--olive .pillar-grid--4 .pillar-card h3 {
  font-size: clamp(1.2rem, 1.4vw, 1.45rem);
}
.section--olive .pillar-grid--4 .pillar-card p {
  font-size: 0.9rem;
}
@media (max-width: 1180px) {
  .pillar-grid--4 { grid-template-columns: repeat(2, 1fr); gap: 24px; }
}
.pillar-card {
  background: var(--off-white);
  border: 1px solid rgba(212, 168, 75, 0.3);
  border-radius: 12px;
  padding: 40px 32px;
  text-align: center;
  transition: transform 0.5s var(--ease-out), box-shadow 0.5s var(--ease-out);
}
.pillar-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(13, 77, 85, 0.1);
}
.pillar-card__num {
  font-family: var(--font-display);
  font-size: 2.4rem;
  color: var(--gold-solid);
  font-weight: 700;
  line-height: 1;
  margin-bottom: 12px;
}
.pillar-card h3 {
  color: var(--azul-petroleo);
  margin-bottom: 12px;
}
.pillar-card p {
  color: var(--sea);
  font-size: 1rem;
}

/* ============ LIVROS DA VISAO ============ */
.livro-card {
  background: var(--off-white);
  border-radius: 12px;
  padding: 32px 24px;
  text-align: center;
  border: 1px solid rgba(212, 168, 75, 0.2);
  transition: transform 0.4s var(--ease-out);
}
.livro-card:hover { transform: translateY(-8px); }
.livro-card__cover {
  aspect-ratio: 2/3;
  background: linear-gradient(135deg, var(--azul-petroleo), var(--sea));
  border-radius: 8px;
  margin-bottom: 20px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 30px rgba(0,0,0,0.15);
}
.livro-card__cover::before {
  content: '';
  position: absolute;
  inset: 12px;
  border: 1px solid var(--gold-solid);
  border-radius: 4px;
  opacity: 0.4;
}
.livro-card__cover span {
  font-family: var(--font-display);
  color: var(--gold-light);
  font-size: 2.4rem;
  opacity: 0.3;
}
.livro-card h4 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--azul-petroleo);
  margin-bottom: 8px;
  line-height: 1.3;
}
.livro-card p {
  font-size: 0.88rem;
  color: var(--sea);
  font-style: italic;
}

/* ============ LOJA PLACEHOLDER ============ */
.loja-placeholder {
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 120px 20px 80px;
  background: var(--azul-petroleo);
  color: var(--sand);
  text-align: center;
  position: relative;
}
.loja-placeholder__content { max-width: 600px; }
.loja-placeholder h1 {
  color: var(--gold-light);
  font-style: italic;
  margin-bottom: 20px;
}
.loja-placeholder p { color: var(--sand); margin-bottom: 24px; font-size: 1.1rem; }
.loja-placeholder .btn { margin-top: 12px; }

/* ============ RESPONSIVE — NOVOS COMPONENTES ============ */
@media (max-width: 1024px) {
  .pillar-grid { grid-template-columns: 1fr; gap: 24px; }
}
@media (max-width: 768px) {
  .navbar__links .has-dropdown .dropdown-menu {
    position: static;
    transform: none;
    opacity: 1;
    visibility: visible;
    background: transparent;
    border: none;
    box-shadow: none;
    padding: 0;
  }
  .contato-tabs {
    flex-direction: column;
    gap: 0;
    border-bottom: none;
  }
  .contato-tab {
    width: 100%;
    text-align: left;
    border: 1px solid rgba(13, 77, 85, 0.15);
    border-radius: 6px;
    margin-bottom: 8px;
  }
  .contato-tab.active {
    background: var(--azul-petroleo);
    color: var(--sand);
    border-color: var(--gold-solid);
  }
  .form-row, .form-row--triple { grid-template-columns: 1fr; }
}

/* ============ BLOCOS DE CONTEÚDO INSTITUCIONAL ============ */
/* Text block — conteúdo editorial em coluna única */
.text-block {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}
.text-block--left { text-align: left; margin: 0; }
.text-block h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.8rem);
  color: var(--azul-petroleo);
  line-height: 1.15;
  margin: 10px 0 6px;
  font-weight: 700;
}
.section--dark .text-block h2,
.section--terracota .text-block h2,
.section--sea .text-block h2,
.section--olive .text-block h2,
.section--clay .text-block h2 { color: var(--off-white); }
.text-block .gold-line { margin: 18px auto 28px; }
.text-block p {
  font-family: var(--font-body);
  font-size: 1.08rem;
  line-height: 1.75;
  color: var(--azul-petroleo);
  margin-bottom: 20px;
}
.section--dark .text-block p,
.section--terracota .text-block p,
.section--sea .text-block p,
.section--olive .text-block p,
.section--clay .text-block p { color: var(--sand); }
.text-block p:last-child { margin-bottom: 0; }

/* Quote block — citações longas, texto original */
.quote-block {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  padding: 20px 0;
}
.quote-block .section-label { color: var(--terracota); margin-bottom: 20px; }
.section--dark .quote-block .section-label,
.section--sand .quote-block .section-label { color: var(--terracota); }
.quote-block blockquote {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2vw, 1.55rem);
  line-height: 1.55;
  font-style: italic;
  color: var(--azul-petroleo);
  font-weight: 400;
  position: relative;
  padding: 20px 30px;
  border-left: none;
  margin: 0;
}
.section--dark .quote-block blockquote,
.section--sea .quote-block blockquote,
.section--olive .quote-block blockquote,
.section--clay .quote-block blockquote,
.section--terracota .quote-block blockquote { color: var(--off-white); }
.section--sand .quote-block blockquote { color: var(--azul-petroleo); }
.section--sea .quote-block blockquote strong,
.section--olive .quote-block blockquote strong,
.section--clay .quote-block blockquote strong,
.section--terracota .quote-block blockquote strong { color: var(--gold-light); }
.quote-block blockquote::before {
  content: '"';
  font-family: var(--font-display);
  font-size: 6rem;
  color: var(--gold-solid);
  opacity: 0.35;
  position: absolute;
  top: -20px;
  left: 0;
  line-height: 1;
}
.quote-block blockquote strong { font-weight: 700; font-style: normal; color: var(--terracota); }

/* ═══════════ LEADER PORTRAIT — Foto e card fundidos ═══════════ */
.leader-portrait {
  position: relative;
  width: 100%;
  aspect-ratio: 3 / 4;
  margin: 0;
  border-radius: 12px;
  overflow: hidden;
  isolation: isolate;
  background: linear-gradient(160deg, var(--sea) 0%, var(--azul-petroleo) 100%);
  box-shadow:
    0 0 0 1px rgba(212, 168, 75, 0.5),
    0 24px 60px rgba(13, 77, 85, 0.28),
    0 10px 24px rgba(194, 74, 40, 0.18);
  transition: transform 0.6s var(--ease), box-shadow 0.6s var(--ease);
}
.leader-portrait:hover {
  transform: translateY(-4px);
  box-shadow:
    0 0 0 1px rgba(212, 168, 75, 0.75),
    0 30px 70px rgba(13, 77, 85, 0.35),
    0 14px 30px rgba(194, 74, 40, 0.25);
}

/* Foto ocupa TODO o cartão */
.leader-portrait__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 22%;
  z-index: 1;
  transition: transform 1s var(--ease);
}
.leader-portrait:hover .leader-portrait__img {
  transform: scale(1.05);
}

/* Gradiente que funde a imagem com a cor do card na parte de baixo */
.leader-portrait::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background: linear-gradient(
    to top,
    var(--clay) 0%,
    var(--clay) 28%,
    rgba(199, 109, 55, 0.92) 38%,
    rgba(199, 109, 55, 0.55) 48%,
    rgba(199, 109, 55, 0.18) 58%,
    transparent 70%
  );
}
.leader-portrait--terracota::after {
  background: linear-gradient(
    to top,
    var(--terracota) 0%,
    var(--terracota) 28%,
    rgba(194, 74, 40, 0.92) 38%,
    rgba(194, 74, 40, 0.55) 48%,
    rgba(194, 74, 40, 0.18) 58%,
    transparent 70%
  );
}
.leader-portrait--sea {
  background: linear-gradient(160deg, var(--sea) 0%, var(--azul-petroleo) 100%);
  box-shadow:
    0 0 0 1px rgba(212, 168, 75, 0.5),
    0 24px 60px rgba(13, 77, 85, 0.32),
    0 10px 24px rgba(42, 122, 135, 0.22);
}
.leader-portrait--sea::after {
  background: linear-gradient(
    to top,
    var(--azul-petroleo) 0%,
    var(--sea) 28%,
    rgba(42, 122, 135, 0.92) 38%,
    rgba(42, 122, 135, 0.55) 48%,
    rgba(42, 122, 135, 0.18) 58%,
    transparent 70%
  );
}

/* Fallback (enquanto não há foto) */
.leader-portrait__fallback {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  z-index: 0;
  background:
    radial-gradient(ellipse at 30% 20%, rgba(212, 168, 75, 0.18), transparent 55%),
    radial-gradient(ellipse at 70% 80%, rgba(194, 74, 40, 0.14), transparent 55%);
}
.leader-portrait__fallback::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 1px 1px, rgba(212, 168, 75, 0.12) 1px, transparent 0);
  background-size: 18px 18px;
  mix-blend-mode: overlay;
  pointer-events: none;
}
.leader-portrait__initials {
  font-family: var(--font-display);
  font-size: clamp(4.5rem, 9vw, 8rem);
  font-weight: 900;
  color: var(--gold-light);
  line-height: 1;
  letter-spacing: -0.02em;
  text-shadow: 0 4px 30px rgba(212, 168, 75, 0.4);
  opacity: 0.9;
  margin-top: -18%;
}
.leader-portrait__name {
  font-family: var(--font-body);
  font-size: 0.8rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--sand);
  opacity: 0.85;
  text-align: center;
  padding: 0 20px;
  margin-top: -12%;
}
.leader-portrait__hint {
  font-family: var(--font-body);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-light);
  opacity: 0.45;
}

/* Cantos art-déco dourados */
.leader-portrait__corner {
  position: absolute;
  width: 26px;
  height: 26px;
  border: 2px solid var(--gold-solid);
  z-index: 4;
  pointer-events: none;
  opacity: 0.9;
}
.leader-portrait__corner--tl { top: 16px; left: 16px; border-right: none; border-bottom: none; border-radius: 3px 0 0 0; }
.leader-portrait__corner--tr { top: 16px; right: 16px; border-left: none; border-bottom: none; border-radius: 0 3px 0 0; }
.leader-portrait__corner--bl { bottom: 16px; left: 16px; border-right: none; border-top: none; border-radius: 0 0 0 3px; }
.leader-portrait__corner--br { bottom: 16px; right: 16px; border-left: none; border-top: none; border-radius: 0 0 3px 0; }

/* Caption sobreposta na parte inferior */
.leader-portrait__caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 3;
  padding: 28px 34px 34px;
  color: var(--off-white);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.25);
}
.leader-portrait__caption::before {
  content: '';
  position: absolute;
  left: 34px; right: 34px; top: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(212, 168, 75, 0.7) 20%, rgba(212, 168, 75, 0.7) 80%, transparent);
}
.leader-portrait__eyebrow {
  font-family: var(--font-body);
  font-size: 0.72rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin: 0 0 10px;
  font-weight: 600;
}
.leader-portrait__title {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 2.1vw, 1.7rem);
  color: var(--off-white);
  margin: 0 0 12px;
  line-height: 1.15;
  font-weight: 800;
}
.leader-portrait__bio {
  font-family: var(--font-body);
  font-size: 0.88rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.88);
  margin: 0 0 16px;
}
.leader-portrait__book {
  padding-top: 14px;
  border-top: 1px solid rgba(212, 168, 75, 0.35);
  font-size: 0.78rem;
  color: var(--gold-light);
}
.leader-portrait__book strong {
  color: var(--off-white);
  font-weight: 700;
  margin-right: 4px;
}
.leader-portrait__book em {
  font-style: italic;
}

@media (max-width: 768px) {
  .leader-portrait {
    aspect-ratio: 3 / 4.3;
  }
  .leader-portrait__caption {
    padding: 22px 24px 26px;
  }
  .leader-portrait__title {
    font-size: 1.25rem;
  }
  .leader-portrait__bio {
    font-size: 0.82rem;
  }
}

/* ═══════════ COUPLE PORTRAIT (dupla no intro) ═══════════ */
.couple-portrait {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(24px, 5vw, 72px);
  max-width: 820px;
  margin: 0 auto;
  flex-wrap: wrap;
}
.couple-portrait__card {
  position: relative;
  width: clamp(200px, 28vw, 280px);
  aspect-ratio: 3 / 4;
  margin: 0;
  border-radius: 12px;
  overflow: hidden;
  box-shadow:
    0 0 0 1px rgba(212, 168, 75, 0.45),
    0 16px 40px rgba(13, 77, 85, 0.22);
  flex-shrink: 0;
  transition: transform 0.5s var(--ease);
}
.couple-portrait__card:hover {
  transform: translateY(-4px);
}
.couple-portrait__card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 22%;
  z-index: 1;
}
.couple-portrait__card--clay {
  background: linear-gradient(145deg, var(--clay), var(--clay-dark));
}
.couple-portrait__card--terracota {
  background: linear-gradient(145deg, var(--terracota), var(--terracota-dark));
}
.couple-portrait__card--sea {
  background: linear-gradient(145deg, var(--sea), var(--azul-petroleo));
}
.couple-portrait__fallback {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 0;
  font-family: var(--font-display);
  font-size: clamp(3rem, 6vw, 5rem);
  font-weight: 900;
  color: var(--gold-light);
  opacity: 0.85;
}
.couple-portrait__label {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  z-index: 2;
  padding: 40px 18px 18px;
  text-align: center;
  font-family: var(--font-display);
  font-size: 0.98rem;
  color: var(--off-white);
  font-weight: 700;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.35) 60%, transparent 100%);
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.35);
}
.couple-portrait__label span {
  display: block;
  font-family: var(--font-body);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--gold-light);
  margin-top: 4px;
  opacity: 0.95;
}
.couple-portrait__amp {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(3rem, 6vw, 5rem);
  color: var(--gold-solid);
  line-height: 1;
  opacity: 0.55;
  flex-shrink: 0;
}
@media (max-width: 768px) {
  .couple-portrait {
    gap: 20px;
  }
  .couple-portrait__amp {
    flex-basis: 100%;
    text-align: center;
    order: 2;
    margin: -8px 0;
  }
  .couple-portrait__card {
    width: min(260px, 70vw);
  }
}

/* Visual card — cartão lateral em split-grid */
.visual-card {
  background: var(--azul-petroleo);
  color: var(--off-white);
  padding: 40px 36px;
  border-radius: 8px;
  border: 1px solid rgba(212, 168, 75, 0.2);
  box-shadow: 0 10px 30px rgba(13, 77, 85, 0.12);
  position: relative;
  overflow: hidden;
}
.visual-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold-solid), var(--gold-light));
}
.visual-card__label {
  font-family: var(--font-body);
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 10px;
}
.visual-card h3 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--off-white);
  margin-bottom: 14px;
  line-height: 1.2;
}
.visual-card p {
  font-family: var(--font-body);
  font-size: 0.98rem;
  line-height: 1.65;
  color: var(--sand);
  margin: 0;
}

/* Split grid internal — alinhamento e spacing */
.split-grid__text .gold-line { margin: 18px 0 24px; }
.split-grid__text h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.2vw, 2.4rem);
  color: var(--azul-petroleo);
  line-height: 1.2;
  margin-bottom: 6px;
}
.split-grid__text p {
  font-family: var(--font-body);
  font-size: 1.02rem;
  line-height: 1.75;
  color: var(--azul-petroleo);
  margin-bottom: 16px;
}
.split-grid__text p:last-child { margin-bottom: 0; }
.section--dark .split-grid__text h2 { color: var(--off-white); }
.section--dark .split-grid__text p { color: var(--sand); }

/* Form divider — separador visual dentro do form */
.form-divider {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 32px 0 24px;
  color: var(--terracota);
}
.form-divider::before,
.form-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(184, 58, 24, 0.3), transparent);
}
.form-divider span {
  font-family: var(--font-body);
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
  white-space: nowrap;
}

/* Contato panel header */
.contato-panel__header {
  text-align: center;
  margin-bottom: 40px;
  padding-bottom: 30px;
  border-bottom: 1px solid rgba(13, 77, 85, 0.08);
}
.contato-panel__header h2 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  color: var(--azul-petroleo);
  margin-bottom: 12px;
  font-weight: 700;
}
.contato-panel__header p {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--azul-petroleo);
  opacity: 0.8;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .text-block { padding: 0 4px; }
  .quote-block blockquote { font-size: 1.1rem; padding: 16px 10px; }
  .quote-block blockquote::before { font-size: 4rem; top: -10px; }
  .visual-card { padding: 28px 24px; }
}

/* ========================================
   VARIANTES CROMÁTICAS MEDITERRÂNEAS
   (Olive, Sea, Clay, Ochre aplicados em componentes)
======================================== */

/* Visual-card variantes */
.visual-card--olive {
  background: var(--olive);
  border-color: rgba(212, 168, 75, 0.35);
  box-shadow: 0 12px 32px rgba(79, 92, 34, 0.25);
}
.visual-card--olive::before { background: linear-gradient(90deg, var(--gold-solid), var(--sand)); }
.visual-card--sea {
  background: var(--sea);
  border-color: rgba(212, 168, 75, 0.35);
  box-shadow: 0 12px 32px rgba(27, 67, 77, 0.3);
}
.visual-card--sea::before { background: linear-gradient(90deg, var(--gold-solid), var(--gold-light)); }
.visual-card--clay {
  background: var(--clay);
  border-color: rgba(250, 246, 240, 0.3);
  box-shadow: 0 12px 32px rgba(158, 82, 38, 0.3);
}
.visual-card--clay::before { background: linear-gradient(90deg, var(--sand), var(--gold-light)); }
.visual-card--terracota {
  background: var(--terracota);
  border-color: rgba(250, 246, 240, 0.3);
  box-shadow: 0 12px 32px rgba(154, 55, 18, 0.3);
}
.visual-card--terracota::before { background: linear-gradient(90deg, var(--sand), var(--gold-light)); }

/* Gold-line colour variants — barras decorativas */
.gold-line--olive { background: var(--olive) !important; }
.gold-line--sea   { background: var(--sea) !important; }
.gold-line--clay  { background: var(--clay) !important; }
.gold-line--terra { background: var(--terracota) !important; }

/* Section-label colour variants */
.label-olive { color: var(--olive) !important; }
.label-sea   { color: var(--sea) !important; }
.label-clay  { color: var(--clay) !important; }
.label-ochre { color: var(--ochre) !important; }

/* Text colour variants */
.text-olive { color: var(--olive) !important; }
.text-sea   { color: var(--sea) !important; }
.text-clay  { color: var(--clay) !important; }
.text-terra { color: var(--terracota) !important; }
.text-gold  { color: var(--gold-solid) !important; }

/* Projeto-card — acento colorido por projeto (barra topo + ícone) */
.projeto-card--olive::before { background: linear-gradient(90deg, var(--olive), var(--gold-solid), var(--olive)); transform: scaleX(1); }
.projeto-card--olive .projeto-card__icon { color: var(--olive); border-color: var(--olive); background: rgba(109,125,51,0.08); }
.projeto-card--olive .projeto-card__link { color: var(--olive); }
.projeto-card--sea::before { background: linear-gradient(90deg, var(--sea), var(--gold-solid), var(--sea)); transform: scaleX(1); }
.projeto-card--sea .projeto-card__icon { color: var(--sea); border-color: var(--sea); background: rgba(45,95,107,0.08); }
.projeto-card--sea .projeto-card__link { color: var(--sea); }
.projeto-card--clay::before { background: linear-gradient(90deg, var(--clay), var(--gold-solid), var(--clay)); transform: scaleX(1); }
.projeto-card--clay .projeto-card__icon { color: var(--clay); border-color: var(--clay); background: rgba(199,109,55,0.1); }
.projeto-card--clay .projeto-card__link { color: var(--clay); }
.projeto-card--terra::before { background: linear-gradient(90deg, var(--terracota), var(--gold-solid), var(--terracota)); transform: scaleX(1); }
.projeto-card--terra .projeto-card__icon { color: var(--terracota); border-color: var(--terracota); background: rgba(194,74,40,0.08); }
.projeto-card--terra .projeto-card__link { color: var(--terracota); }
.projeto-card--gold::before { background: linear-gradient(90deg, var(--gold-solid), var(--ochre), var(--gold-solid)); transform: scaleX(1); }
.projeto-card--gold .projeto-card__icon { color: var(--ochre); border-color: var(--ochre); background: rgba(212,168,75,0.1); }
.projeto-card--gold .projeto-card__link { color: var(--ochre); }

/* Pillar-card accent */
.pillar-card--olive .pillar-card__num { color: var(--olive); }
.pillar-card--sea   .pillar-card__num { color: var(--sea); }
.pillar-card--clay  .pillar-card__num { color: var(--clay); }
.pillar-card--terra .pillar-card__num { color: var(--terracota); }
.pillar-card--olive { border-color: rgba(109,125,51,0.35); }
.pillar-card--sea   { border-color: rgba(45,95,107,0.35); }
.pillar-card--clay  { border-color: rgba(199,109,55,0.35); }
.pillar-card--terra { border-color: rgba(194,74,40,0.35); }

/* Preview-card accent */
.preview-card--olive::before { background: linear-gradient(90deg, var(--olive), var(--gold-solid)); opacity: 1; }
.preview-card--olive .preview-card__icon { color: var(--olive); border-color: rgba(109,125,51,0.4); }
.preview-card--sea::before { background: linear-gradient(90deg, var(--sea), var(--gold-solid)); opacity: 1; }
.preview-card--sea .preview-card__icon { color: var(--sea); border-color: rgba(45,95,107,0.4); }
.preview-card--clay::before { background: linear-gradient(90deg, var(--clay), var(--gold-solid)); opacity: 1; }
.preview-card--clay .preview-card__icon { color: var(--clay); border-color: rgba(199,109,55,0.4); }
.preview-card--terra::before { background: linear-gradient(90deg, var(--terracota), var(--gold-solid)); opacity: 1; }
.preview-card--terra .preview-card__icon { color: var(--terracota); border-color: rgba(194,74,40,0.4); }
.preview-card--gold::before { background: linear-gradient(90deg, var(--gold-solid), var(--ochre)); opacity: 1; }
.preview-card--gold .preview-card__icon { color: var(--ochre); border-color: rgba(212,168,75,0.5); }

/* Botões alternativos */
.btn--olive {
  background: var(--olive); color: var(--off-white);
  border: 1px solid var(--olive);
}
.btn--olive:hover { background: var(--olive-dark); border-color: var(--olive-dark); }
.btn--sea {
  background: var(--sea); color: var(--off-white);
  border: 1px solid var(--sea);
}
.btn--sea:hover { background: var(--sea-dark); border-color: var(--sea-dark); }
.btn--clay {
  background: var(--clay); color: var(--off-white);
  border: 1px solid var(--clay);
}
.btn--clay:hover { background: var(--clay-dark); border-color: var(--clay-dark); }

/* Ajustes automáticos de texto para seções coloridas novas */
.section--sea p, .section--olive p, .section--clay p,
.section--sea li, .section--olive li, .section--clay li { color: var(--sand); }
.section--sea h3, .section--olive h3, .section--clay h3 { color: var(--off-white); }
.section--sea .split-grid__text h2,
.section--olive .split-grid__text h2,
.section--clay .split-grid__text h2 { color: var(--off-white); }
.section--sea .split-grid__text p,
.section--olive .split-grid__text p,
.section--clay .split-grid__text p { color: var(--sand); }
.section--sea .text-block p,
.section--olive .text-block p,
.section--clay .text-block p { color: var(--sand); }
.section--sea .quote-block .section-label,
.section--olive .quote-block .section-label,
.section--clay .quote-block .section-label { color: var(--gold-light); }

/* Pillar-card em fundo escuro/colorido */
.section--sea .pillar-card,
.section--clay .pillar-card {
  background: rgba(250, 246, 240, 0.06);
  border: 1px solid rgba(250, 246, 240, 0.15);
}
.section--sea .pillar-card h3,
.section--clay .pillar-card h3 { color: var(--off-white); }
.section--sea .pillar-card p,
.section--clay .pillar-card p { color: var(--sand); opacity: 0.9; }

/* ── Pillar-card PREMIUM no .section--olive (sistema jardim-guerra) ── */
.section--olive .pillar-card {
  position: relative;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.28) 0%, rgba(0, 0, 0, 0.14) 100%);
  border: 1px solid rgba(212, 168, 75, 0.25);
  border-radius: 4px;
  padding: 44px 34px 40px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow:
    0 40px 100px rgba(0, 0, 0, 0.38),
    inset 0 1px 0 rgba(250, 246, 240, 0.05);
  overflow: hidden;
  isolation: isolate;
  text-align: left;
  transition: transform 0.5s var(--ease), border-color 0.5s var(--ease), box-shadow 0.5s var(--ease);
}
.section--olive .pillar-card::before {
  content: '';
  position: absolute;
  inset: 10px;
  border: 1px solid rgba(212, 168, 75, 0.12);
  border-radius: 2px;
  pointer-events: none;
  z-index: 0;
}
.section--olive .pillar-card::after {
  content: '';
  position: absolute;
  top: -60%;
  right: -40%;
  width: 120%;
  height: 120%;
  background: radial-gradient(circle, rgba(212, 168, 75, 0.14), transparent 60%);
  pointer-events: none;
  z-index: 0;
}
.section--olive .pillar-card > * { position: relative; z-index: 1; }
.section--olive .pillar-card:hover {
  transform: translateY(-6px);
  border-color: rgba(212, 168, 75, 0.5);
  box-shadow:
    0 50px 120px rgba(0, 0, 0, 0.45),
    inset 0 1px 0 rgba(250, 246, 240, 0.08);
}
.section--olive .pillar-card__num {
  font-family: var(--font-display);
  font-size: 2.6rem;
  color: var(--gold-light);
  font-weight: 900;
  font-style: italic;
  line-height: 1;
  margin-bottom: 18px;
  display: inline-block;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(212, 168, 75, 0.28);
  min-width: 60px;
}
.section--olive .pillar-card h3 {
  color: var(--off-white);
  margin: 0 0 14px;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(1.4rem, 1.8vw, 1.7rem);
  letter-spacing: -0.005em;
}
.section--olive .pillar-card p {
  color: rgba(250, 246, 240, 0.78);
  font-size: 0.96rem;
  line-height: 1.65;
  margin: 0;
}
/* Art-déco corners on pillar cards inside olive sections */
.section--olive .pillar-card > h3::before,
.section--olive .pillar-card > h3::after { content: none; }
.section--olive .pillar-grid {
  position: relative;
}
.section--olive .pillar-card {
  /* add 4 gold corner accents via outline layers */
}
.section--olive .pillar-card .pillar-card__num::before {
  content: '';
  display: block;
  width: 28px;
  height: 28px;
  border-top: 1px solid var(--gold-solid);
  border-left: 1px solid var(--gold-solid);
  position: absolute;
  top: 16px;
  left: 16px;
  pointer-events: none;
  opacity: 0.85;
}
.section--olive .pillar-card .pillar-card__num::after {
  content: '';
  display: block;
  width: 28px;
  height: 28px;
  border-top: 1px solid var(--gold-solid);
  border-right: 1px solid var(--gold-solid);
  position: absolute;
  top: 16px;
  right: 16px;
  pointer-events: none;
  opacity: 0.85;
}
.section--olive .pillar-card h3::after {
  content: '';
  display: block;
  width: 28px;
  height: 28px;
  border-bottom: 1px solid var(--gold-solid);
  border-left: 1px solid var(--gold-solid);
  position: absolute;
  bottom: 16px;
  left: 16px;
  pointer-events: none;
  opacity: 0.85;
}
.section--olive .pillar-card p::after {
  content: '';
  display: block;
  width: 28px;
  height: 28px;
  border-bottom: 1px solid var(--gold-solid);
  border-right: 1px solid var(--gold-solid);
  position: absolute;
  bottom: 16px;
  right: 16px;
  pointer-events: none;
  opacity: 0.85;
}

/* ── Text-block PREMIUM em .section--olive ── */
.section--olive .text-block { position: relative; }
.section--olive .text-block h2 {
  color: var(--off-white);
  font-family: var(--font-display);
  font-weight: 900;
  letter-spacing: -0.015em;
  text-shadow: 0 4px 30px rgba(0, 0, 0, 0.35);
}
.section--olive .text-block .section-label {
  color: var(--gold-light) !important;
  letter-spacing: 0.35em !important;
  font-weight: 700;
}
.section--olive .text-block p {
  color: rgba(250, 246, 240, 0.85);
  font-size: 1.02rem;
  line-height: 1.75;
}
.section--olive .text-block p strong,
.section--olive .text-block p em {
  color: var(--gold-light);
}
.section--olive .text-block .gold-line {
  background: linear-gradient(90deg, transparent, var(--gold-solid), transparent);
  height: 1px;
  width: 160px;
  position: relative;
  margin: 22px auto 32px;
}
.section--olive .text-block .gold-line::before,
.section--olive .text-block .gold-line::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold-solid);
  transform: translateY(-50%);
  box-shadow: 0 0 10px rgba(212, 168, 75, 0.6);
}
.section--olive .text-block .gold-line::before { left: calc(50% - 90px); }
.section--olive .text-block .gold-line::after { right: calc(50% - 90px); }

/* Override the default section--olive h2 color */
.section--olive h2 { color: var(--off-white); }
.section--olive h3 { color: var(--off-white); }
.section--olive p { color: rgba(250, 246, 240, 0.82); }

/* Projeto-card em fundos coloridos */
.section--sea .projeto-card,
.section--olive .projeto-card,
.section--clay .projeto-card {
  background: rgba(250, 246, 240, 0.08);
  color: var(--off-white);
}
.section--sea .projeto-card h3,
.section--olive .projeto-card h3,
.section--clay .projeto-card h3 { color: var(--off-white); }
.section--sea .projeto-card p,
.section--olive .projeto-card p,
.section--clay .projeto-card p { color: var(--sand); }

/* ═══════════════════════════════════════════════════════════════════
   EVENT FEATURE — O EVENTO DO ANO (landing integrada no home)
   ═══════════════════════════════════════════════════════════════════ */
.event-feature {
  position: relative;
  padding: clamp(80px, 10vw, 140px) 0;
  background:
    radial-gradient(ellipse at 20% 10%, rgba(194, 74, 40, 0.22), transparent 55%),
    radial-gradient(ellipse at 85% 85%, rgba(13, 77, 85, 0.35), transparent 60%),
    linear-gradient(160deg, #1a0610 0%, #2b0a1a 32%, #1b0e1f 65%, #0d1b2b 100%);
  color: var(--off-white);
  overflow: hidden;
  isolation: isolate;
}
.event-feature::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 1px 1px, rgba(212, 168, 75, 0.07) 1px, transparent 0);
  background-size: 32px 32px;
  mix-blend-mode: overlay;
  pointer-events: none;
}
.event-feature__glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  pointer-events: none;
  z-index: 0;
}
.event-feature__glow--a {
  width: 540px;
  height: 540px;
  top: -12%;
  left: -8%;
  background: radial-gradient(circle, rgba(194, 74, 40, 0.35), transparent 70%);
}
.event-feature__glow--b {
  width: 620px;
  height: 620px;
  bottom: -18%;
  right: -12%;
  background: radial-gradient(circle, rgba(212, 168, 75, 0.22), transparent 70%);
}
.event-feature__container {
  position: relative;
  z-index: 2;
}
.event-feature__header {
  text-align: center;
  margin-bottom: clamp(50px, 6vw, 80px);
  padding: 0 20px;
}
.event-feature__rule {
  width: 120px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold-solid) 20%, var(--gold-solid) 80%, transparent);
  margin: 28px auto 0;
  opacity: 0.85;
}
.event-feature__badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 22px;
  border: 1px solid rgba(212, 168, 75, 0.55);
  border-radius: 999px;
  background: rgba(212, 168, 75, 0.08);
  color: var(--gold-light);
  font-family: var(--font-body);
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 600;
  backdrop-filter: blur(6px);
  margin-bottom: 36px;
}
.event-feature__badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold-solid);
  box-shadow: 0 0 0 0 rgba(212, 168, 75, 0.7);
  animation: eventPulse 2.4s ease-in-out infinite;
}
@keyframes eventPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(212, 168, 75, 0.7); }
  50% { box-shadow: 0 0 0 10px rgba(212, 168, 75, 0); }
}
.event-feature__grid {
  display: grid;
  grid-template-columns: minmax(0, 4fr) minmax(0, 6fr) minmax(0, 3.2fr);
  gap: clamp(28px, 4vw, 56px);
  align-items: center;
}

/* VIDEO COLUMN — convite em vídeo da Pastora Ju na lateral direita */
.event-feature__video {
  position: relative;
  display: block;
  cursor: pointer;
  user-select: none;
  border: none;
  background: transparent;
  padding: 0;
  outline: none;
}
.event-feature__video:focus-visible .event-feature__video-frame {
  box-shadow:
    0 0 0 3px var(--gold-solid),
    0 30px 80px rgba(0, 0, 0, 0.6);
}
.event-feature__video-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 9 / 16;
  border-radius: 16px;
  overflow: hidden;
  background: #000;
  box-shadow:
    0 0 0 1px rgba(212, 168, 75, 0.65),
    0 40px 100px rgba(0, 0, 0, 0.55),
    0 14px 36px rgba(212, 168, 75, 0.18);
  transform: perspective(1200px) rotateY(3deg);
  transition: transform 0.9s var(--ease), box-shadow 0.9s var(--ease);
}
.event-feature__video:hover .event-feature__video-frame {
  transform: perspective(1200px) rotateY(0deg) translateY(-6px);
  box-shadow:
    0 0 0 1px rgba(212, 168, 75, 0.9),
    0 50px 120px rgba(0, 0, 0, 0.65),
    0 18px 44px rgba(212, 168, 75, 0.32);
}
.event-feature__video-el {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  z-index: 1;
}
.event-feature__video-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background:
    linear-gradient(to bottom, rgba(0, 0, 0, 0.45) 0%, transparent 22%, transparent 62%, rgba(10, 5, 15, 0.9) 100%);
}
.event-feature__video-badge {
  position: absolute;
  top: 18px;
  left: 18px;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  background: rgba(10, 18, 24, 0.65);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(212, 168, 75, 0.55);
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: 0.66rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-light);
  font-weight: 700;
}
.event-feature__video-live {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #e64a29;
  box-shadow: 0 0 0 0 rgba(230, 74, 41, 0.8);
  animation: eventPulse 1.8s ease-in-out infinite;
}
.event-feature__video-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: rgba(10, 18, 24, 0.55);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1.5px solid rgba(212, 168, 75, 0.7);
  color: var(--gold-light);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.85;
  transition: all 0.4s var(--ease);
  pointer-events: none;
}
.event-feature__video-play::before {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 2px solid var(--gold-solid);
  animation: invitePulse 2.4s ease-out infinite;
}
.event-feature__video-play svg {
  margin-left: 4px;
}
.event-feature__video:hover .event-feature__video-play {
  background: var(--gold-solid);
  color: var(--azul-petroleo);
  border-color: var(--gold-solid);
  transform: translate(-50%, -50%) scale(1.1);
  opacity: 1;
}
.event-feature__video-caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 3;
  padding: 22px 22px 20px;
  color: var(--off-white);
  text-align: left;
  pointer-events: none;
}
.event-feature__video-caption strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.18rem;
  font-weight: 700;
  color: var(--off-white);
  line-height: 1.15;
  margin-bottom: 3px;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.6);
}
.event-feature__video-caption span {
  display: block;
  font-family: var(--font-body);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-light);
  font-weight: 600;
  opacity: 0.95;
}
.event-feature__video .event-feature__corner {
  z-index: 4;
  opacity: 0.85;
}

/* BANNER */
.event-feature__banner {
  position: relative;
  margin: 0;
}
.event-feature__banner-frame {
  position: relative;
  aspect-ratio: 1080 / 1440;
  max-width: 460px;
  margin: 0 auto;
  border-radius: 14px;
  overflow: hidden;
  box-shadow:
    0 0 0 1px rgba(212, 168, 75, 0.65),
    0 40px 100px rgba(0, 0, 0, 0.55),
    0 10px 30px rgba(194, 74, 40, 0.28);
  transform: perspective(1200px) rotateY(-2deg);
  transition: transform 0.9s var(--ease), box-shadow 0.9s var(--ease);
}
.event-feature__banner-frame:hover {
  transform: perspective(1200px) rotateY(0deg) translateY(-6px);
  box-shadow:
    0 0 0 1px rgba(212, 168, 75, 0.9),
    0 50px 120px rgba(0, 0, 0, 0.65),
    0 14px 40px rgba(194, 74, 40, 0.4);
}
.event-feature__banner-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.event-feature__corner {
  position: absolute;
  width: 28px;
  height: 28px;
  border: 2px solid var(--gold-solid);
  pointer-events: none;
  z-index: 2;
  opacity: 0.95;
}
.event-feature__corner--tl { top: 14px; left: 14px; border-right: none; border-bottom: none; }
.event-feature__corner--tr { top: 14px; right: 14px; border-left: none; border-bottom: none; }
.event-feature__corner--bl { bottom: 14px; left: 14px; border-right: none; border-top: none; }
.event-feature__corner--br { bottom: 14px; right: 14px; border-left: none; border-top: none; }

.event-feature__banner-ribbon {
  position: absolute;
  top: 32px;
  right: -28px;
  background: linear-gradient(135deg, var(--gold-solid), #b38a3c);
  color: var(--azul-petroleo);
  padding: 14px 24px 12px;
  border-radius: 4px;
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(250, 246, 240, 0.2) inset;
  text-align: center;
  z-index: 3;
  transform: rotate(4deg);
}
.event-feature__banner-ribbon span {
  display: block;
  font-family: var(--font-body);
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  font-weight: 700;
  text-transform: uppercase;
  opacity: 0.85;
}
.event-feature__banner-ribbon strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.6rem;
  line-height: 1;
  font-weight: 900;
  margin-top: 2px;
}

/* CONTENT */
.event-feature__content {
  color: var(--off-white);
}
.event-feature__eyebrow {
  font-family: var(--font-body);
  font-size: clamp(0.85rem, 1vw, 1rem);
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--gold-light);
  font-weight: 700;
  margin: 0 0 22px;
  text-align: center;
}
.event-feature__title {
  font-family: var(--font-display);
  font-size: clamp(3.6rem, 9vw, 8.2rem);
  line-height: 0.92;
  font-weight: 900;
  color: var(--off-white);
  margin: 0 0 18px;
  letter-spacing: -0.02em;
  text-align: center;
  text-shadow: 0 4px 40px rgba(0, 0, 0, 0.4);
}
.event-feature__title em {
  font-style: italic;
  color: var(--gold-light);
  font-weight: 400;
}
.event-feature__tagline {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.25rem, 2.2vw, 1.75rem);
  color: rgba(250, 246, 240, 0.9);
  margin: 0;
  text-align: center;
  letter-spacing: 0.01em;
}
.event-feature__lede {
  font-size: 1rem;
  line-height: 1.7;
  color: rgba(250, 246, 240, 0.82);
  margin: 0 0 30px;
  max-width: 58ch;
}
/* Botão de convite em vídeo (Pastora Ju) */
.event-invite {
  display: flex;
  align-items: center;
  gap: 18px;
  width: 100%;
  padding: 14px 22px 14px 14px;
  margin: 0 0 30px;
  background: linear-gradient(135deg, rgba(212, 168, 75, 0.18) 0%, rgba(194, 74, 40, 0.12) 100%);
  border: 1px solid rgba(212, 168, 75, 0.45);
  border-radius: 14px;
  cursor: pointer;
  text-align: left;
  font-family: inherit;
  color: inherit;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.35), 0 0 0 1px rgba(250, 246, 240, 0.04) inset;
  transition: all 0.45s var(--ease);
  position: relative;
  overflow: hidden;
}
.event-invite::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 40%, rgba(212, 168, 75, 0.14) 50%, transparent 60%);
  transform: translateX(-100%);
  transition: transform 1s var(--ease);
  pointer-events: none;
}
.event-invite:hover {
  transform: translateY(-3px);
  border-color: rgba(212, 168, 75, 0.85);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(212, 168, 75, 0.3) inset;
}
.event-invite:hover::before {
  transform: translateX(100%);
}
.event-invite__thumb {
  position: relative;
  flex-shrink: 0;
  width: 72px;
  height: 96px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(212, 168, 75, 0.55);
}
.event-invite__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  display: block;
  transition: transform 0.8s var(--ease);
}
.event-invite:hover .event-invite__thumb img {
  transform: scale(1.08);
}
.event-invite__play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(10, 18, 24, 0.75);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-light);
  z-index: 2;
  border: 1.5px solid rgba(212, 168, 75, 0.75);
  transition: all 0.4s var(--ease);
}
.event-invite__play svg {
  margin-left: 2px;
}
.event-invite:hover .event-invite__play {
  background: var(--gold-solid);
  color: var(--azul-petroleo);
  transform: translate(-50%, -50%) scale(1.1);
}
.event-invite__pulse {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  border: 2px solid var(--gold-solid);
  animation: invitePulse 2.2s ease-out infinite;
  pointer-events: none;
  z-index: 1;
}
@keyframes invitePulse {
  0% { opacity: 0.85; transform: translate(-50%, -50%) scale(1); }
  100% { opacity: 0; transform: translate(-50%, -50%) scale(2.2); }
}
.event-invite__text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}
.event-invite__eyebrow {
  font-family: var(--font-body);
  font-size: 0.62rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold-light);
  font-weight: 700;
  opacity: 0.85;
}
.event-invite__name {
  font-family: var(--font-display);
  font-size: 1.08rem;
  font-weight: 700;
  color: var(--off-white);
  line-height: 1.15;
}
.event-invite__cta {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 0.74rem;
  letter-spacing: 0.12em;
  color: rgba(250, 246, 240, 0.75);
  font-weight: 500;
  margin-top: 2px;
}
.event-invite__live-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold-solid);
  box-shadow: 0 0 0 0 rgba(212, 168, 75, 0.8);
  animation: eventPulse 2s ease-in-out infinite;
}
@media (max-width: 640px) {
  .event-invite__thumb {
    width: 62px;
    height: 84px;
  }
  .event-invite__name {
    font-size: 0.98rem;
  }
}

.event-feature__highlights {
  list-style: none;
  padding: 0;
  margin: 0 0 34px;
  display: grid;
  gap: 14px;
}
.event-feature__highlights li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 18px;
  background: rgba(250, 246, 240, 0.04);
  border: 1px solid rgba(212, 168, 75, 0.18);
  border-radius: 8px;
  backdrop-filter: blur(4px);
}
.event-feature__highlight-icon {
  color: var(--gold-solid);
  font-size: 0.85rem;
  padding-top: 3px;
  flex-shrink: 0;
}
.event-feature__highlights li strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.02rem;
  color: var(--off-white);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 2px;
}
.event-feature__highlights li span {
  display: block;
  font-size: 0.82rem;
  color: rgba(250, 246, 240, 0.65);
  letter-spacing: 0.01em;
}
.event-feature__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 28px 56px;
  padding: 20px 0 28px;
  border-top: 1px solid rgba(212, 168, 75, 0.25);
  border-bottom: 1px solid rgba(212, 168, 75, 0.25);
  margin-bottom: 30px;
}
.event-feature__meta-label {
  display: block;
  font-family: var(--font-body);
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-light);
  font-weight: 600;
  margin-bottom: 6px;
  opacity: 0.85;
}
.event-feature__meta-item strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--off-white);
  font-weight: 700;
}
.event-feature__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}
.btn-event-primary {
  background: linear-gradient(135deg, var(--gold-solid), #b38a3c);
  color: var(--azul-petroleo);
  border: none;
  padding: 18px 34px;
  font-size: 0.92rem;
  letter-spacing: 0.16em;
  box-shadow: 0 18px 40px rgba(212, 168, 75, 0.3), 0 0 0 1px rgba(250, 246, 240, 0.15) inset;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
}
.btn-event-primary span {
  transition: transform 0.4s var(--ease);
}
.btn-event-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 24px 60px rgba(212, 168, 75, 0.45), 0 0 0 1px rgba(250, 246, 240, 0.22) inset;
}
.btn-event-primary:hover span {
  transform: translateX(5px);
}
.event-feature .btn-outline {
  border-color: rgba(212, 168, 75, 0.55);
  color: var(--gold-light);
}
.event-feature .btn-outline:hover {
  background: var(--gold-solid);
  color: var(--azul-petroleo);
  border-color: var(--gold-solid);
}

/* Tablet largo: reduz coluna de vídeo */
@media (max-width: 1280px) {
  .event-feature__grid {
    grid-template-columns: minmax(0, 4fr) minmax(0, 6fr) minmax(0, 2.6fr);
    gap: 36px;
  }
  .event-feature__video-frame {
    transform: none;
  }
  .event-feature__video:hover .event-feature__video-frame {
    transform: translateY(-6px);
  }
}
/* Tablet: banner e conteúdo em 2 colunas; vídeo passa a linha inteira abaixo */
@media (max-width: 1100px) {
  .event-feature__grid {
    grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
  }
  .event-feature__video {
    display: block;
    grid-column: 1 / -1;
    justify-self: center;
    width: 100%;
    max-width: 340px;
    margin-top: 8px;
  }
}
@media (max-width: 1024px) {
  .event-feature__grid {
    grid-template-columns: 1fr;
    gap: 56px;
  }
  .event-feature__banner-frame {
    max-width: 380px;
    transform: none;
  }
  .event-feature__banner-frame:hover {
    transform: translateY(-4px);
  }
  .event-feature__banner-ribbon {
    top: 20px;
    right: -18px;
  }
}
@media (max-width: 640px) {
  .event-feature__meta {
    gap: 20px;
  }
  .event-feature__actions .btn {
    width: 100%;
    justify-content: center;
  }
  .event-feature__banner-ribbon {
    top: 16px;
    right: -14px;
    padding: 10px 18px;
  }
  .event-feature__banner-ribbon strong {
    font-size: 1.3rem;
  }
}

/* ═══════════════════════════════════════════════════════════════════
   INVITE VIDEO LIGHTBOX — reprodução do convite da Pastora Ju
   ═══════════════════════════════════════════════════════════════════ */
.invite-lightbox {
  position: fixed;
  inset: 0;
  z-index: 1100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.5s var(--ease), visibility 0.5s var(--ease);
}
.invite-lightbox.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.invite-lightbox__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(8, 14, 20, 0.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}
.invite-lightbox__frame {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  max-height: calc(100vh - 48px);
  transform: scale(0.94) translateY(20px);
  transition: transform 0.55s var(--ease);
}
.invite-lightbox.is-open .invite-lightbox__frame {
  transform: scale(1) translateY(0);
}
.invite-lightbox__close {
  position: absolute;
  top: -12px;
  right: -12px;
  z-index: 3;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1.5px solid rgba(212, 168, 75, 0.55);
  background: rgba(10, 18, 24, 0.85);
  backdrop-filter: blur(8px);
  color: var(--gold-light);
  font-size: 1.7rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  transition: all 0.35s var(--ease);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}
.invite-lightbox__close:hover {
  background: var(--gold-solid);
  color: var(--azul-petroleo);
  border-color: var(--gold-solid);
  transform: rotate(90deg);
}
.invite-lightbox__video {
  display: block;
  max-height: calc(100vh - 120px);
  max-width: min(420px, calc(100vw - 48px));
  aspect-ratio: 9 / 16;
  background: #000;
  border-radius: 16px;
  box-shadow:
    0 0 0 1px rgba(212, 168, 75, 0.6),
    0 50px 120px rgba(0, 0, 0, 0.75),
    0 16px 40px rgba(194, 74, 40, 0.25);
  object-fit: cover;
}
.invite-lightbox__caption {
  font-family: var(--font-body);
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-light);
  opacity: 0.85;
  margin: 0;
  text-align: center;
}
body.invite-lightbox-open {
  overflow: hidden;
}

/* ═══════════════════════════════════════════════════════════════════
   EVENT MODAL — abre 30s após carregar a home
   ═══════════════════════════════════════════════════════════════════ */
.event-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.5s var(--ease), visibility 0.5s var(--ease);
}
.event-modal.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.event-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(10, 18, 24, 0.78);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.event-modal__card {
  position: relative;
  width: min(760px, 100%);
  max-height: calc(100vh - 40px);
  overflow: auto;
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
  background: linear-gradient(160deg, #1a0610 0%, #2b0a1a 45%, #0d1b2b 100%);
  color: var(--off-white);
  border-radius: 16px;
  box-shadow:
    0 0 0 1px rgba(212, 168, 75, 0.6),
    0 60px 140px rgba(0, 0, 0, 0.7),
    0 20px 50px rgba(194, 74, 40, 0.25);
  transform: translateY(30px) scale(0.96);
  transition: transform 0.6s var(--ease);
  overflow: hidden;
}
.event-modal.is-open .event-modal__card {
  transform: translateY(0) scale(1);
}
.event-modal__close {
  position: absolute;
  top: 14px;
  right: 18px;
  z-index: 4;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(212, 168, 75, 0.45);
  background: rgba(10, 18, 24, 0.55);
  backdrop-filter: blur(6px);
  color: var(--gold-light);
  font-size: 1.5rem;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s var(--ease);
  padding: 0;
}
.event-modal__close:hover {
  background: var(--gold-solid);
  color: var(--azul-petroleo);
  border-color: var(--gold-solid);
  transform: rotate(90deg);
}
.event-modal__banner {
  position: relative;
  overflow: hidden;
  min-height: 100%;
}
.event-modal__banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  min-height: 280px;
}
.event-modal__banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, transparent 50%, rgba(26, 6, 16, 0.85) 100%);
  pointer-events: none;
}
.event-modal__banner-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  padding: 6px 14px;
  background: var(--gold-solid);
  color: var(--azul-petroleo);
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 800;
  z-index: 2;
}
.event-modal__body {
  padding: 34px 36px 34px 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.event-modal__eyebrow {
  font-family: var(--font-body);
  font-size: 0.72rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold-light);
  font-weight: 700;
  margin: 0 0 10px;
}
.event-modal__title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.4vw, 2.4rem);
  line-height: 0.98;
  font-weight: 900;
  color: var(--off-white);
  margin: 0 0 6px;
}
.event-modal__title em {
  font-style: italic;
  color: var(--gold-light);
  font-weight: 400;
}
.event-modal__sub {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1rem;
  color: rgba(250, 246, 240, 0.75);
  margin: 0 0 16px;
}
.event-modal__divider {
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold-solid), transparent);
  margin-bottom: 18px;
}
.event-modal__meta {
  display: flex;
  gap: 28px;
  margin-bottom: 18px;
}
.event-modal__meta span {
  display: block;
  font-family: var(--font-body);
  font-size: 0.62rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-light);
  font-weight: 600;
  margin-bottom: 3px;
  opacity: 0.85;
}
.event-modal__meta strong {
  display: block;
  font-family: var(--font-display);
  font-size: 0.98rem;
  font-weight: 700;
  color: var(--off-white);
}
.event-modal__lede {
  font-size: 0.88rem;
  line-height: 1.6;
  color: rgba(250, 246, 240, 0.78);
  margin: 0 0 22px;
}
.event-modal__actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.event-modal__cta {
  background: linear-gradient(135deg, var(--gold-solid), #b38a3c);
  color: var(--azul-petroleo);
  border: none;
  padding: 16px 26px;
  font-size: 0.85rem;
  letter-spacing: 0.18em;
  font-weight: 800;
  text-align: center;
  box-shadow: 0 14px 34px rgba(212, 168, 75, 0.35);
}
.event-modal__cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 44px rgba(212, 168, 75, 0.5);
}
.event-modal__dismiss {
  background: transparent;
  border: none;
  color: rgba(250, 246, 240, 0.55);
  font-family: var(--font-body);
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  cursor: pointer;
  padding: 8px;
  transition: color 0.3s var(--ease);
}
.event-modal__dismiss:hover {
  color: var(--gold-light);
}
body.event-modal-open {
  overflow: hidden;
}

@media (max-width: 720px) {
  .event-modal__card {
    grid-template-columns: 1fr;
    max-height: calc(100vh - 20px);
  }
  .event-modal__banner {
    aspect-ratio: 16 / 10;
    min-height: 0;
  }
  .event-modal__banner img {
    min-height: 0;
  }
  .event-modal__banner-overlay {
    background: linear-gradient(to bottom, transparent 40%, rgba(26, 6, 16, 0.9) 100%);
  }
  .event-modal__body {
    padding: 26px 24px 28px;
  }
}

/* ═══════════════════════════════════════════════════════════════════
   JARDIM E GUERRA — CONCEITO CENTRAL (Quem Somos)
   Design premium com portão, ornamentos art-déco e epígrafe
   ═══════════════════════════════════════════════════════════════════ */
.jardim-guerra {
  position: relative;
  padding: clamp(100px, 12vw, 160px) 0;
  background:
    linear-gradient(180deg, #536a27 0%, #465a20 45%, #536a27 100%);
  overflow: hidden;
  isolation: isolate;
}
.jardim-guerra::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 0%, rgba(212,168,75,0.10), transparent 55%),
    radial-gradient(ellipse at 80% 100%, rgba(0,0,0,0.28), transparent 60%);
  pointer-events: none;
  z-index: 0;
}
.jardim-guerra__noise {
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(45deg, rgba(250,246,240,0.015) 0 2px, transparent 2px 4px),
    repeating-linear-gradient(-45deg, rgba(0,0,0,0.02) 0 2px, transparent 2px 4px);
  mix-blend-mode: overlay;
  pointer-events: none;
  z-index: 1;
}
.jardim-guerra__glow {
  position: absolute;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  filter: blur(120px);
  pointer-events: none;
  z-index: 0;
  opacity: 0.55;
}
.jardim-guerra__glow--left {
  top: 8%;
  left: -12%;
  background: radial-gradient(circle, rgba(212,168,75,0.28), transparent 70%);
}
.jardim-guerra__glow--right {
  bottom: 8%;
  right: -12%;
  background: radial-gradient(circle, rgba(194,74,40,0.22), transparent 70%);
}
.jardim-guerra__container {
  position: relative;
  z-index: 2;
  max-width: 1280px;
}

/* ── HEADER ── */
.jardim-guerra__header {
  text-align: center;
  margin-bottom: clamp(60px, 7vw, 100px);
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 20px;
}
.jardim-guerra__ornament {
  display: inline-block;
  margin-bottom: 28px;
  color: var(--gold-light);
  opacity: 0.85;
}
.jardim-guerra__ornament svg {
  width: 100px;
  height: auto;
  display: block;
}
.jardim-guerra__eyebrow {
  font-family: var(--font-body);
  font-size: clamp(0.78rem, 0.95vw, 0.92rem);
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--gold-light);
  font-weight: 700;
  margin: 0 0 22px;
  opacity: 0.92;
}
.jardim-guerra__title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 7.8vw, 6.4rem);
  line-height: 0.95;
  font-weight: 900;
  color: var(--off-white);
  margin: 0 0 24px;
  letter-spacing: -0.02em;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 2.5vw, 36px);
  flex-wrap: wrap;
  text-shadow: 0 4px 30px rgba(0, 0, 0, 0.35);
}
.jardim-guerra__title span {
  display: inline-block;
}
.jardim-guerra__title em {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  color: var(--gold-light);
  font-size: 0.62em;
  position: relative;
  top: -0.06em;
  opacity: 0.95;
}
.jardim-guerra__tagline {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.1rem, 1.7vw, 1.35rem);
  color: rgba(250, 246, 240, 0.82);
  margin: 0 auto;
  max-width: 620px;
  line-height: 1.55;
}
.jardim-guerra__rule {
  width: 160px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-solid), transparent);
  margin: 38px auto 0;
  position: relative;
}
.jardim-guerra__rule::before,
.jardim-guerra__rule::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold-solid);
  transform: translateY(-50%);
  box-shadow: 0 0 10px rgba(212, 168, 75, 0.6);
}
.jardim-guerra__rule::before { left: calc(50% - 90px); }
.jardim-guerra__rule::after { right: calc(50% - 90px); }

/* ── SPLIT — OS DOIS REINOS ── */
.jardim-guerra__split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  gap: clamp(30px, 4vw, 64px);
  align-items: stretch;
  margin-bottom: clamp(80px, 8vw, 120px);
  position: relative;
}

/* ── SIDE CARD ── */
.jardim-guerra__side {
  position: relative;
  padding: clamp(40px, 4.2vw, 64px) clamp(30px, 3.6vw, 52px);
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.28) 0%, rgba(0, 0, 0, 0.14) 100%);
  border: 1px solid rgba(212, 168, 75, 0.22);
  border-radius: 4px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow:
    0 40px 100px rgba(0, 0, 0, 0.38),
    inset 0 1px 0 rgba(250, 246, 240, 0.05);
  transition: transform 0.5s var(--ease), border-color 0.5s var(--ease), box-shadow 0.5s var(--ease);
  overflow: hidden;
  isolation: isolate;
}
.jardim-guerra__side::before {
  content: '';
  position: absolute;
  inset: 10px;
  border: 1px solid rgba(212, 168, 75, 0.12);
  border-radius: 2px;
  pointer-events: none;
  z-index: 0;
}
.jardim-guerra__side > * {
  position: relative;
  z-index: 1;
}
.jardim-guerra__side:hover {
  transform: translateY(-6px);
  border-color: rgba(212, 168, 75, 0.45);
  box-shadow:
    0 50px 120px rgba(0, 0, 0, 0.45),
    inset 0 1px 0 rgba(250, 246, 240, 0.08);
}
.jardim-guerra__side--jardim {
  background-image:
    linear-gradient(180deg, rgba(125, 152, 50, 0.22) 0%, rgba(0, 0, 0, 0.35) 100%);
}
.jardim-guerra__side--jardim::after {
  content: '';
  position: absolute;
  top: -60%;
  right: -40%;
  width: 120%;
  height: 120%;
  background: radial-gradient(circle, rgba(212, 168, 75, 0.14), transparent 60%);
  pointer-events: none;
  z-index: 0;
}
.jardim-guerra__side--guerra {
  background-image:
    linear-gradient(180deg, rgba(194, 74, 40, 0.22) 0%, rgba(0, 0, 0, 0.35) 100%);
}
.jardim-guerra__side--guerra::after {
  content: '';
  position: absolute;
  bottom: -60%;
  left: -40%;
  width: 120%;
  height: 120%;
  background: radial-gradient(circle, rgba(194, 74, 40, 0.18), transparent 60%);
  pointer-events: none;
  z-index: 0;
}

/* Art-déco corners on cards */
.jardim-guerra__corner {
  position: absolute;
  width: 22px;
  height: 22px;
  pointer-events: none;
  z-index: 2;
}
.jardim-guerra__corner--tl { top: 14px; left: 14px; border-top: 1px solid var(--gold-solid); border-left: 1px solid var(--gold-solid); }
.jardim-guerra__corner--tr { top: 14px; right: 14px; border-top: 1px solid var(--gold-solid); border-right: 1px solid var(--gold-solid); }
.jardim-guerra__corner--bl { bottom: 14px; left: 14px; border-bottom: 1px solid var(--gold-solid); border-left: 1px solid var(--gold-solid); }
.jardim-guerra__corner--br { bottom: 14px; right: 14px; border-bottom: 1px solid var(--gold-solid); border-right: 1px solid var(--gold-solid); }

.jardim-guerra__side-top {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 32px;
  padding-bottom: 22px;
  border-bottom: 1px solid rgba(212, 168, 75, 0.22);
}
.jardim-guerra__side-num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 900;
  color: var(--gold-light);
  font-style: italic;
  line-height: 1;
  min-width: 32px;
}
.jardim-guerra__side-label {
  font-family: var(--font-body);
  font-size: 0.72rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(250, 246, 240, 0.72);
  font-weight: 600;
}
.jardim-guerra__side-icon {
  width: 82px;
  height: 82px;
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-light);
  position: relative;
}
.jardim-guerra__side-icon::before {
  content: '';
  position: absolute;
  inset: -10px;
  background: radial-gradient(circle, rgba(212, 168, 75, 0.22), transparent 68%);
  border-radius: 50%;
  z-index: -1;
}
.jardim-guerra__side-icon svg {
  width: 100%;
  height: 100%;
  filter: drop-shadow(0 4px 12px rgba(212, 168, 75, 0.35));
}
.jardim-guerra__side-title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 4vw, 3.2rem);
  line-height: 1;
  font-weight: 900;
  color: var(--off-white);
  margin: 0 0 14px;
  letter-spacing: -0.01em;
}
.jardim-guerra__side-lead {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.1rem;
  color: var(--gold-light);
  margin: 0 0 28px;
  padding-left: 16px;
  border-left: 2px solid var(--gold-solid);
  line-height: 1.5;
}
.jardim-guerra__side-list {
  list-style: none;
  padding: 0;
  margin: 0 0 32px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.jardim-guerra__side-list li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  color: rgba(250, 246, 240, 0.88);
  font-size: 0.94rem;
  line-height: 1.55;
  font-family: var(--font-body);
}
.jardim-guerra__side-list li span {
  color: var(--gold-solid);
  font-size: 0.9rem;
  flex-shrink: 0;
  margin-top: 3px;
}
.jardim-guerra__side-list li strong {
  display: block;
  color: var(--off-white);
  font-weight: 700;
  font-size: 0.98rem;
  margin-bottom: 3px;
  letter-spacing: 0.005em;
}
.jardim-guerra__side-list li div {
  color: rgba(250, 246, 240, 0.72);
}
.jardim-guerra__side-quote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1rem;
  line-height: 1.55;
  color: rgba(250, 246, 240, 0.75);
  margin: 0;
  padding: 22px 0 0;
  border-top: 1px solid rgba(212, 168, 75, 0.22);
  position: relative;
}
.jardim-guerra__side-quote::before {
  content: '"';
  font-family: var(--font-display);
  font-size: 3.4rem;
  color: var(--gold-solid);
  position: absolute;
  top: 14px;
  left: -6px;
  opacity: 0.28;
  line-height: 0.5;
  font-style: italic;
}

/* ── O PORTÃO ── */
.jardim-guerra__gate {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 80px;
  min-height: 100%;
}
.jardim-guerra__gate-svg {
  width: 60px;
  height: 100%;
  max-height: 620px;
  min-height: 480px;
}
.jardim-guerra__gate-label {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-90deg);
  font-family: var(--font-body);
  font-size: 0.66rem;
  letter-spacing: 0.45em;
  text-transform: uppercase;
  color: var(--gold-light);
  background: #495e22;
  padding: 9px 26px;
  border: 1px solid rgba(212, 168, 75, 0.4);
  white-space: nowrap;
  border-radius: 999px;
  font-weight: 700;
  box-shadow: 0 0 22px rgba(0, 0, 0, 0.35);
}

/* ── REVELAÇÃO ── */
.jardim-guerra__revelation {
  max-width: 920px;
  margin: 0 auto;
  padding: 0;
}
.jardim-guerra__revelation-frame {
  position: relative;
  padding: clamp(54px, 5.5vw, 84px) clamp(40px, 5vw, 80px);
  text-align: center;
  background:
    radial-gradient(ellipse at center, rgba(212, 168, 75, 0.10) 0%, transparent 70%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.22), rgba(0, 0, 0, 0.38));
  border: 1px solid rgba(212, 168, 75, 0.28);
}
.jardim-guerra__rev-corner {
  position: absolute;
  width: 36px;
  height: 36px;
  pointer-events: none;
}
.jardim-guerra__rev-corner--tl { top: 14px; left: 14px; border-top: 1px solid var(--gold-solid); border-left: 1px solid var(--gold-solid); }
.jardim-guerra__rev-corner--tr { top: 14px; right: 14px; border-top: 1px solid var(--gold-solid); border-right: 1px solid var(--gold-solid); }
.jardim-guerra__rev-corner--bl { bottom: 14px; left: 14px; border-bottom: 1px solid var(--gold-solid); border-left: 1px solid var(--gold-solid); }
.jardim-guerra__rev-corner--br { bottom: 14px; right: 14px; border-bottom: 1px solid var(--gold-solid); border-right: 1px solid var(--gold-solid); }
.jardim-guerra__revelation-mark {
  font-family: var(--font-display);
  font-size: clamp(6rem, 10vw, 10rem);
  line-height: 0.5;
  color: var(--gold-solid);
  opacity: 0.22;
  position: absolute;
  top: 60px;
  left: 50%;
  transform: translateX(-50%);
  pointer-events: none;
  font-style: italic;
}
.jardim-guerra__revelation-quote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.3rem, 2.3vw, 1.8rem);
  line-height: 1.55;
  color: var(--off-white);
  margin: 0 auto 32px;
  position: relative;
  z-index: 2;
  max-width: 680px;
  font-weight: 400;
}
.jardim-guerra__revelation-caption {
  font-family: var(--font-body);
  font-size: 0.72rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold-light);
  font-weight: 600;
  display: block;
}
.jardim-guerra__revelation-divider {
  display: block;
  width: 80px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-solid), transparent);
  margin: 0 auto 20px;
}

/* ── RESPONSIVE — JARDIM E GUERRA ── */
@media (max-width: 1024px) {
  .jardim-guerra__split {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .jardim-guerra__gate {
    width: 100%;
    min-height: auto;
    height: 90px;
    margin: 8px 0;
  }
  .jardim-guerra__gate-svg {
    width: 100%;
    max-width: 500px;
    min-height: auto;
    height: 80px;
    transform: rotate(90deg);
  }
  .jardim-guerra__gate-label {
    transform: translate(-50%, -50%);
  }
}
@media (max-width: 768px) {
  .jardim-guerra { padding: 70px 0 80px; }
  .jardim-guerra__header { margin-bottom: 50px; }
  .jardim-guerra__ornament svg { width: 70px; }
  .jardim-guerra__title { gap: 12px; }
  .jardim-guerra__side { padding: 36px 26px; }
  .jardim-guerra__side-icon { width: 64px; height: 64px; margin-bottom: 22px; }
  .jardim-guerra__side-title { font-size: 2rem; }
  .jardim-guerra__side-lead { font-size: 1rem; }
  .jardim-guerra__revelation-frame { padding: 44px 26px; }
  .jardim-guerra__revelation-mark { top: 36px; }
}
@media (max-width: 480px) {
  .jardim-guerra__title { font-size: clamp(2.4rem, 12vw, 3.2rem); }
  .jardim-guerra__tagline { font-size: 0.98rem; }
  .jardim-guerra__side-top { gap: 12px; margin-bottom: 24px; padding-bottom: 18px; }
  .jardim-guerra__side-num { font-size: 1.6rem; }
  .jardim-guerra__side-label { font-size: 0.64rem; letter-spacing: 0.22em; }
  .jardim-guerra__side-list li { font-size: 0.9rem; }
  .jardim-guerra__revelation-quote { font-size: 1.15rem; }
}

/* ═══════════════════════════════════════════════════════════════════
   RESPONSIVE REFINEMENT v2 — tablet / mobile / small mobile
   Override final: corrige hero, event-feature, grids, navbar,
   contato, footer, modais e tipografia em todos os breakpoints.
   Breakpoints: 1280 · 1180 · 1024 · 900 · 768 · 640 · 480 · 380
   ═══════════════════════════════════════════════════════════════════ */

/* Base segurança global — evita overflow horizontal e quebras feias */
html, body { max-width: 100%; overflow-x: hidden; }
h1, h2, h3, h4, p { overflow-wrap: break-word; word-wrap: break-word; }
img, video, iframe { max-width: 100%; height: auto; }
.container { width: 100%; }

/* ───── ≤ 1280px: ajustes finos desktop grande → laptop ───── */
@media (max-width: 1280px) {
  :root { --section-padding: clamp(70px, 10vw, 120px); }
  .hero__clock { width: clamp(540px, 60vw, 950px); height: clamp(540px, 60vw, 950px); }
  .event-feature__grid {
    grid-template-columns: minmax(0, 4fr) minmax(0, 6fr) minmax(0, 2.6fr);
    gap: clamp(24px, 3.4vw, 44px);
  }
  .event-feature__video-frame { transform: none; }
}

/* ───── ≤ 1180px: navbar fica apertada ───── */
@media (max-width: 1180px) {
  .navbar__links { gap: 18px; }
  .navbar__links a { font-size: 0.76rem; letter-spacing: 0.06em; }
  .navbar__logo img { height: 50px; }
}

/* ───── ≤ 1100px: grid vira 2 colunas; vídeo do convite passa a linha inteira abaixo ───── */
@media (max-width: 1100px) {
  .event-feature__grid {
    grid-template-columns: minmax(0, 5fr) minmax(0, 7fr) !important;
    gap: clamp(32px, 4.5vw, 56px) !important;
  }
  .event-feature__video {
    display: block;
    grid-column: 1 / -1;
    justify-self: center;
    width: 100%;
    max-width: 340px;
    margin-top: 8px;
  }
  .event-feature__video-frame {
    transform: none !important;
    aspect-ratio: 9 / 16;
  }
  .event-feature__video:hover .event-feature__video-frame {
    transform: translateY(-4px) !important;
  }
}

/* ───── ≤ 1024px: tablets — quebra de grids principais ───── */
@media (max-width: 1024px) {
  :root { --section-padding: clamp(60px, 9vw, 100px); }

  /* Grids */
  .split-grid { grid-template-columns: 1fr !important; gap: 48px; }
  .grid-3 { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .grid-2 { grid-template-columns: 1fr; gap: 28px; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .pillar-grid { grid-template-columns: repeat(2, 1fr) !important; gap: 24px; }

  /* Contato / Inscrição */
  .contato__grid { grid-template-columns: 1fr !important; gap: 56px; }
  .inscricao__grid { grid-template-columns: 1fr !important; gap: 48px; }
  .fundadora-full__grid { grid-template-columns: 1fr !important; gap: 48px; }
  .fundadora-full__grid > div:first-child { max-width: 380px; margin: 0 auto; }

  /* Event feature — banner stack */
  .event-feature__grid { grid-template-columns: 1fr !important; gap: 48px; }
  .event-feature__banner-frame {
    max-width: 360px;
    transform: none !important;
  }
  .event-feature__banner-frame:hover { transform: translateY(-4px) !important; }
  .event-feature__content { max-width: 720px; margin: 0 auto; }

  /* Hero clock — encolhe no tablet */
  .hero__clock {
    width: clamp(500px, 75vw, 820px);
    height: clamp(500px, 75vw, 820px);
    right: -15%;
  }
}

/* ───── ≤ 900px: transição pra mobile / ativa hamburger ───── */
@media (max-width: 900px) {
  .navbar { padding: 16px 0; }
  .navbar.scrolled { padding: 10px 0; }
  .navbar__logo img { height: 46px; }
  .navbar.scrolled .navbar__logo img { height: 40px; }

  /* Hamburger assume, navbar__links some completamente (overlay cuida do menu) */
  .navbar__links,
  .navbar__links.open { display: none !important; }
  .navbar__toggle { display: flex !important; }

  /* Grid de projetos: 2 colunas ainda funciona */
  .grid-3 { grid-template-columns: repeat(2, 1fr); gap: 22px; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); gap: 22px; }

  /* Event feature padding */
  .event-feature { padding: clamp(70px, 9vw, 110px) 0; }
  .event-feature__badge { margin-bottom: 28px; font-size: 0.72rem; }
}

/* ───── ≤ 768px: mobile — quebra total em coluna ───── */
@media (max-width: 768px) {
  :root { --section-padding: clamp(56px, 12vw, 90px); }

  .container { padding: 0 22px; }

  /* Typography tuning */
  h1 { font-size: clamp(2.2rem, 8vw, 3.2rem); }
  h2 { font-size: clamp(1.7rem, 6vw, 2.3rem); }
  h3 { font-size: clamp(1.15rem, 4.5vw, 1.4rem); }
  p  { font-size: 1rem; line-height: 1.7; }

  /* ── HERO ── */
  .hero { padding: 7rem 1.25rem 4rem; min-height: 92vh; }
  .hero__pre { font-size: 0.68rem; letter-spacing: 0.28em; margin-bottom: 1.4rem; }
  .hero__title {
    font-size: clamp(2.6rem, 13vw, 4.4rem);
    max-width: 100%;
    line-height: 1.02;
    margin-bottom: 1.1rem;
  }
  .hero__sub { font-size: clamp(1rem, 4vw, 1.3rem); margin-bottom: 2.2rem; }
  .hero__actions { flex-direction: column; gap: 14px; width: 100%; align-items: stretch; }
  .hero__actions .btn { width: 100%; justify-content: center; }
  .hero__scroll { bottom: 1.4rem; }
  .hero__scroll span { font-size: 0.62rem; }
  .hero__clock {
    right: auto; left: 50%; top: auto; bottom: -20%;
    transform: translateX(-50%);
    width: 140vw; height: 140vw;
    opacity: 0.14;
  }
  .hero__orb--1 { width: 340px; height: 340px; }
  .hero__orb--2 { width: 300px; height: 300px; }
  .hero__orb--3 { width: 220px; height: 220px; }

  /* ── PAGE HEADER (subpáginas) ── */
  .page-header { min-height: 44vh; padding: 120px 20px 60px; }
  .page-header h1 { font-size: clamp(2rem, 8vw, 2.8rem); }
  .page-header p { font-size: 1rem; }
  .page-header .hero__clock {
    left: 50%; top: auto; bottom: -28%;
    transform: translateX(-50%);
    width: 110vw; height: 110vw; opacity: 0.12;
  }

  /* ── GRIDS — tudo stack ── */
  .grid-3,
  .grid-2,
  .grid-4,
  .pillar-grid,
  .split-grid {
    grid-template-columns: 1fr !important;
    max-width: 100%;
    gap: 22px;
  }
  .grid-4 { max-width: 340px; margin-left: auto; margin-right: auto; }
  .grid-3 { max-width: 460px; margin-left: auto; margin-right: auto; }
  .pillar-grid { gap: 18px; margin-top: 40px; }
  .pillar-card { padding: 32px 24px; }
  .projeto-card { padding: 32px 24px; min-height: auto; }
  .preview-card { padding: 32px 24px; }

  /* Remove inline-style liderança spacing */
  .split-grid > div { padding: 32px 24px !important; }

  /* ── SECTIONS ── */
  .section { padding: var(--section-padding) 0; }
  .section__header { margin-bottom: 40px; }

  /* ── EVENT FEATURE ── */
  .event-feature { padding: 60px 0 70px; }
  .event-feature__badge {
    padding: 8px 16px;
    font-size: 0.66rem;
    letter-spacing: 0.18em;
    margin-bottom: 24px;
  }
  .event-feature__grid { gap: 40px; }
  .event-feature__banner-frame {
    max-width: min(320px, 82vw);
    border-radius: 12px;
  }
  .event-feature__banner-ribbon {
    top: 14px;
    right: -10px;
    padding: 10px 16px 8px;
    transform: rotate(4deg);
  }
  .event-feature__banner-ribbon span { font-size: 0.58rem; }
  .event-feature__banner-ribbon strong { font-size: 1.2rem; }
  .event-feature__eyebrow { font-size: 0.72rem; letter-spacing: 0.24em; }
  .event-feature__title { font-size: clamp(2rem, 9vw, 3rem); }
  .event-feature__tagline { font-size: 1rem; }
  .event-feature__lede { font-size: 0.96rem; margin-bottom: 24px; }
  .event-feature__highlights { gap: 10px; margin-bottom: 26px; }
  .event-feature__highlights li { padding: 12px 14px; gap: 10px; }
  .event-feature__highlights li strong { font-size: 0.95rem; }
  .event-feature__highlights li span { font-size: 0.78rem; }
  .event-feature__meta {
    gap: 18px;
    padding: 16px 0 20px;
    margin-bottom: 22px;
    flex-direction: column;
  }
  .event-feature__meta-item strong { font-size: 1rem; }
  .event-feature__actions { flex-direction: column; gap: 12px; }
  .event-feature__actions .btn { width: 100%; justify-content: center; }
  .btn-event-primary { padding: 16px 24px; font-size: 0.85rem; letter-spacing: 0.12em; }

  /* Event invite (vídeo convite) */
  .event-invite { padding: 12px 16px 12px 12px; gap: 14px; margin-bottom: 24px; }
  .event-invite__thumb { width: 58px; height: 78px; }
  .event-invite__name { font-size: 0.95rem; }
  .event-invite__eyebrow { font-size: 0.58rem; }
  .event-invite__cta { font-size: 0.68rem; }

  /* ── LOJA (home) cartão visual ── */
  .section .split-grid > div[style*="linear-gradient"] { margin: 0 auto; }

  /* ── FOOTER ── */
  .footer { padding: 40px 0 24px; }
  .footer__top {
    flex-direction: column;
    gap: 22px;
    text-align: center;
    padding-bottom: 22px;
  }
  .footer__links {
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px 18px;
  }
  .footer__links a { font-size: 0.72rem; }
  .footer__bottom p { font-size: 0.72rem; }
  .footer > .container > div:first-child { padding: 40px 16px 16px !important; }
  .footer > .container > div:first-child p:first-child { font-size: clamp(1.1rem, 5vw, 1.5rem) !important; }

  /* ── CTA SECTION ── */
  .cta-section p { font-size: 1rem; }
  .cta-section h2 { font-size: clamp(1.8rem, 6vw, 2.4rem); }
  .cta-section__content > div { flex-direction: column !important; width: 100%; gap: 12px !important; }
  .cta-section__content > div .btn { width: 100%; justify-content: center; }

  /* ── FORMULÁRIOS ── */
  .contato__form, .inscricao__form { padding: 32px 22px; }
  .form-row, .form-row--triple { grid-template-columns: 1fr !important; gap: 0; }

  /* ── NAV OVERLAY ── */
  .nav__overlay { gap: 1.8rem; padding: 80px 20px 40px; }
  .nav__overlay a { font-size: clamp(1.5rem, 6vw, 2.2rem); }

  /* ── BRAND MARK ── */
  .brand-mark { width: clamp(85px, 24vw, 120px); margin: 32px auto 4px; }

  /* ── PRELOADER ── */
  .preloader__line { max-width: 60vw; }

  /* ── EVENT MODAL ── */
  .event-modal { padding: 14px; }
  .event-modal__card { border-radius: 14px; }
  .event-modal__body { padding: 22px 20px 24px; }
  .event-modal__title { font-size: clamp(1.5rem, 6vw, 2rem); }
  .event-modal__meta { gap: 18px; flex-wrap: wrap; }
  .event-modal__lede { font-size: 0.85rem; }
  .event-modal__actions { gap: 10px; }
  .event-modal__cta { padding: 14px 22px; font-size: 0.8rem; }

  /* ── INVITE LIGHTBOX ── */
  .invite-lightbox { padding: 16px; }
  .invite-lightbox__video {
    max-width: min(92vw, 380px);
    max-height: calc(100vh - 100px);
    border-radius: 12px;
  }
  .invite-lightbox__close {
    top: -6px; right: -6px;
    width: 36px; height: 36px; font-size: 1.5rem;
  }
  .invite-lightbox__caption { font-size: 0.68rem; }

  /* ── DROPDOWN NAVBAR (mobile hide) ── */
  .dropdown-menu { display: none !important; }

  /* ── CARDS DE LIDERANÇA INLINE ── */
  .split-grid .reveal-left,
  .split-grid .reveal-right { max-width: 100%; }

  /* ── FUNDADORA PREVIEW ── */
  .fundadora-preview { grid-template-columns: 1fr; text-align: center; gap: 32px; }
  .fundadora-preview__circle { width: 160px; height: 160px; margin: 0 auto; }

  /* ── PASSOS ── */
  .passos { grid-template-columns: 1fr; max-width: 360px; margin: 0 auto 40px; gap: 20px; }

  /* ── CURSOR ── */
  .cursor { display: none !important; }
  body { cursor: auto !important; }
}

/* ───── ≤ 640px: mobile médio ───── */
@media (max-width: 640px) {
  :root { --section-padding: 56px; }
  .container { padding: 0 18px; }

  h1 { font-size: clamp(2rem, 9vw, 2.8rem); }
  h2 { font-size: clamp(1.55rem, 7vw, 2.1rem); }

  .btn { padding: 14px 28px; font-size: 0.85rem; letter-spacing: 0.06em; }

  .hero { padding: 6.5rem 1.1rem 3.5rem; }
  .hero__pre { letter-spacing: 0.24em; font-size: 0.64rem; }
  .hero__title { font-size: clamp(2.4rem, 14vw, 4rem); }
  .hero__sub { font-size: 1rem; margin-bottom: 2rem; }

  .event-feature__banner-frame { max-width: min(280px, 78vw); }
  .event-feature__banner-ribbon {
    top: 10px; right: -6px;
    padding: 8px 14px 6px;
  }
  .event-feature__banner-ribbon strong { font-size: 1.1rem; }
  .event-feature__title { font-size: clamp(1.9rem, 10vw, 2.6rem); }
  .event-feature__video { max-width: min(280px, 78vw); }

  .section__header { margin-bottom: 32px; }
  .section-label { font-size: 0.72rem; letter-spacing: 0.2em; }

  .contato-tabs { margin-bottom: 28px; }
  .contato-tab { padding: 12px 16px; font-size: 0.78rem; }

  .form-field input,
  .form-field select,
  .form-field textarea,
  .form-group input,
  .form-group textarea,
  .form-group select { padding: 12px 14px; font-size: 0.95rem; }

  .contato__socials { flex-wrap: wrap; gap: 10px; }
  .contato__social { width: 42px; height: 42px; }

  /* Liderança cards (inline-style) — padding mais apertado */
  .split-grid > div[style*="padding"] { padding: 28px 22px !important; }
}

/* ───── ≤ 480px: mobile pequeno ───── */
@media (max-width: 480px) {
  :root { --section-padding: 52px; }
  .container { padding: 0 16px; }

  h1 { font-size: clamp(1.85rem, 9vw, 2.4rem); }
  h2 { font-size: clamp(1.45rem, 7vw, 1.9rem); }
  h3 { font-size: 1.15rem; }

  .btn { padding: 13px 24px; font-size: 0.82rem; }

  .hero { padding: 6rem 1rem 3rem; min-height: 88vh; }
  .hero__title { font-size: clamp(2.1rem, 13vw, 3.3rem); letter-spacing: -0.01em; }
  .hero__sub { font-size: 0.95rem; line-height: 1.5; }
  .hero__pre { font-size: 0.6rem; margin-bottom: 1.1rem; }

  .navbar { padding: 12px 0; }
  .navbar__logo img { height: 42px; }
  .navbar.scrolled .navbar__logo img { height: 36px; }

  /* Event feature */
  .event-feature { padding: 50px 0 60px; }
  .event-feature__badge { padding: 6px 14px; font-size: 0.6rem; margin-bottom: 20px; }
  .event-feature__banner-frame { max-width: min(260px, 76vw); }
  .event-feature__video { max-width: min(260px, 76vw); }
  .event-feature__title { font-size: clamp(1.8rem, 11vw, 2.4rem); }
  .event-feature__tagline { font-size: 0.95rem; }
  .event-feature__lede { font-size: 0.92rem; }
  .event-feature__highlights li { padding: 11px 12px; }
  .event-feature__highlights li strong { font-size: 0.88rem; }
  .event-feature__highlights li span { font-size: 0.74rem; }

  /* Cards */
  .pillar-card,
  .projeto-card,
  .preview-card { padding: 28px 20px; }
  .projeto-card__icon { width: 62px; height: 62px; margin-bottom: 18px; }
  .projeto-card__icon svg { width: 30px; height: 30px; }

  /* Footer */
  .footer__links { gap: 10px 14px; }
  .footer__links a { font-size: 0.68rem; letter-spacing: 0.06em; }
  .footer__bottom p { font-size: 0.68rem; }
  .footer__logo img { height: 40px; }

  /* Forms */
  .contato__form, .inscricao__form { padding: 24px 18px; border-radius: 10px; }
  .contato-tabs { gap: 6px; }
  .contato-tab { padding: 11px 14px; font-size: 0.74rem; }

  /* CTA */
  .cta-section { padding: 64px 0; }
  .cta-section h2 { font-size: clamp(1.6rem, 7vw, 2.1rem); }
  .cta-section p { font-size: 0.95rem; }

  /* Event modal */
  .event-modal { padding: 10px; }
  .event-modal__body { padding: 20px 18px 22px; }
  .event-modal__title { font-size: 1.5rem; }
  .event-modal__banner { aspect-ratio: 16 / 9; }
  .event-modal__banner img { min-height: 0; }

  /* Nav overlay — apertar */
  .nav__overlay { gap: 1.4rem; padding: 72px 18px 32px; }
  .nav__overlay a { font-size: clamp(1.3rem, 6vw, 1.9rem); }

  /* Page header subpáginas */
  .page-header { min-height: 40vh; padding: 110px 16px 50px; }

  /* Section labels */
  .section-label { font-size: 0.68rem; }

  /* Gold line */
  .gold-line { width: 48px; margin: 16px auto; }

  /* Quote block */
  .quote-block blockquote { padding: 14px 8px; font-size: 1rem; }
  .quote-block blockquote::before { font-size: 3rem; }

  /* Preloader */
  .preloader__logo { width: clamp(70px, 22vw, 110px); }
  .preloader__brand { font-size: clamp(1.1rem, 5vw, 2rem); letter-spacing: 0.1em; }
  .preloader__counter { font-size: clamp(2.4rem, 10vw, 5rem); }
}

/* ───── ≤ 380px: mobile muito pequeno (iPhone SE 1ª / Galaxy Fold) ───── */
@media (max-width: 380px) {
  .container { padding: 0 14px; }
  h1 { font-size: 1.75rem; }
  h2 { font-size: 1.4rem; }
  .btn { padding: 12px 20px; font-size: 0.78rem; letter-spacing: 0.05em; }
  .hero__title { font-size: 2rem; }
  .hero__sub { font-size: 0.9rem; }
  .event-feature__banner-frame { max-width: 240px; }
  .event-feature__title { font-size: 1.75rem; }
  .event-feature__banner-ribbon { top: 8px; right: -4px; padding: 7px 12px 5px; }
  .event-feature__banner-ribbon strong { font-size: 1rem; }
  .event-feature__banner-ribbon span { font-size: 0.54rem; }
  .navbar__logo img { height: 38px; }
  .footer__links { gap: 8px 12px; }
  .pillar-card, .projeto-card, .preview-card { padding: 24px 16px; }
}

/* ───── Landscape de celular — altura limitada ───── */
@media (max-height: 520px) and (orientation: landscape) {
  .hero { min-height: auto; padding: 6rem 1.5rem 2.5rem; }
  .hero__title { font-size: clamp(2rem, 7vh, 3.2rem); }
  .hero__sub { font-size: 1rem; margin-bottom: 1.4rem; }
  .hero__scroll { display: none; }
  .page-header { min-height: auto; padding: 100px 20px 50px; }
  .nav__overlay { gap: 1rem; padding: 60px 20px 20px; }
  .nav__overlay a { font-size: 1.2rem; }
}

/* ═══════════════════════════════════════════════════════════════════
   NAV OVERLAY MOBILE v3 — dinâmico com stagger, blur-to-focus, shimmer
   ═══════════════════════════════════════════════════════════════════ */

/* Hamburger sempre acima do overlay (fica clicável para fechar) */
.navbar__toggle { position: relative; z-index: 8001; }

/* Overlay: background aprimorado com gradient radial + easing refinada */
.nav__overlay {
  pointer-events: none;
  background:
    radial-gradient(circle at 22% 0%, rgba(212, 168, 75, 0.15), transparent 55%),
    radial-gradient(circle at 80% 100%, rgba(109, 125, 51, 0.18), transparent 60%),
    rgba(13, 77, 85, 0.97);
  backdrop-filter: blur(30px) saturate(1.15);
  -webkit-backdrop-filter: blur(30px) saturate(1.15);
  transition: clip-path 0.75s cubic-bezier(0.77, 0, 0.18, 1);
  justify-content: flex-start;
  gap: 0;
}
.nav__overlay.open { pointer-events: auto; }

/* Orbe dourada pulsante no centro — só aparece quando aberto */
.nav__overlay::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  width: 140vmin; height: 140vmin;
  transform: translate(-50%, -50%) scale(0.6);
  background: radial-gradient(circle, rgba(212, 168, 75, 0.12) 0%, transparent 40%);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.9s ease 0.15s, transform 1.4s cubic-bezier(0.22, 1, 0.36, 1) 0.05s;
}
.nav__overlay.open::before {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
  animation: navOverlayPulse 6s ease-in-out 1.5s infinite;
}
@keyframes navOverlayPulse {
  0%, 100% { opacity: 0.85; }
  50%      { opacity: 1; }
}

/* Wrapper interno rolável */
.nav__overlay__inner {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: clamp(0.9rem, 2.8vh, 1.55rem);
  width: 100%;
  height: 100dvh;
  max-height: 100dvh;
  padding: 96px 24px 60px;
  overflow-y: auto;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
  touch-action: pan-y;
  overscroll-behavior: contain;
  scrollbar-width: thin;
  scrollbar-color: rgba(212, 168, 75, 0.4) transparent;
}
.nav__overlay__inner::-webkit-scrollbar { width: 4px; }
.nav__overlay__inner::-webkit-scrollbar-thumb {
  background: rgba(212, 168, 75, 0.4);
  border-radius: 4px;
}
.nav__overlay__inner::-webkit-scrollbar-track { background: transparent; }

/* Links principais — estado fechado: blur + deslocado + scale */
.nav__overlay .nav__overlay__inner > a {
  position: relative;
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 5.4vw, 2rem);
  color: var(--sand);
  letter-spacing: 0.08em;
  text-align: center;
  padding: 6px 22px;
  opacity: 0;
  transform: translateY(36px) scale(0.94);
  filter: blur(6px);
  transition:
    opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.85s cubic-bezier(0.22, 1, 0.36, 1),
    filter 0.7s ease,
    color 0.35s ease,
    letter-spacing 0.35s ease;
}
/* Underline animado por link — linha dourada expande no hover */
.nav__overlay .nav__overlay__inner > a::after {
  content: '';
  position: absolute;
  left: 50%; bottom: 0;
  width: 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-solid), transparent);
  transform: translateX(-50%);
  transition: width 0.5s var(--ease-out);
  pointer-events: none;
}
.nav__overlay .nav__overlay__inner > a:hover::after,
.nav__overlay .nav__overlay__inner > a:focus-visible::after { width: 85%; }

.nav__overlay.open .nav__overlay__inner > a {
  opacity: 1;
  transform: translateY(0) scale(1);
  filter: blur(0);
}
/* Stagger escalonado dos 6 links principais */
.nav__overlay.open .nav__overlay__inner > a:nth-of-type(1) { transition-delay: 0.22s; }
.nav__overlay.open .nav__overlay__inner > a:nth-of-type(2) { transition-delay: 0.30s; }
.nav__overlay.open .nav__overlay__inner > a:nth-of-type(3) { transition-delay: 0.38s; }
.nav__overlay.open .nav__overlay__inner > a:nth-of-type(4) { transition-delay: 0.46s; }
.nav__overlay.open .nav__overlay__inner > a:nth-of-type(5) { transition-delay: 0.54s; }
.nav__overlay.open .nav__overlay__inner > a:nth-of-type(6) { transition-delay: 0.62s; }

.nav__overlay .nav__overlay__inner > a:hover,
.nav__overlay .nav__overlay__inner > a:focus-visible {
  color: var(--gold-light);
  letter-spacing: 0.12em;
}

/* Grupo de projetos — shimmer na borda superior + stagger */
.nav__overlay__group {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  margin-top: 6px;
  padding: 28px 0 8px;
  width: min(340px, 88%);
  opacity: 0;
  transform: translateY(30px);
  filter: blur(4px);
  transition:
    opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1) 0.72s,
    transform 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0.72s,
    filter 0.7s ease 0.72s;
}
/* Linha dourada que expande como uma varinha quando abre */
.nav__overlay__group::before {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  width: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(212, 168, 75, 0.55), transparent);
  transform: translateX(-50%);
  transition: width 0.9s var(--ease-out) 0.95s;
}
.nav__overlay.open .nav__overlay__group {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}
.nav__overlay.open .nav__overlay__group::before { width: 100%; }

.nav__overlay__label {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold-light);
  opacity: 0.9;
  margin-bottom: 8px;
}
.nav__overlay.open .nav__overlay__label {
  animation: navLabelGlow 3.5s ease-in-out 1.4s infinite;
}
@keyframes navLabelGlow {
  0%, 100% { text-shadow: 0 0 0 rgba(212, 168, 75, 0); }
  50%      { text-shadow: 0 0 18px rgba(212, 168, 75, 0.6); }
}

/* Sublinks — entrada da esquerda com blur */
.nav__overlay .nav__overlay__sublink {
  position: relative;
  font-family: var(--font-display);
  font-size: clamp(0.95rem, 3.8vw, 1.18rem);
  color: rgba(229, 211, 179, 0.82);
  letter-spacing: 0.04em;
  padding: 5px 14px;
  opacity: 0;
  transform: translateX(-22px);
  filter: blur(3px);
  transition:
    opacity 0.55s ease,
    transform 0.6s var(--ease-out),
    filter 0.5s ease,
    color 0.3s ease,
    letter-spacing 0.3s ease;
}
.nav__overlay.open .nav__overlay__sublink {
  opacity: 1;
  transform: translateX(0);
  filter: blur(0);
}
.nav__overlay.open .nav__overlay__sublink:nth-of-type(1) { transition-delay: 1.00s; }
.nav__overlay.open .nav__overlay__sublink:nth-of-type(2) { transition-delay: 1.08s; }
.nav__overlay.open .nav__overlay__sublink:nth-of-type(3) { transition-delay: 1.16s; }
.nav__overlay.open .nav__overlay__sublink:nth-of-type(4) { transition-delay: 1.24s; }
.nav__overlay.open .nav__overlay__sublink:nth-of-type(5) { transition-delay: 1.32s; }

.nav__overlay .nav__overlay__sublink:hover,
.nav__overlay .nav__overlay__sublink:focus-visible {
  color: var(--gold-light);
  transform: translateX(6px);
  letter-spacing: 0.08em;
}

/* Botão fechar — entra com rotação elástica, hover gira 90° */
.nav__overlay__close {
  position: absolute;
  top: 22px;
  right: 22px;
  z-index: 8002;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 1.5px solid rgba(212, 168, 75, 0.55);
  background: rgba(13, 77, 85, 0.72);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color: var(--gold-light);
  font-family: var(--font-display);
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 0 4px;
  opacity: 0;
  transform: scale(0.5) rotate(-180deg);
  box-shadow: 0 0 0 rgba(212, 168, 75, 0);
  transition:
    opacity 0.55s ease,
    transform 0.7s cubic-bezier(0.34, 1.56, 0.64, 1),
    background 0.35s ease,
    color 0.35s ease,
    border-color 0.35s ease,
    box-shadow 0.45s ease;
}
.nav__overlay.open .nav__overlay__close {
  opacity: 1;
  transform: scale(1) rotate(0deg);
  transition-delay: 0.35s, 0.35s, 0s, 0s, 0s, 0s;
  box-shadow: 0 10px 32px rgba(0, 0, 0, 0.38);
}
.nav__overlay__close:hover {
  background: var(--gold-solid);
  color: var(--azul-petroleo);
  border-color: var(--gold-solid);
  transform: scale(1.1) rotate(90deg);
  box-shadow: 0 0 28px rgba(212, 168, 75, 0.5);
}
.nav__overlay__close:active { transform: scale(0.95) rotate(90deg); }

/* Body lock quando overlay está aberto — fix iOS Safari touch scroll dentro do overlay
   (top eh setado via JS pra preservar scroll position) */
body.nav-open {
  overflow: hidden;
  position: fixed;
  left: 0;
  right: 0;
  width: 100%;
}

/* Landscape / altura baixa: comprime e acelera a animação */
@media (max-height: 560px) {
  .nav__overlay__inner { gap: 0.75rem; padding: 72px 20px 36px; }
  .nav__overlay .nav__overlay__inner > a { font-size: clamp(1rem, 4vw, 1.45rem); }
  .nav__overlay__group { padding: 16px 0 4px; margin-top: 2px; }
  .nav__overlay .nav__overlay__sublink { font-size: 0.88rem; padding: 3px 10px; }
  .nav__overlay__close { top: 14px; right: 14px; width: 42px; height: 42px; font-size: 1.6rem; }
}

/* ───── Respeita prefers-reduced-motion ───── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .hero__clock, .event-feature__glow, .event-feature__badge-dot,
  .event-invite__pulse, .event-invite__live-dot { animation: none !important; }
}

/* ════════════════════════════════════════════
   VERSÍCULOS DA VISÃO — A PALAVRA QUE NOS SUSTENTA
   Bloco institucional, aplica-se a toda a visão
   ════════════════════════════════════════════ */
.versiculos {
  position: relative;
  background:
    radial-gradient(ellipse at 15% 0%, rgba(212, 168, 75, 0.10), transparent 55%),
    radial-gradient(ellipse at 85% 100%, rgba(212, 168, 75, 0.08), transparent 55%),
    linear-gradient(180deg, #0B424A 0%, #0D4D55 45%, #0A3942 100%);
  isolation: isolate;
  overflow: hidden;
}
.versiculos::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(212, 168, 75, 0.05) 1px, transparent 1px);
  background-size: 100% 120px;
  pointer-events: none;
  opacity: 0.25;
  z-index: 0;
}
.versiculos > .container {
  position: relative;
  z-index: 2;
}

.versiculos__glow {
  position: absolute;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  filter: blur(130px);
  opacity: 0.5;
  pointer-events: none;
  z-index: 0;
}
.versiculos__glow--a {
  top: -10%;
  left: -10%;
  background: radial-gradient(circle, rgba(212, 168, 75, 0.28), transparent 70%);
}
.versiculos__glow--b {
  bottom: -12%;
  right: -12%;
  background: radial-gradient(circle, rgba(45, 95, 107, 0.55), transparent 70%);
}

.versiculos .section__header h2 {
  color: var(--gold-light);
  font-style: italic;
}

.versiculos__lede {
  max-width: 720px;
  margin: 24px auto 0;
  color: var(--sand);
  opacity: 0.9;
  font-size: clamp(1.02rem, 1.6vw, 1.15rem);
  font-style: italic;
  line-height: 1.8;
}
.versiculos__lede em {
  color: var(--gold-light);
  font-style: italic;
}

.versiculos__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(28px, 3.5vw, 48px);
  margin-top: 60px;
}

.versiculo-card {
  position: relative;
  padding: 48px 40px 40px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.015));
  border: 1px solid rgba(212, 168, 75, 0.22);
  border-radius: 6px;
  overflow: hidden;
  transition:
    border-color 0.5s var(--ease-out),
    transform 0.5s var(--ease-out),
    box-shadow 0.5s var(--ease-out);
  backdrop-filter: blur(2px);
}
.versiculo-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-solid), transparent);
  opacity: 0.8;
}
.versiculo-card::after {
  content: '';
  position: absolute;
  inset: 10px;
  border: 1px solid rgba(212, 168, 75, 0.10);
  border-radius: 4px;
  pointer-events: none;
}
.versiculo-card:hover {
  border-color: rgba(212, 168, 75, 0.55);
  transform: translateY(-4px);
  box-shadow:
    0 22px 60px rgba(0, 0, 0, 0.35),
    0 0 0 1px rgba(212, 168, 75, 0.12) inset;
}

.versiculo-card__num {
  position: absolute;
  top: 18px;
  right: 22px;
  font-family: var(--font-display);
  font-size: 3.2rem;
  font-style: italic;
  font-weight: 400;
  color: var(--gold-solid);
  opacity: 0.18;
  line-height: 1;
  pointer-events: none;
}

.versiculo-card__ornament {
  font-family: var(--font-display);
  color: var(--gold-light);
  font-size: 1.4rem;
  margin-bottom: 18px;
  letter-spacing: 0.4em;
  opacity: 0.85;
}

.versiculo-card__text {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(1.12rem, 1.7vw, 1.34rem);
  line-height: 1.55;
  color: var(--off-white);
  margin: 0 0 26px;
  letter-spacing: 0.005em;
}

.versiculo-card__rule {
  width: 48px;
  height: 1px;
  background: linear-gradient(90deg, var(--gold-solid), transparent);
  margin-bottom: 16px;
}

.versiculo-card__ref {
  display: block;
  font-family: var(--font-body);
  font-style: normal;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-light);
}
.versiculo-card__ref span {
  opacity: 0.55;
  font-weight: 400;
  margin-left: 4px;
}

.versiculos__closing {
  margin: 72px auto 0;
  max-width: 640px;
  text-align: center;
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.1rem, 1.7vw, 1.35rem);
  color: var(--gold-light);
  line-height: 1.6;
  position: relative;
  padding: 0 60px;
}
.versiculos__closing::before,
.versiculos__closing::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 36px;
  height: 1px;
}
.versiculos__closing::before {
  left: 0;
  background: linear-gradient(90deg, transparent, var(--gold-solid));
}
.versiculos__closing::after {
  right: 0;
  background: linear-gradient(90deg, var(--gold-solid), transparent);
}

@media (max-width: 860px) {
  .versiculos__grid {
    grid-template-columns: 1fr;
    gap: 24px;
    margin-top: 44px;
  }
  .versiculo-card {
    padding: 40px 28px 32px;
  }
  .versiculo-card__num {
    font-size: 2.6rem;
    top: 14px;
    right: 18px;
  }
  .versiculo-card__text {
    font-size: 1.1rem;
  }
  .versiculos__closing {
    padding: 0 40px;
    margin-top: 52px;
  }
}

/* ════════════════════════════════════════════
   GALERIA DE FOTOS
════════════════════════════════════════════ */
.galeria {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  grid-auto-rows: 260px;
}
.galeria__item {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  background: var(--sand);
  border: 1px solid rgba(212,168,75,0.2);
}
.galeria__item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out), filter 0.6s var(--ease-out);
}
.galeria__item:hover img {
  transform: scale(1.06);
  filter: brightness(1.05);
}
.galeria__item--wide { grid-column: span 2; }
.galeria__item--tall { grid-row: span 2; }

/* Placeholder — remover quando as fotos forem adicionadas */
.galeria__placeholder {
  width: 100%; height: 100%;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--sand) 0%, var(--sand-light) 100%);
  color: var(--sea);
  gap: 8px;
}
.galeria__placeholder span {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  opacity: 0.4;
}
.galeria__placeholder small {
  font-size: 0.75rem;
  opacity: 0.35;
  font-family: monospace;
}

@media (max-width: 768px) {
  .galeria {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 200px;
    gap: 10px;
  }
  .galeria__item--wide { grid-column: span 2; }
  .galeria__item--tall { grid-row: span 1; }
}
@media (max-width: 480px) {
  .galeria {
    grid-template-columns: 1fr;
    grid-auto-rows: 220px;
  }
  .galeria__item--wide { grid-column: span 1; }
}

/* ════════════════════════════════════════════
   BOTÃO FLUTUANTE WHATSAPP
════════════════════════════════════════════ */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 9999;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4), 0 2px 8px rgba(0,0,0,0.15);
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out);
  text-decoration: none;
}
.whatsapp-float:hover {
  transform: scale(1.1) translateY(-3px);
  box-shadow: 0 8px 32px rgba(37, 211, 102, 0.5), 0 4px 12px rgba(0,0,0,0.2);
}
.whatsapp-float svg {
  width: 32px;
  height: 32px;
  fill: #fff;
}
.whatsapp-float__pulse {
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid #25D366;
  animation: wa-pulse 2s ease-out infinite;
}
@keyframes wa-pulse {
  0% { transform: scale(1); opacity: 0.6; }
  100% { transform: scale(1.4); opacity: 0; }
}
@media (max-width: 600px) {
  .whatsapp-float { width: 54px; height: 54px; bottom: 20px; right: 18px; }
  .whatsapp-float svg { width: 28px; height: 28px; }
}

/* ═══════════════════════════════════════════════════════════════
   IMAGE-SPLIT — seção dividida (imagem + cor de fundo)
   Layout premium onde uma foto divide a seção pela metade
   ═══════════════════════════════════════════════════════════════ */
.image-split {
  position: relative;
  padding: 0 !important;
  overflow: hidden;
}
.image-split__wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  min-height: 620px;
}
.image-split--reverse .image-split__wrap {
  direction: rtl;
}
.image-split--reverse .image-split__wrap > * {
  direction: ltr;
}
.image-split__media {
  position: relative;
  overflow: hidden;
  background: #1a1a1a;
}
.image-split__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: saturate(1.05);
  transform: scale(1.02);
  transition: transform 1.6s var(--ease-out);
}
.image-split:hover .image-split__media img {
  transform: scale(1.08);
}
/* gradiente sutil para criar transição suave entre foto e cor */
.image-split__media::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(0,0,0,0) 0%,
    rgba(0,0,0,0) 65%,
    rgba(0,0,0,0.18) 100%
  );
  pointer-events: none;
}
.image-split--reverse .image-split__media::after {
  background: linear-gradient(
    270deg,
    rgba(0,0,0,0) 0%,
    rgba(0,0,0,0) 65%,
    rgba(0,0,0,0.18) 100%
  );
}
/* tag/legenda dentro da foto */
.image-split__tag {
  position: absolute;
  bottom: 28px;
  left: 28px;
  z-index: 3;
  background: rgba(13, 26, 36, 0.78);
  color: var(--gold-light);
  padding: 10px 18px;
  border: 1px solid rgba(212, 168, 75, 0.35);
  font-family: var(--font-body);
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.image-split__tag::before {
  content: '';
  display: inline-block;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--terracota);
  margin-right: 10px;
  vertical-align: middle;
  animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.4); opacity: 0.6; }
}

.image-split__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(60px, 8vw, 110px) clamp(36px, 6vw, 90px);
  position: relative;
}
.image-split__content > * {
  max-width: 540px;
}
.image-split__content .section-label {
  margin-bottom: 14px;
}
.image-split__content h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.6vw, 2.9rem);
  line-height: 1.15;
  margin-bottom: 0;
}
.image-split__content .gold-line {
  margin: 22px 0 28px;
}
.image-split__content p {
  font-size: 1.05rem;
  line-height: 1.78;
  margin-bottom: 18px;
}
.image-split__content p:last-child { margin-bottom: 0; }
.image-split__content .btn {
  margin-top: 14px;
}

/* Variantes de fundo para o lado de conteúdo */
.image-split--sea .image-split__content { background: var(--sea); }
.image-split--sea .image-split__content h2 { color: #fff; }
.image-split--sea .image-split__content p { color: var(--sand); }
.image-split--sea .image-split__content .section-label { color: var(--gold-light); }

.image-split--clay .image-split__content { background: var(--clay); }
.image-split--clay .image-split__content h2 { color: #fff; }
.image-split--clay .image-split__content p { color: var(--sand-light); }
.image-split--clay .image-split__content .section-label { color: var(--gold-light); }

.image-split--olive .image-split__content { background: var(--olive); }
.image-split--olive .image-split__content h2 { color: #fff; }
.image-split--olive .image-split__content p { color: var(--sand); }
.image-split--olive .image-split__content .section-label { color: var(--gold-light); }

.image-split--dark .image-split__content { background: var(--azul-petroleo); }
.image-split--dark .image-split__content h2 { color: #fff; }
.image-split--dark .image-split__content p { color: var(--sand); }
.image-split--dark .image-split__content .section-label { color: var(--gold-light); }

.image-split--sand .image-split__content { background: var(--sand); }
.image-split--sand .image-split__content h2 { color: var(--azul-petroleo); }
.image-split--sand .image-split__content p { color: var(--sea); }
.image-split--sand .image-split__content .section-label { color: var(--terracota); }

.image-split--light .image-split__content { background: var(--off-white); }
.image-split--light .image-split__content h2 { color: var(--azul-petroleo); }
.image-split--light .image-split__content p { color: var(--sea); }
.image-split--light .image-split__content .section-label { color: var(--terracota); }

/* Ornamento dourado dentro do bloco de conteúdo */
.image-split__content::before {
  content: '';
  position: absolute;
  top: 32px; right: 32px;
  width: 64px; height: 64px;
  border-top: 1px solid rgba(212, 168, 75, 0.4);
  border-right: 1px solid rgba(212, 168, 75, 0.4);
  pointer-events: none;
  opacity: 0.55;
}
.image-split__content::after {
  content: '';
  position: absolute;
  bottom: 32px; left: 32px;
  width: 64px; height: 64px;
  border-bottom: 1px solid rgba(212, 168, 75, 0.4);
  border-left: 1px solid rgba(212, 168, 75, 0.4);
  pointer-events: none;
  opacity: 0.55;
}
.image-split--sand .image-split__content::before,
.image-split--sand .image-split__content::after,
.image-split--light .image-split__content::before,
.image-split--light .image-split__content::after {
  border-color: rgba(184, 58, 24, 0.35);
}

/* badge "ouvir o relato / leia mais" — pequeno citation */
.image-split__cite {
  margin-top: 28px;
  padding-top: 22px;
  border-top: 1px solid rgba(212, 168, 75, 0.4);
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.05rem;
  line-height: 1.55;
  color: var(--gold-light);
  opacity: 1;
}
/* Em variantes escuras a citação aparece em areia/dourado claro */
.image-split--sea .image-split__cite,
.image-split--clay .image-split__cite,
.image-split--olive .image-split__cite,
.image-split--dark .image-split__cite {
  color: var(--gold-light);
  border-top-color: rgba(232, 201, 122, 0.45);
}
/* Em variantes claras volta ao tom terracota/petróleo */
.image-split--sand .image-split__cite,
.image-split--light .image-split__cite {
  color: var(--terracota);
  border-top-color: rgba(184, 58, 24, 0.28);
}

/* ─────────────────────────────────────────────────────────────
   Transição suave entre foto e bloco de conteúdo (per variant)
   Substitui o corte vertical duro por um fade lateral discreto
   ───────────────────────────────────────────────────────────── */
/* o ::after se estende 1px alem da borda para garantir cobertura total
   sem que sobre fragmento de pixel da foto na junção com o painel */
.image-split__media::after{ right: -1px; left: -1px; }

.image-split--sea:not(.image-split--reverse) .image-split__media::after{
  background: linear-gradient(90deg,
    rgba(45,95,107,0) 0%,
    rgba(45,95,107,0) 40%,
    rgba(45,95,107,0.55) 75%,
    rgba(45,95,107,0.92) 92%,
    rgba(45,95,107,1) 100%);
}
.image-split--sea.image-split--reverse .image-split__media::after{
  background: linear-gradient(270deg,
    rgba(45,95,107,0) 0%,
    rgba(45,95,107,0) 40%,
    rgba(45,95,107,0.55) 75%,
    rgba(45,95,107,0.92) 92%,
    rgba(45,95,107,1) 100%);
}
.image-split--olive:not(.image-split--reverse) .image-split__media::after{
  background: linear-gradient(90deg,
    rgba(106,121,76,0) 0%,
    rgba(106,121,76,0) 40%,
    rgba(106,121,76,0.55) 75%,
    rgba(106,121,76,0.92) 92%,
    rgba(106,121,76,1) 100%);
}
.image-split--olive.image-split--reverse .image-split__media::after{
  background: linear-gradient(270deg,
    rgba(106,121,76,0) 0%,
    rgba(106,121,76,0) 40%,
    rgba(106,121,76,0.55) 75%,
    rgba(106,121,76,0.92) 92%,
    rgba(106,121,76,1) 100%);
}
.image-split--clay:not(.image-split--reverse) .image-split__media::after{
  background: linear-gradient(90deg,
    rgba(180,101,59,0) 0%,
    rgba(180,101,59,0) 40%,
    rgba(180,101,59,0.55) 75%,
    rgba(180,101,59,0.92) 92%,
    rgba(180,101,59,1) 100%);
}
.image-split--clay.image-split--reverse .image-split__media::after{
  background: linear-gradient(270deg,
    rgba(180,101,59,0) 0%,
    rgba(180,101,59,0) 40%,
    rgba(180,101,59,0.55) 75%,
    rgba(180,101,59,0.92) 92%,
    rgba(180,101,59,1) 100%);
}
.image-split--dark:not(.image-split--reverse) .image-split__media::after{
  background: linear-gradient(90deg,
    rgba(13,77,85,0) 0%,
    rgba(13,77,85,0) 40%,
    rgba(13,77,85,0.55) 75%,
    rgba(13,77,85,0.92) 92%,
    rgba(13,77,85,1) 100%);
}
.image-split--dark.image-split--reverse .image-split__media::after{
  background: linear-gradient(270deg,
    rgba(13,77,85,0) 0%,
    rgba(13,77,85,0) 40%,
    rgba(13,77,85,0.55) 75%,
    rgba(13,77,85,0.92) 92%,
    rgba(13,77,85,1) 100%);
}

/* Responsivo — empilha em mobile */
@media (max-width: 900px) {
  .image-split__wrap {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .image-split--reverse .image-split__wrap {
    direction: ltr;
  }
  .image-split__media {
    min-height: 380px;
  }
  .image-split__content {
    padding: 60px 28px;
  }
  .image-split__content::before,
  .image-split__content::after {
    width: 44px; height: 44px;
    top: 20px; right: 20px;
  }
  .image-split__content::after {
    bottom: 20px; left: 20px;
    top: auto; right: auto;
  }
}

/* ═══════════════════════════════════════════════════════════════
   PHOTO-FRAME — moldura premium para fotos avulsas
   ═══════════════════════════════════════════════════════════════ */
.photo-frame {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 6px;
  box-shadow: 0 24px 60px rgba(13, 26, 36, 0.22);
}
.photo-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 1.4s var(--ease-out);
}
.photo-frame:hover img { transform: scale(1.06); }
.photo-frame__corner {
  position: absolute;
  width: 32px; height: 32px;
  border-color: var(--gold-light);
  pointer-events: none;
  z-index: 2;
}
.photo-frame__corner--tl { top: 14px; left: 14px; border-top: 2px solid; border-left: 2px solid; }
.photo-frame__corner--tr { top: 14px; right: 14px; border-top: 2px solid; border-right: 2px solid; }
.photo-frame__corner--bl { bottom: 14px; left: 14px; border-bottom: 2px solid; border-left: 2px solid; }
.photo-frame__corner--br { bottom: 14px; right: 14px; border-bottom: 2px solid; border-right: 2px solid; }

/* ═══════════════════════════════════════════════════════════════
   IMAGE-BAND — banda fina de imagem (parallax-like) entre seções
   ═══════════════════════════════════════════════════════════════ */
.image-band {
  position: relative;
  height: clamp(280px, 40vh, 460px);
  overflow: hidden;
  background: var(--azul-petroleo);
}
.image-band__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.55) saturate(1.1);
}
.image-band__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(13, 26, 36, 0.5) 0%,
    rgba(13, 26, 36, 0.2) 40%,
    rgba(13, 26, 36, 0.5) 100%
  );
}
.image-band__quote {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 0 24px;
}
.image-band__quote blockquote {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(1.4rem, 3vw, 2.2rem);
  color: var(--off-white);
  max-width: 800px;
  line-height: 1.4;
  margin: 0 0 18px;
  text-shadow: 0 2px 16px rgba(0,0,0,0.4);
}
.image-band__quote cite {
  font-family: var(--font-body);
  font-style: normal;
  font-size: 0.82rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-light);
}
.image-band__quote::before,
.image-band__quote::after {
  content: '';
  width: 80px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-solid), transparent);
  margin: 0 auto;
}
.image-band__quote::before { margin-bottom: 24px; }
.image-band__quote::after { margin-top: 18px; }

/* ═══════════════════════════════════════════════════════════════
   PHOTO-MOSAIC — mosaico de fotos (galeria leve)
   ═══════════════════════════════════════════════════════════════ */
.photo-mosaic {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 14px;
  margin-top: 40px;
}
.photo-mosaic__item {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.18);
}
.photo-mosaic__item img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 1.4s var(--ease-out);
}
.photo-mosaic__item:hover img { transform: scale(1.08); }
.photo-mosaic__item--lg { grid-column: span 7; min-height: 360px; }
.photo-mosaic__item--md { grid-column: span 5; min-height: 360px; }
.photo-mosaic__item--sm { grid-column: span 4; min-height: 220px; }
@media (max-width: 760px) {
  .photo-mosaic { grid-template-columns: 1fr; }
  .photo-mosaic__item { grid-column: 1 / -1 !important; min-height: 240px; }
}

/* ═══════════════════════════════════════════════════════════════
   SECTION-DIVIDER — divisor decorativo entre seções
   ═══════════════════════════════════════════════════════════════ */
.section-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 40px 0;
}
.section-divider__line {
  height: 1px;
  flex: 0 1 180px;
  background: linear-gradient(90deg, transparent, var(--gold-solid), transparent);
}
.section-divider__ornament {
  font-size: 1.4rem;
  color: var(--gold-solid);
  opacity: 0.7;
}

/* ═══════════════════════════════════════════════════════════════
   PAGE-HEADER COM IMAGEM DE FUNDO
   ═══════════════════════════════════════════════════════════════ */
.page-header--image {
  background: var(--azul-petroleo);
  position: relative;
  overflow: hidden;
}
.page-header--image .page-header__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.page-header--image .page-header__bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: brightness(0.45) saturate(1.1);
}
.page-header--image .page-header__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(13,26,36,0.75) 0%,
    rgba(13,26,36,0.55) 50%,
    rgba(45, 95, 107, 0.55) 100%
  );
}
.page-header--image .page-header__content { position: relative; z-index: 2; }

/* Botão de Instagram com ícone — alinhado, com gap e leve hover dourado */
.btn-ig{
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.btn-ig svg{
  transition: transform .35s ease;
}
.btn-ig:hover svg{
  transform: scale(1.08) rotate(-3deg);
}
