/* =================================================================
   CASA BATMAN — LP cinematográfica de alto padrão
   Design system: dark cinematic + dourado fosco
   ================================================================= */

/* ---------- TOKENS ---------- */
:root {
  /* Cores */
  --bg: #0A0A0A;
  --bg-2: #141414;
  --bg-3: #1a1a1a;
  --gold: #C9A961;
  --gold-bright: #D4B570;
  --gold-dim: #8E764A;
  --text: #F5F5F5;
  --text-2: #A0A0A0;
  --text-3: #6B6B6B;
  --border: #1F1F1F;
  --border-2: #2A2A2A;
  --whatsapp: #25D366;

  /* Tipografia */
  --serif: 'Playfair Display', 'Cormorant Garamond', Georgia, serif;
  --sans: 'Inter', 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* Espaçamentos (escala 4) */
  --s-1: 0.25rem;
  --s-2: 0.5rem;
  --s-3: 0.75rem;
  --s-4: 1rem;
  --s-6: 1.5rem;
  --s-8: 2rem;
  --s-10: 2.5rem;
  --s-12: 3rem;
  --s-16: 4rem;
  --s-20: 5rem;
  --s-24: 6rem;
  --s-32: 8rem;
  --s-40: 10rem;

  /* Container */
  --max: 1400px;
  --gutter: clamp(1.25rem, 4vw, 3rem);

  /* Transições */
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in: cubic-bezier(0.7, 0, 0.84, 0);

  /* Radii */
  --r-sm: 2px;
  --r: 4px;
  --r-lg: 8px;
}

/* ---------- RESET ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}
img, video { max-width: 100%; display: block; }
button { font: inherit; color: inherit; background: none; border: none; cursor: pointer; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
::selection { background: var(--gold); color: var(--bg); }

/* ---------- TYPE ---------- */
.t-eyebrow {
  font-family: var(--sans);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  color: var(--gold);
  text-transform: uppercase;
}
.t-h1, .t-h2, .t-h3 {
  font-family: var(--serif);
  font-weight: 400;
  color: var(--text);
  letter-spacing: -0.01em;
  line-height: 1.05;
}
.t-h1 { font-size: clamp(2.75rem, 8vw, 6rem); letter-spacing: -0.02em; }
.t-h2 { font-size: clamp(2rem, 5vw, 3.5rem); }
.t-h3 { font-size: clamp(1.5rem, 3vw, 2rem); }
.t-lead {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1.125rem, 2vw, 1.5rem);
  color: var(--text);
  line-height: 1.4;
}
.t-body { color: var(--text-2); line-height: 1.7; }
.t-quiet { color: var(--text-3); }

/* ---------- LAYOUT ---------- */
.section { padding: var(--s-24) 0; position: relative; }
.section--tight { padding: var(--s-16) 0; }
.container { max-width: var(--max); margin: 0 auto; padding: 0 var(--gutter); }
.divider {
  width: 80px; height: 1px; background: var(--gold);
  margin: 0 0 var(--s-8); transform-origin: left;
  animation: divider-grow 1s var(--ease-out) forwards;
}
@keyframes divider-grow { from { transform: scaleX(0); } to { transform: scaleX(1); } }

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex; align-items: center; gap: var(--s-3);
  padding: var(--s-4) var(--s-8);
  font-family: var(--sans); font-size: 0.8125rem; font-weight: 500;
  letter-spacing: 0.15em; text-transform: uppercase;
  border-radius: var(--r-sm);
  transition: all 600ms var(--ease);
  position: relative; overflow: hidden;
  cursor: pointer; user-select: none;
}
.btn--gold {
  background: var(--gold); color: var(--bg);
  box-shadow: 0 0 0 0 rgba(201, 169, 97, 0.4);
}
.btn--gold:hover {
  background: var(--gold-bright);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px -8px rgba(201, 169, 97, 0.4);
}
.btn--ghost {
  background: transparent; color: var(--text);
  border: 1px solid var(--border-2);
}
.btn--ghost:hover {
  border-color: var(--gold); color: var(--gold);
}
.btn .arrow { transition: transform 400ms var(--ease); }
.btn:hover .arrow { transform: translateX(4px); }

