/* =============================================================
   1. Tokens
   ============================================================= */
@property --mesh-angle {
  syntax: "<angle>";
  inherits: false;
  initial-value: 0deg;
}

:root {
  --bg:        #0E0B09;
  --bg-2:      #141008;
  --bg-3:      #1C1610;
  --bg-card:   #1A1410;
  --cream:     #F2EBDA;
  --cream-2:   #DDD2BC;
  --cream-3:   #8B7E68;
  --gold:      #C49A5B;
  --gold-2:    #A37E3E;
  --gold-glow: rgba(196,154,91,0.18);
  --accent:    #C49A5B;
  --line:      rgba(242,235,218,0.10);
  --line-gold: rgba(196,154,91,0.25);

  --sans:  'Inter', system-ui, sans-serif;
  --serif: 'Fraunces', Georgia, serif;
  --mono:  'JetBrains Mono', monospace;

  --ease-out:    cubic-bezier(0.16, 1, 0.3, 1);
  --ease-soft:   cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);

  --nav-h:   72px;
  --gutter:  clamp(1.25rem, 4vw, 2.5rem);
  --radius:  12px;
}

/* =============================================================
   2. Reset & base
   ============================================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

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

body {
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  background: var(--bg);
  color: var(--cream);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
  overscroll-behavior-y: none;
}

img, svg, video { display: block; max-width: 100%; }
img { height: auto; }
button { font: inherit; color: inherit; cursor: pointer; border: 0; background: none; }
a { color: inherit; text-decoration: none; }
p { text-wrap: pretty; }
h1, h2, h3 { text-wrap: balance; line-height: 1.05; letter-spacing: -0.03em; }
ul[role="list"] { list-style: none; }

::selection { background: var(--gold); color: var(--bg); }

:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 4px;
}

/* =============================================================
   3. Skip link & utilities
   ============================================================= */
.skip-link {
  position: fixed; top: -100px; left: 1rem;
  padding: .6rem 1rem; background: var(--cream); color: var(--bg);
  z-index: 9999; border-radius: 8px; font-weight: 500; font-size: .875rem;
}
.skip-link:focus { top: 1rem; }

.container {
  width: 100%;
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: var(--gutter);
}

/* =============================================================
   4. Typography
   ============================================================= */
.section-kicker {
  font-family: var(--mono);
  font-size: .75rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: .5rem;
  margin-bottom: 1rem;
}

.section-title {
  font-family: var(--serif);
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 400;
  color: var(--cream);
  line-height: 1.1;
  margin-bottom: 1.5rem;
}
.section-title em {
  font-style: italic;
  color: var(--gold);
}

/* =============================================================
   5. Buttons
   ============================================================= */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .85rem 2rem;
  border-radius: 100px;
  font-size: .9rem;
  font-weight: 500;
  letter-spacing: .02em;
  transition: all .35s var(--ease-out);
  cursor: pointer;
  white-space: nowrap;
}

.btn-primary {
  background: var(--gold);
  color: var(--bg);
}
.btn-primary:hover {
  background: var(--cream);
  transform: translateY(-2px);
  box-shadow: 0 16px 40px rgba(196,154,91,0.35);
}

.btn-ghost {
  background: transparent;
  color: var(--cream-2);
  border: 1px solid var(--line);
}
.btn-ghost:hover {
  border-color: var(--gold);
  color: var(--cream);
  transform: translateY(-2px);
}

.btn-gold {
  background: transparent;
  color: var(--gold);
  border: 1px solid var(--line-gold);
  padding: .75rem 1.75rem;
}
.btn-gold:hover {
  background: var(--gold-glow);
  transform: translateY(-2px);
}

.btn-ghost-gold {
  background: transparent;
  color: var(--gold);
  border: 1px solid var(--line-gold);
}
.btn-ghost-gold:hover {
  background: var(--gold-glow);
  transform: translateY(-2px);
}

.btn-whatsapp {
  background: #25D366;
  color: #fff;
  display: inline-flex;
  align-items: center;
  gap: .65rem;
}
.btn-whatsapp:hover {
  background: #20BD5C;
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(37,211,102,0.35);
}

.btn-nav {
  background: var(--gold);
  color: var(--bg);
  padding: .6rem 1.4rem;
  font-size: .85rem;
}
.btn-nav:hover {
  background: var(--cream);
  transform: translateY(-2px);
}

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

.btn-xl {
  position: relative;
  padding: 1.1rem 2.6rem;
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: .01em;
  box-shadow: 0 8px 32px rgba(37,211,102,0.35);
}

/* Pulso de glow eficiente: anima opacity (GPU), no box-shadow */
.btn-xl::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  box-shadow: 0 8px 48px rgba(37,211,102,0.55);
  opacity: 0;
  animation: whatsappGlow 2.8s ease-in-out infinite;
  pointer-events: none;
}

@keyframes whatsappGlow {
  0%, 100% { opacity: 0; }
  50%      { opacity: 1; }
}

/* Hero badges (diferenciadores) */
.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  margin-bottom: 2.25rem;
  opacity: 0;
  animation: heroFade .9s 1.12s var(--ease-out) forwards;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  padding: .55rem 1.1rem;
  border-radius: 100px;
  border: 1px solid var(--line-gold);
  background: rgba(196,154,91,0.08);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  font-size: .85rem;
  color: var(--cream-2);
}
.hero-badge strong { color: var(--gold); font-weight: 600; }

.hero-badge-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--bg);
  font-size: .65rem;
  font-weight: 700;
  flex-shrink: 0;
}

/* =============================================================
   5b. Reveal animation
   ============================================================= */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity .8s var(--ease-out), transform .8s var(--ease-out);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
/* Safety: data-split elements keep opacity visible */
.reveal[data-split] { opacity: 1; transform: none; }

/* =============================================================
   6. SPLASH
   ============================================================= */
.splash {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  transition: opacity .6s var(--ease-out), clip-path .7s var(--ease-out);
  animation: splashSafety .01s 4.5s forwards;
}

@keyframes splashSafety {
  to { opacity: 0; pointer-events: none; clip-path: inset(0 0 100% 0); }
}

.splash.is-out {
  opacity: 0;
  clip-path: inset(0 0 100% 0);
}

.splash-inner {
  text-align: center;
}

.splash-logo {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 5vw, 3rem);
  color: var(--cream);
  letter-spacing: -0.03em;
  display: block;
  animation: splashFade 1.2s var(--ease-out) forwards;
}
.splash-logo em {
  color: var(--gold);
  font-style: italic;
}

.splash-line {
  width: 0;
  height: 1px;
  background: var(--gold);
  margin: 1rem auto 0;
  animation: splashLine 1s .4s var(--ease-out) forwards;
}

@keyframes splashFade {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes splashLine {
  to { width: 180px; }
}

/* =============================================================
   7. NAV
   ============================================================= */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--nav-h);
  transition: background .4s var(--ease-out), box-shadow .4s;
}

.nav.is-scrolled {
  background: rgba(14,11,9,0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 var(--line);
}

.nav-inner {
  display: flex;
  align-items: center;
  height: 100%;
  gap: 2rem;
  padding-inline: var(--gutter);
  max-width: 1200px;
  margin-inline: auto;
}

.nav-brand {
  font-family: var(--serif);
  font-size: 1.15rem;
  letter-spacing: -0.03em;
  color: var(--cream);
  flex-shrink: 0;
  margin-right: auto;
}
.nav-brand em { color: var(--gold); font-style: italic; }

.nav-links {
  display: none;
  list-style: none;
  gap: 2rem;
  align-items: center;
}

.nav-links a {
  font-size: .875rem;
  color: var(--cream-3);
  letter-spacing: .01em;
  transition: color .25s;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0; right: 0;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s var(--ease-out);
}
.nav-links a:hover { color: var(--cream); }
.nav-links a:hover::after { transform: scaleX(1); }

.nav-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: .5rem;
  margin-left: auto;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--cream);
  border-radius: 2px;
  transition: all .3s var(--ease-out);
}
.nav-toggle.is-open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; }
.nav-toggle.is-open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