/* ---------- WHATSAPP FLOAT ---------- */
.wa-float {
  position: fixed; bottom: 24px; right: 24px;
  width: 60px; height: 60px;
  background: var(--whatsapp);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 24px rgba(0,0,0,0.4);
  z-index: 100;
  transition: transform 400ms var(--ease), box-shadow 400ms var(--ease);
  animation: wa-pulse 2.4s ease-in-out infinite;
}
.wa-float:hover {
  transform: scale(1.1);
  box-shadow: 0 0 0 8px rgba(201, 169, 97, 0.15), 0 12px 32px rgba(0,0,0,0.5);
  animation-play-state: paused;
}
.wa-float svg { width: 32px; height: 32px; fill: white; }
@keyframes wa-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5), 0 8px 24px rgba(0,0,0,0.4); }
  50% { box-shadow: 0 0 0 14px rgba(37, 211, 102, 0), 0 8px 24px rgba(0,0,0,0.4); }
}

/* ---------- HERO ---------- */
.hero {
  position: relative;
  height: 100svh; min-height: 600px;
  overflow: hidden;
  display: flex; align-items: flex-end;
  padding-bottom: clamp(4rem, 12vh, 8rem);
}
.hero__bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  background-color: var(--bg);
  animation: kenburns 22s ease-in-out infinite alternate;
  will-change: transform;
}
@keyframes kenburns {
  0%   { transform: scale(1.05) translate(0, 0); }
  100% { transform: scale(1.18) translate(-2%, -1%); }
}
.hero__overlay {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at center, rgba(0,0,0,0) 30%, rgba(0,0,0,0.5) 100%),
    linear-gradient(180deg, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0.45) 50%, rgba(0,0,0,0.85) 100%);
  pointer-events: none;
}
.hero__content {
  position: relative; z-index: 2;
  width: 100%;
  max-width: var(--max);
  margin: 0 auto; padding: 0 var(--gutter);
}
.hero__eyebrow {
  display: inline-flex; align-items: center; gap: var(--s-4);
  margin-bottom: var(--s-8);
  font-family: var(--sans);
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.32em;
  color: var(--gold);
  text-transform: uppercase;
  text-shadow: 0 2px 12px rgba(0,0,0,0.7);
  opacity: 0;
  animation: fade-up 0.9s var(--ease-out) 0.3s forwards;
}
.hero__eyebrow-line {
  width: 48px; height: 1px;
  background: var(--gold);
  display: inline-block;
  box-shadow: 0 0 12px rgba(201,169,97,0.5);
}
.hero__title {
  display: block; margin-bottom: var(--s-6);
  font-family: var(--serif);
  font-size: clamp(3.5rem, 10vw, 8rem);
  line-height: 0.92; font-weight: 400;
  letter-spacing: -0.02em;
  color: var(--text);
  text-shadow: 0 4px 32px rgba(0,0,0,0.5);
}
.hero__title .word {
  display: block;
  opacity: 0;
  transform: translateY(40px);
  animation: word-reveal 1s var(--ease-out) forwards;
}
.hero__title .word:nth-child(1) { animation-delay: 0.6s; }
.hero__title .word:nth-child(2) { animation-delay: 0.85s; }
@keyframes word-reveal { to { opacity: 1; transform: translateY(0); } }
.hero__badge {
  display: inline-flex; align-items: center; gap: var(--s-3);
  padding: 0.75rem 1.25rem;
  border: 1px solid var(--gold);
  background: rgba(201,169,97,0.08);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  color: var(--gold);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: var(--s-8);
  border-radius: 2px;
  opacity: 0;
  animation: fade-up 1s var(--ease-out) 1.2s forwards;
  box-shadow: 0 4px 24px rgba(0,0,0,0.3), inset 0 0 24px rgba(201,169,97,0.05);
}
.hero__badge svg { width: 16px; height: 16px; flex-shrink: 0; }
.hero__sub {
  max-width: 560px; font-size: clamp(1.0625rem, 1.5vw, 1.25rem);
  color: var(--text);
  margin-bottom: var(--s-4);
  line-height: 1.55;
  opacity: 0; animation: fade-up 1s var(--ease-out) 1.5s forwards;
  text-shadow: 0 2px 12px rgba(0,0,0,0.5);
}
.hero__lead {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1.25rem, 2.2vw, 1.75rem);
  color: var(--gold);
  margin-bottom: var(--s-10);
  line-height: 1.4;
  max-width: 620px;
  opacity: 0; animation: fade-up 1s var(--ease-out) 1.8s forwards;
  text-shadow: 0 2px 16px rgba(0,0,0,0.6);
}
.hero__ctas { display: flex; flex-wrap: wrap; gap: var(--s-4);
  opacity: 0; animation: fade-up 1s var(--ease-out) 2.1s forwards;
}
@media (max-width: 600px) {
  .hero__eyebrow { font-size: 0.6875rem; letter-spacing: 0.25em; }
  .hero__eyebrow-line { width: 28px; }
  .hero__title { font-size: clamp(3rem, 16vw, 5rem); margin-bottom: var(--s-5); }
  .hero__badge { font-size: 0.6875rem; padding: 0.625rem 0.875rem; letter-spacing: 0.12em; }
  .hero__lead { font-size: 1.125rem; }
}
.hero__scroll {
  position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: var(--s-3);
  font-size: 0.6875rem; letter-spacing: 0.3em; color: var(--text-2);
  opacity: 0; animation: fade-in 1s var(--ease-out) 2.2s forwards;
}
.hero__scroll-line {
  width: 1px; height: 56px; background: linear-gradient(180deg, transparent, var(--gold));
  position: relative; overflow: hidden;
}
.hero__scroll-line::after {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 14px;
  background: var(--gold);
  animation: scroll-line 2s var(--ease-out) infinite;
}
@keyframes scroll-line {
  0%   { transform: translateY(-100%); }
  60%  { transform: translateY(400%); }
  100% { transform: translateY(400%); }
}
@keyframes fade-up { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fade-in { to { opacity: 1; } }

/* ---------- SECTION 2 — STATS ---------- */
.stats {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--bg-2);
  padding: var(--s-12) 0;
}
.stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--s-4);
  text-align: center;
}
.stat__icon { color: var(--gold); margin-bottom: var(--s-3); display: flex; justify-content: center; }
.stat__icon svg { width: 32px; height: 32px; }
.stat__value { font-family: var(--serif); font-size: clamp(1.5rem, 3vw, 2.25rem); margin-bottom: var(--s-2); }
.stat__label { font-size: 0.75rem; letter-spacing: 0.2em; color: var(--text-2); text-transform: uppercase; }
@media (max-width: 768px) {
  .stats__grid { grid-template-columns: repeat(2, 1fr); gap: var(--s-8); }
}