.nav-mobile {
  display: none;
  position: absolute;
  top: var(--nav-h);
  left: 0; right: 0;
  background: rgba(14,11,9,0.98);
  backdrop-filter: blur(20px);
  border-top: 1px solid var(--line);
  padding: 2rem var(--gutter);
}
.nav-mobile.is-open { display: block; }
.nav-mobile ul { list-style: none; display: flex; flex-direction: column; gap: 1.25rem; }
.nav-mobile a {
  font-size: 1.1rem;
  color: var(--cream-2);
  transition: color .25s;
}
.nav-mobile a:hover { color: var(--cream); }

/* =============================================================
   8. HERO
   ============================================================= */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding-top: var(--nav-h);
  overflow: hidden;
}

.hero-mesh {
  position: absolute;
  inset: -20%;
  z-index: 0;
  background:
    radial-gradient(ellipse 60% 60% at 20% 30%, rgba(196,154,91,0.18) 0%, transparent 60%),
    radial-gradient(ellipse 50% 50% at 80% 70%, rgba(139,100,50,0.12) 0%, transparent 60%),
    radial-gradient(ellipse 70% 40% at 50% 10%, rgba(196,154,91,0.08) 0%, transparent 60%);
  filter: blur(80px);
  animation: meshDrift 20s ease-in-out infinite alternate;
}

@keyframes meshDrift {
  0%   { transform: scale(1) translate(0, 0) rotate(0deg); }
  100% { transform: scale(1.12) translate(2%, 3%) rotate(3deg); }
}

.hero-grain {
  position: absolute;
  inset: 0;
  z-index: 1;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 256px;
  pointer-events: none;
  mix-blend-mode: overlay;
}

.hero-vignette {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(ellipse at center, transparent 30%, rgba(14,11,9,0.4) 70%, rgba(14,11,9,0.85) 100%),
    linear-gradient(180deg, rgba(14,11,9,0.5) 0%, transparent 25%, transparent 70%, rgba(14,11,9,0.7) 100%);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: var(--gutter);
  padding-block: 6rem 4rem;
}

.hero-kicker {
  font-family: var(--mono);
  font-size: .7rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: .75rem;
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: heroFade .8s .6s var(--ease-out) forwards;
}

.dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gold);
  animation: pulse 2.5s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: .5; transform: scale(.7); }
}

.hero-title {
  font-family: var(--serif);
  font-size: clamp(3rem, 9vw, 7.5rem);
  font-weight: 400;
  color: var(--cream);
  line-height: 1.0;
  letter-spacing: -0.04em;
  margin-bottom: 1.5rem;
  max-width: 12ch;
  opacity: 0;
  animation: heroFade .9s .85s var(--ease-out) forwards;
}
.hero-title em {
  font-style: italic;
  color: var(--gold);
}

.hero-sub {
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  color: var(--cream-3);
  max-width: 50ch;
  line-height: 1.7;
  margin-bottom: 2.5rem;
  opacity: 0;
  animation: heroFade .9s 1.05s var(--ease-out) forwards;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 4rem;
  opacity: 0;
  animation: heroFade .9s 1.2s var(--ease-out) forwards;
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 2.5rem;
  opacity: 0;
  animation: heroFade .9s 1.35s var(--ease-out) forwards;
}

.stat-item {
  display: flex;
  flex-direction: column;
}

.stat-value {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
  letter-spacing: -0.04em;
}

.stat-label {
  font-family: var(--mono);
  font-size: .65rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--cream-3);
  margin-top: .35rem;
}

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

.hero-scroll-hint {
  position: absolute;
  bottom: 2rem;
  right: var(--gutter);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .75rem;
  opacity: 0;
  animation: heroFade .8s 1.8s var(--ease-out) forwards;
}

.hero-scroll-hint span {
  font-family: var(--mono);
  font-size: .6rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--cream-3);
  writing-mode: vertical-rl;
}

.scroll-line {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollLine 2s ease-in-out infinite;
}
@keyframes scrollLine {
  0%, 100% { transform: scaleY(1); opacity: .6; }
  50% { transform: scaleY(.5); opacity: 1; }
}

/* =============================================================
   9. ABOUT
   ============================================================= */