/* ---------- SECTION 3 — STORY ---------- */
.story__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: var(--s-16);
  align-items: center;
}
.story__text p { font-size: 1.0625rem; line-height: 1.8; margin-bottom: var(--s-4); color: var(--text); }
.story__text p:last-child { font-family: var(--serif); font-style: italic; color: var(--gold); margin-top: var(--s-6); font-size: 1.125rem; }
.story__image {
  aspect-ratio: 4/5; overflow: hidden;
  filter: grayscale(1) contrast(1.05);
  position: relative;
}
.story__image img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s var(--ease-out); }
.story__image::after {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at center, rgba(0,0,0,0) 40%, rgba(0,0,0,0.6) 100%);
  pointer-events: none;
}
.story__image:hover img { transform: scale(1.04); }
@media (max-width: 900px) {
  .story__grid { grid-template-columns: 1fr; gap: var(--s-10); }
  .story__image { aspect-ratio: 4/3; max-width: 480px; margin: 0 auto; }
}

/* ---------- SECTION 4 — GALERIA EXTERNA ---------- */
.gallery-ext__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 280px;
  gap: var(--s-3);
}
.gallery-ext__item {
  position: relative; overflow: hidden;
  cursor: zoom-in;
  background: var(--bg-2);
}
.gallery-ext__item--tall { grid-row: span 2; }
.gallery-ext__item--wide { grid-column: span 2; }
.gallery-ext__item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 1.4s var(--ease-out), filter 0.6s var(--ease);
}
.gallery-ext__item::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(201,169,97,0.1) 100%);
  opacity: 0; transition: opacity 0.6s var(--ease);
  pointer-events: none;
}
.gallery-ext__item:hover img { transform: scale(1.06); }
.gallery-ext__item:hover::after { opacity: 1; }
@media (max-width: 900px) {
  .gallery-ext__grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 220px; }
  .gallery-ext__item--wide { grid-column: span 2; }
}

/* ---------- LIGHTBOX ---------- */
.lightbox {
  position: fixed; inset: 0; z-index: 200;
  background: rgba(5, 5, 5, 0.96);
  display: none; align-items: center; justify-content: center;
  opacity: 0; transition: opacity 0.4s var(--ease);
}
.lightbox.is-open { display: flex; opacity: 1; }
.lightbox__img { max-width: 92vw; max-height: 88vh; object-fit: contain; }
.lightbox__close, .lightbox__prev, .lightbox__next {
  position: absolute; color: var(--text);
  width: 56px; height: 56px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%; transition: background 0.3s, color 0.3s;
}
.lightbox__close:hover, .lightbox__prev:hover, .lightbox__next:hover {
  background: rgba(201,169,97,0.15); color: var(--gold);
}
.lightbox__close { top: 24px; right: 24px; font-size: 28px; }
.lightbox__prev { left: 24px; top: 50%; transform: translateY(-50%); font-size: 32px; }
.lightbox__next { right: 24px; top: 50%; transform: translateY(-50%); font-size: 32px; }

/* ---------- SECTION 5 — VIDEO (player local nativo) ---------- */
.video-section { background: var(--bg-2); }
.video-section__inner { max-width: 1100px; margin: 0 auto; }
.video-frame {
  border: 1px solid var(--gold-dim);
  padding: 8px;
  background: var(--bg-3);
  margin: var(--s-10) auto 0;
  position: relative;
  width: fit-content;
  max-width: 100%;
}
.video-frame::before, .video-frame::after {
  content: ''; position: absolute;
  width: 30px; height: 30px;
  border: 1px solid var(--gold);
  pointer-events: none;
}
.video-frame::before { top: -6px; left: -6px; border-right: none; border-bottom: none; }
.video-frame::after { bottom: -6px; right: -6px; border-left: none; border-top: none; }
.video-frame--portrait .video-player {
  display: block;
  width: auto; height: auto;
  max-height: 78vh;
  max-width: min(440px, 90vw);
  aspect-ratio: 480 / 848;
  background: #000;
}
.video-player {
  display: block;
  outline: none;
}
.video-player::-webkit-media-controls-panel {
  background: linear-gradient(180deg, transparent 0%, rgba(0,0,0,0.7) 100%);
}
.video-overlay {
  position: absolute;
  inset: 8px;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 1rem;
  background: linear-gradient(180deg, rgba(0,0,0,0.25) 0%, rgba(0,0,0,0.55) 100%);
  cursor: pointer;
  transition: opacity 0.5s var(--ease);
  border: 0;
  color: var(--gold);
}
.video-overlay.is-hidden { opacity: 0; pointer-events: none; }
.video-overlay__play {
  display: block; width: 88px; height: 60px;
  filter: drop-shadow(0 6px 24px rgba(0,0,0,0.7));
  transition: transform 0.4s var(--ease);
}
.video-overlay__play svg { width: 100%; height: 100%; color: var(--gold); }
.video-overlay:hover .video-overlay__play { transform: scale(1.08); }
.video-overlay__label {
  font-size: 0.6875rem; letter-spacing: 0.3em; color: var(--text);
  text-transform: uppercase; font-weight: 500;
}
.video-cta { text-align: center; margin-top: var(--s-10); }
.video-cta p { color: var(--text-2); margin-bottom: var(--s-4); font-style: italic; font-family: var(--serif); font-size: 1.125rem; }
@media (max-width: 600px) {
  .video-frame--portrait .video-player {
    max-height: 70vh;
    max-width: 90vw;
  }
}