.about {
  padding-block: clamp(5rem, 10vw, 9rem);
  background: var(--bg-2);
  position: relative;
}
.about::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: var(--line);
}

.about-grid {
  display: grid;
  gap: 4rem;
}

.about-text { display: flex; flex-direction: column; }
.about-text .btn-gold { align-self: flex-start; margin-top: 2rem; }

.about-body {
  color: var(--cream-2);
  font-size: 1.05rem;
  max-width: 54ch;
  line-height: 1.75;
  margin-bottom: 1rem;
}

.about-visual {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.about-card {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color .4s, transform .4s var(--ease-out), box-shadow .4s;
}
.about-card:hover {
  border-color: var(--line-gold);
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.5), 0 0 0 1px var(--line-gold);
}

.about-card--offset { margin-left: clamp(0px, 6vw, 3rem); }

.about-card-inner { padding: 2rem; }

.about-icon {
  font-size: 2rem;
  display: block;
  margin-bottom: 1rem;
  filter: grayscale(0.3);
}

.about-card-title {
  font-family: var(--serif);
  font-size: 1.2rem;
  color: var(--cream);
  margin-bottom: .5rem;
  letter-spacing: -0.02em;
}
.about-card-body {
  color: var(--cream-3);
  font-size: .9rem;
  line-height: 1.6;
}

/* =============================================================
   10. AREAS
   ============================================================= */
.areas {
  padding-block: clamp(5rem, 10vw, 9rem);
  position: relative;
}

.areas::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: var(--line);
}

.areas-header {
  max-width: 600px;
  margin-bottom: 4rem;
}

.areas-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
}

.area-card {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 2rem;
  cursor: default;
  transition: border-color .4s, transform .4s var(--ease-out), box-shadow .4s;
  position: relative;
  overflow: hidden;
}

.area-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 50% at 50% 0%, var(--gold-glow), transparent);
  opacity: 0;
  transition: opacity .4s;
}

.area-card:hover {
  border-color: var(--line-gold);
  transform: translateY(-6px);
  box-shadow: 0 24px 64px rgba(0,0,0,0.5), 0 0 0 1px rgba(196,154,91,0.2);
}
.area-card:hover::before { opacity: 1; }

.area-card-icon {
  font-size: 2.25rem;
  margin-bottom: 1.25rem;
  display: block;
  position: relative;
  z-index: 1;
}

.area-card-title {
  font-family: var(--serif);
  font-size: 1.15rem;
  color: var(--cream);
  letter-spacing: -0.02em;
  margin-bottom: .75rem;
  line-height: 1.3;
  position: relative;
  z-index: 1;
}

.area-card-body {
  font-size: .875rem;
  color: var(--cream-3);
  line-height: 1.65;
  position: relative;
  z-index: 1;
}

/* =============================================================
   11. MARQUEE
   ============================================================= */
.marquee-wrap {
  overflow: hidden;
  border-block: 1px solid var(--line);
  background: var(--bg-2);
  padding-block: 1.25rem;
  user-select: none;
}

.marquee-track {
  display: flex;
  gap: 2rem;
  white-space: nowrap;
  width: max-content;
  animation: marquee 35s linear infinite;
}

.marquee-track span {
  font-family: var(--mono);
  font-size: .75rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--cream-3);
}

.marquee-track .sep {
  color: var(--gold);
  opacity: .5;
}

@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* =============================================================
   12. FAQ
   ============================================================= */
.faq {
  padding-block: clamp(5rem, 10vw, 9rem);
  background: var(--bg-2);
  position: relative;
}
.faq::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: var(--line);
}

.faq-header {
  max-width: 650px;
  margin-bottom: 3.5rem;
}

.faq-list {
  max-width: 820px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color .35s;
}
.faq-item:hover,
.faq-item[open] {
  border-color: var(--line-gold);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.4rem 1.75rem;
  cursor: pointer;
  list-style: none;
  font-family: var(--serif);
  font-size: 1.08rem;
  color: var(--cream);
  letter-spacing: -0.01em;
  line-height: 1.4;
  transition: color .25s;
  user-select: none;
}
.faq-question::-webkit-details-marker { display: none; }
.faq-question:hover { color: var(--gold); }