/* ---------- SECTION 6 — GALERIA INTERNA (slider/scroll híbrido) ---------- */
.gallery-int { background: var(--bg); overflow: hidden; }
.gallery-int__viewport {
  position: relative;
  margin-top: var(--s-10);
}
.gallery-int__track {
  display: flex; gap: var(--s-4);
  scroll-snap-type: x mandatory;
  overflow-x: auto; overflow-y: hidden;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
  scroll-behavior: smooth;
  padding-bottom: var(--s-4);
}
.gallery-int__track::-webkit-scrollbar { display: none; }
.gallery-int__slide {
  flex: 0 0 auto; width: clamp(280px, 70vw, 900px);
  aspect-ratio: 16/10;
  scroll-snap-align: center;
  position: relative; overflow: hidden;
  background: var(--bg-2);
}
.gallery-int__slide img { width: 100%; height: 100%; object-fit: cover; transition: transform 1s var(--ease-out); }
.gallery-int__slide:hover img { transform: scale(1.03); }
.gallery-int__slide-caption {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: var(--s-6) var(--s-8);
  background: linear-gradient(180deg, transparent, rgba(0,0,0,0.85));
  display: flex; flex-direction: column; gap: var(--s-2);
}
.gallery-int__slide-num { font-size: 0.6875rem; letter-spacing: 0.3em; color: var(--gold); }
.gallery-int__slide-name { font-family: var(--serif); font-size: clamp(1.125rem, 2vw, 1.5rem); }
.gallery-int__nav {
  display: flex; align-items: center; justify-content: center;
  gap: var(--s-6); margin-top: var(--s-8);
}
.gallery-int__btn {
  width: 44px; height: 44px; border-radius: 50%;
  border: 1px solid var(--border-2); color: var(--text);
  display: flex; align-items: center; justify-content: center;
  transition: all 0.4s var(--ease);
}
.gallery-int__btn:hover { border-color: var(--gold); color: var(--gold); transform: scale(1.05); }
.gallery-int__btn:disabled { opacity: 0.3; cursor: not-allowed; }
.gallery-int__dots { display: flex; gap: var(--s-2); }
.gallery-int__dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--border-2); cursor: pointer;
  transition: background 0.4s, transform 0.4s;
}
.gallery-int__dot.is-active { background: var(--gold); transform: scale(1.3); }

/* ---------- SECTION 7 — DISTRIBUIÇÃO ---------- */
.distrib { background: var(--bg-2); }
.distrib__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s-6);
  margin-top: var(--s-12);
}
.distrib__card {
  background: var(--bg);
  border: 1px solid var(--border);
  padding: var(--s-10) var(--s-8);
  transition: border-color 0.6s var(--ease), transform 0.6s var(--ease);
  position: relative;
}
.distrib__card:hover { border-color: var(--gold-dim); transform: translateY(-4px); }
.distrib__card-icon { color: var(--gold); margin-bottom: var(--s-6); }
.distrib__card-icon svg { width: 36px; height: 36px; }
.distrib__card-level { font-size: 0.75rem; letter-spacing: 0.3em; color: var(--gold); margin-bottom: var(--s-2); text-transform: uppercase; }
.distrib__card-title { font-family: var(--serif); font-size: 1.5rem; margin-bottom: var(--s-6); }
.distrib__card-list { display: flex; flex-direction: column; gap: var(--s-3); }
.distrib__card-list li {
  font-size: 0.9375rem; color: var(--text-2);
  padding-left: var(--s-4); position: relative;
}
.distrib__card-list li::before {
  content: ''; position: absolute; left: 0; top: 0.7em;
  width: 8px; height: 1px; background: var(--gold);
}
@media (max-width: 900px) {
  .distrib__grid { grid-template-columns: 1fr; }
}

/* ---------- SECTION 8 — POR QUE ESCOLHER ---------- */
.why__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s-12);
  margin-top: var(--s-12);
}
.why__item { text-align: left; }
.why__icon { color: var(--gold); margin-bottom: var(--s-4); }
.why__icon svg { width: 40px; height: 40px; }
.why__title { font-family: var(--serif); font-size: 1.5rem; margin-bottom: var(--s-3); color: var(--text); }
.why__desc { font-size: 0.9375rem; color: var(--text-2); line-height: 1.7; }
@media (max-width: 900px) {
  .why__grid { grid-template-columns: 1fr; gap: var(--s-8); }
}

/* ---------- SECTION 9 — ATENDIMENTO (corretor minimal) ---------- */
.broker {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.broker__inner {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: var(--s-8);
  padding: var(--s-12) 0;
}
.broker__info { display: flex; flex-direction: column; gap: var(--s-3); }
.broker__label { font-size: 0.75rem; letter-spacing: 0.3em; color: var(--gold); text-transform: uppercase; }
.broker__name { font-family: var(--serif); font-size: clamp(1.5rem, 3vw, 2rem); }
.broker__creci { font-size: 0.9375rem; color: var(--text-2); }
.broker__creci a { color: var(--text); border-bottom: 1px solid var(--border-2); transition: border-color 0.3s; }
.broker__creci a:hover { border-color: var(--gold); }

/* ---------- SECTION 10 — FAQ ---------- */
.faq__list { max-width: 880px; margin: var(--s-12) auto 0; }
.faq__item {
  border-bottom: 1px solid var(--border);
  transition: border-color 0.4s var(--ease);
}
.faq__item.is-open { border-color: var(--gold-dim); }
.faq__q {
  width: 100%; padding: var(--s-6) 0;
  display: flex; align-items: center; justify-content: space-between;
  gap: var(--s-6);
  font-family: var(--serif);
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  text-align: left;
  transition: color 0.4s var(--ease);
}
.faq__q:hover, .faq__item.is-open .faq__q { color: var(--gold); }
.faq__icon {
  flex-shrink: 0;
  width: 28px; height: 28px;
  position: relative;
  transition: transform 0.4s var(--ease);
}
.faq__icon::before, .faq__icon::after {
  content: ''; position: absolute;
  top: 50%; left: 50%; transform: translate(-50%, -50%);
  background: currentColor;
}
.faq__icon::before { width: 14px; height: 1px; }
.faq__icon::after { width: 1px; height: 14px; transition: transform 0.4s var(--ease); }
.faq__item.is-open .faq__icon::after { transform: translate(-50%, -50%) scaleY(0); }
.faq__a {
  max-height: 0; overflow: hidden;
  transition: max-height 0.5s var(--ease);
}
.faq__a-inner {
  padding: 0 0 var(--s-8);
  color: var(--text-2);
  line-height: 1.8;
  font-size: 1rem;
  max-width: 90%;
}

/* ---------- SECTION 11 — CTA FINAL ---------- */
.cta-final {
  position: relative;
  min-height: 80svh;
  display: flex; align-items: center;
  overflow: hidden;
  padding: var(--s-32) 0;
}
.cta-final__bg { position: absolute; inset: 0; background-size: cover; background-position: center; transform: scale(1.05); }
.cta-final__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.5) 0%, rgba(0,0,0,0.7) 70%, rgba(0,0,0,0.9) 100%);
}
.cta-final__inner {
  position: relative; z-index: 2;
  width: 100%; text-align: center;
}
.cta-final__title { font-size: clamp(2.5rem, 6vw, 4.5rem); margin-bottom: var(--s-4); }
.cta-final__sub { color: var(--text-2); font-size: 1.125rem; margin-bottom: var(--s-10); max-width: 520px; margin-left: auto; margin-right: auto; }
.cta-final__phone {
  margin-top: var(--s-8); font-family: var(--serif); font-size: 1.25rem;
  color: var(--gold); letter-spacing: 0.05em;
}
.cta-final__phone a { color: var(--gold); border-bottom: 1px solid transparent; transition: border-color 0.3s; }
.cta-final__phone a:hover { border-color: var(--gold); }