.faq-icon {
  position: relative;
  width: 14px; height: 14px;
  flex-shrink: 0;
}
.faq-icon::before,
.faq-icon::after {
  content: '';
  position: absolute;
  background: var(--gold);
  transition: transform .35s var(--ease-out);
}
.faq-icon::before {
  top: 50%; left: 0; right: 0;
  height: 1.5px;
  transform: translateY(-50%);
}
.faq-icon::after {
  left: 50%; top: 0; bottom: 0;
  width: 1.5px;
  transform: translateX(-50%);
}
.faq-item[open] .faq-icon::after { transform: translateX(-50%) scaleY(0); }

.faq-answer {
  padding: 0 1.75rem 1.6rem;
}
.faq-answer p {
  color: var(--cream-3);
  font-size: .95rem;
  line-height: 1.75;
  max-width: 64ch;
}
.faq-answer strong { color: var(--gold); font-weight: 600; }

.faq-cta {
  margin-top: 3rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.25rem;
}
.faq-cta p {
  font-family: var(--serif);
  font-size: 1.1rem;
  color: var(--cream-2);
  font-style: italic;
}

/* =============================================================
   13. CTA BAND
   ============================================================= */
.cta-band {
  padding-block: clamp(5rem, 10vw, 9rem);
  position: relative;
  overflow: hidden;
  text-align: center;
}
.cta-band::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: var(--line);
}

.cta-band-mesh {
  position: absolute;
  inset: -30%;
  background:
    radial-gradient(ellipse 50% 60% at 50% 50%, rgba(196,154,91,0.12) 0%, transparent 60%);
  filter: blur(80px);
  pointer-events: none;
}

.cta-band-title {
  font-family: var(--serif);
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 400;
  color: var(--cream);
  line-height: 1.08;
  letter-spacing: -0.04em;
  margin-bottom: 1.5rem;
  margin-inline: auto;
  max-width: 14ch;
}
.cta-band-title em { font-style: italic; color: var(--gold); }

.cta-band-sub {
  color: var(--cream-3);
  font-size: 1.05rem;
  max-width: 48ch;
  margin: 0 auto 3rem;
  line-height: 1.7;
}

.cta-band-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

/* =============================================================
   14. CONTACTO
   ============================================================= */
.contacto {
  padding-block: clamp(5rem, 10vw, 9rem);
  position: relative;
}
.contacto::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: var(--line);
}

.contacto-grid {
  display: grid;
  gap: 4rem;
}

.contacto-list {
  list-style: none;
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contacto-list li {
  display: flex;
  flex-direction: column;
  gap: .3rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--line);
}

.contacto-label {
  font-family: var(--mono);
  font-size: .65rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold);
}

.contacto-value {
  font-size: 1rem;
  color: var(--cream-2);
  line-height: 1.5;
}

.contacto-link {
  transition: color .25s;
}
.contacto-link:hover { color: var(--gold); }

/* Form */
.contacto-form-wrap { position: relative; }

.contacto-form {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 2.5rem;
}

.form-title {
  font-family: var(--serif);
  font-size: 1.5rem;
  color: var(--cream);
  letter-spacing: -0.03em;
  margin-bottom: 2rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: .5rem;
  margin-bottom: 1.25rem;
}

.form-group label {
  font-size: .8rem;
  font-weight: 500;
  letter-spacing: .04em;
  color: var(--cream-3);
}

.form-group input,
.form-group select,
.form-group textarea {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: .85rem 1rem;
  font: inherit;
  font-size: .9rem;
  color: var(--cream);
  transition: border-color .25s;
  outline: none;
  resize: vertical;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--cream-3); opacity: .6; }
.form-group select option { background: var(--bg-3); }

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  background: rgba(196,154,91,0.05);
}

.btn-sending { display: none; }
.is-sending .btn-text { display: none; }
.is-sending .btn-sending { display: inline; }

.form-disclaimer {
  font-size: .75rem;
  color: var(--cream-3);
  text-align: center;
  margin-top: 1rem;
  opacity: .7;
}