/* ---------- FOOTER ---------- */
.footer {
  background: var(--bg);
  border-top: 1px solid var(--border);
  padding: var(--s-12) 0 var(--s-8);
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: var(--s-12);
  margin-bottom: var(--s-10);
}
.footer__brand { display: flex; align-items: center; gap: var(--s-3); margin-bottom: var(--s-4); }
.footer__brand svg { width: 32px; height: 32px; color: var(--gold); }
.footer__brand-name { font-family: var(--serif); font-size: 1.5rem; }
.footer__tagline { font-size: 0.9375rem; color: var(--text-2); max-width: 340px; line-height: 1.6; }
.footer__col-title { font-size: 0.75rem; letter-spacing: 0.3em; color: var(--gold); text-transform: uppercase; margin-bottom: var(--s-4); }
.footer__list { display: flex; flex-direction: column; gap: var(--s-3); }
.footer__list a, .footer__list li { font-size: 0.9375rem; color: var(--text-2); transition: color 0.3s; }
.footer__list a:hover { color: var(--gold); }
.footer__social { display: flex; gap: var(--s-3); }
.footer__social a {
  width: 40px; height: 40px;
  border: 1px solid var(--border-2); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: border-color 0.4s, color 0.4s;
}
.footer__social a:hover { border-color: var(--gold); color: var(--gold); }
.footer__social svg { width: 18px; height: 18px; }
.footer__bottom {
  border-top: 1px solid var(--border);
  padding-top: var(--s-6);
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: var(--s-4);
  font-size: 0.8125rem; color: var(--text-3);
}
@media (max-width: 768px) {
  .footer__grid { grid-template-columns: 1fr; gap: var(--s-8); }
}

/* ---------- REVEAL ANIMATIONS ---------- */
.reveal { opacity: 0; transform: translateY(40px); transition: opacity 1s var(--ease-out), transform 1s var(--ease-out); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.reveal--delay-1 { transition-delay: 0.15s; }
.reveal--delay-2 { transition-delay: 0.3s; }
.reveal--delay-3 { transition-delay: 0.45s; }

.grain {
  position: fixed; inset: 0;
  pointer-events: none;
  opacity: 0.04;
  z-index: 1;
  background-image: url('data:image/svg+xml;utf8,<svg viewBox="0 0 200 200" xmlns="http://www.w3.org/2000/svg"><filter id="n"><feTurbulence type="fractalNoise" baseFrequency="0.85" numOctaves="3" stitchTiles="stitch"/></filter><rect width="100%25" height="100%25" filter="url(%23n)"/></svg>');
  mix-blend-mode: overlay;
}

.loader {
  position: fixed; inset: 0; z-index: 1000;
  background: var(--bg);
  display: flex; align-items: center; justify-content: center;
  transition: opacity 0.8s var(--ease), visibility 0.8s var(--ease);
}
.loader.is-hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.loader__bat {
  width: 60px; height: 60px;
  color: var(--gold);
  animation: loader-pulse 1.4s ease-in-out infinite;
}
@keyframes loader-pulse {
  0%, 100% { transform: scale(1); opacity: 0.4; }
  50% { transform: scale(1.1); opacity: 1; }
}

@media (max-width: 768px) {
  .section { padding: var(--s-16) 0; }
  .hero { padding-bottom: 6rem; }
  .hero__sub { font-size: 1rem; }
  .video-frame { padding: 4px; }
  .wa-float { width: 56px; height: 56px; bottom: 16px; right: 16px; }
  .wa-float svg { width: 28px; height: 28px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .hero__bg { animation: none; }
}


/* ---------- HERO BATS DECORATIVOS ---------- */
.hero__bat {
  position: absolute;
  width: 64px; height: auto;
  color: var(--gold);
  opacity: 0.55;
  z-index: 2;
  pointer-events: none;
  filter: drop-shadow(0 2px 16px rgba(201,169,97,0.35));
  animation: bat-fade 1.4s var(--ease-out) 0.6s both;
}
.hero__bat--tl {
  top: 36px; left: 36px;
  transform: rotate(-22deg);
}
.hero__bat--br {
  bottom: 36px; right: 36px;
  transform: rotate(22deg);
}
@keyframes bat-fade {
  from { opacity: 0; transform: rotate(0) scale(0.6); }
}
.hero__bat--tl { animation-name: bat-fade-tl; }
.hero__bat--br { animation-name: bat-fade-br; }
@keyframes bat-fade-tl {
  from { opacity: 0; transform: rotate(0deg) scale(0.6); }
  to   { opacity: 0.55; transform: rotate(-22deg) scale(1); }
}
@keyframes bat-fade-br {
  from { opacity: 0; transform: rotate(0deg) scale(0.6); }
  to   { opacity: 0.55; transform: rotate(22deg) scale(1); }
}
@media (max-width: 768px) {
  .hero__bat { width: 40px; }
  .hero__bat--tl { top: 18px; left: 18px; }
  .hero__bat--br { bottom: 110px; right: 18px; }
}