/* Success state */
.form-success {
  position: absolute;
  inset: 0;
  background: var(--bg-card);
  border: 1px solid var(--line-gold);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}
.form-success[hidden] { display: none; }

.form-success-inner {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.success-check {
  width: 60px; height: 60px;
  color: var(--gold);
  stroke: currentColor;
}
.check-circle { stroke-dasharray: 160; stroke-dashoffset: 160; }
.check-path   { stroke-dasharray: 48;  stroke-dashoffset: 48;  }
.success-check.animate .check-circle {
  animation: drawCircle .6s var(--ease-out) forwards;
}
.success-check.animate .check-path {
  animation: drawCheck .4s .5s var(--ease-out) forwards;
}
@keyframes drawCircle { to { stroke-dashoffset: 0; } }
@keyframes drawCheck  { to { stroke-dashoffset: 0; } }

.success-title {
  font-family: var(--serif);
  font-size: 1.5rem;
  color: var(--cream);
  letter-spacing: -0.03em;
}
.success-sub {
  font-size: .9rem;
  color: var(--cream-3);
  max-width: 36ch;
  line-height: 1.6;
}

/* =============================================================
   15. FOOTER
   ============================================================= */
.footer {
  background: var(--bg-2);
  border-top: 1px solid var(--line);
  padding-block: 3rem 2rem;
}

.footer-top {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
}

.footer-brand {
  font-family: var(--serif);
  font-size: 1.3rem;
  color: var(--cream);
  letter-spacing: -0.03em;
}
.footer-brand em { color: var(--gold); font-style: italic; }

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
}
.footer-nav a {
  font-size: .85rem;
  color: var(--cream-3);
  transition: color .25s;
}
.footer-nav a:hover { color: var(--gold); }

.footer-line {
  height: 1px;
  background: var(--line);
  margin-bottom: 2rem;
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: space-between;
}

.footer-copy,
.footer-addr {
  font-size: .78rem;
  color: var(--cream-3);
  opacity: .7;
}

/* =============================================================
   16. WhatsApp FAB
   ============================================================= */
.whatsapp-fab {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 200;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 32px rgba(37,211,102,0.45), 0 2px 8px rgba(0,0,0,0.3);
  transition: transform .35s var(--ease-bounce), box-shadow .35s;
  animation: fabPop 1s 2s var(--ease-bounce) both;
}
.whatsapp-fab:hover {
  transform: scale(1.12);
  box-shadow: 0 16px 48px rgba(37,211,102,0.55), 0 4px 12px rgba(0,0,0,0.3);
}

@keyframes fabPop {
  from { transform: scale(0); opacity: 0; }
  to   { transform: scale(1); opacity: 1; }
}

.fab-tooltip {
  position: absolute;
  right: calc(100% + 1rem);
  white-space: nowrap;
  background: rgba(14,11,9,0.95);
  color: var(--cream);
  font-size: .78rem;
  padding: .4rem .9rem;
  border-radius: 100px;
  border: 1px solid var(--line);
  opacity: 0;
  transform: translateX(8px);
  transition: opacity .3s, transform .3s var(--ease-out);
  pointer-events: none;
}
.whatsapp-fab:hover .fab-tooltip {
  opacity: 1;
  transform: translateX(0);
}

/* =============================================================
   17. RESPONSIVE
   ============================================================= */
@media (min-width: 720px) {
  .nav-links { display: flex; }
  .nav-toggle { display: none; }

  .about-grid { grid-template-columns: 1fr 1fr; align-items: start; }
  .contacto-grid { grid-template-columns: 1fr 1fr; }
}

@media (min-width: 960px) {
  .areas-grid  { grid-template-columns: repeat(3, 1fr); }
  .areas-grid > .area-card:last-child { grid-column: span 1; }
}

@media (min-width: 1280px) {
  .areas-grid { grid-template-columns: repeat(3, 1fr); }
}

/* =============================================================
   18. Reduced motion (intrusive only)
   ============================================================= */
@media (prefers-reduced-motion: reduce) {
  .hero-mesh { animation: none; }
  .marquee-track { animation: none; }
  .scroll-line { animation: none; }
}
