/* ═══════════════════════════════════════════════════════════════════
   María Camila Corredor — Sistema de diseño cinematográfico
   Paleta: navy / midnight + cream + olive + gold accents
   Inspirado en: Linear · Vercel · Apple · Awwwards
   ═══════════════════════════════════════════════════════════════════ */

* { -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
html { scroll-behavior: smooth; }
body {
  font-feature-settings: "ss01","cv11","ss03";
  background: #070E1C;
}

::selection { background: #D4B574; color: #070E1C; }

/* ───────── Grano sobre toda la página ───────── */
.grain {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 100;
  opacity: 0.05;
  mix-blend-mode: overlay;
  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.9' numOctaves='3' stitchTiles='stitch'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
}

/* ═══════════ TIPOGRAFÍA EDITORIAL ═══════════ */
.serif-italic {
  font-family: 'Fraunces', Georgia, serif;
  font-style: italic;
  font-weight: 400;
  font-variation-settings: "opsz" 144;
}

.title-2 {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(2.25rem, 5vw, 4.5rem);
  line-height: 1.0;
  letter-spacing: -0.035em;
  font-weight: 400;
  font-variation-settings: "opsz" 144;
  color: #F5EFE0;
}

.hero-headline {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(2.75rem, 7vw, 6.25rem);
  line-height: 0.95;
  letter-spacing: -0.045em;
  font-weight: 400;
  font-variation-settings: "opsz" 144;
  color: #F5EFE0;
}
.hero-headline .serif-italic { font-weight: 300; }

.eyebrow {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #D4B574;
  display: inline-block;
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(245,239,224,0.7);
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  padding: 8px 16px;
  border-radius: 999px;
  backdrop-filter: blur(12px);
}

.dot-pulse {
  position: relative;
  width: 6px; height: 6px;
  border-radius: 999px;
  background: #D4B574;
  flex-shrink: 0;
}
.dot-pulse::before {
  content: "";
  position: absolute;
  inset: -4px;
  border-radius: 999px;
  background: #D4B574;
  opacity: 0.4;
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { transform: scale(0.8); opacity: 0.4; }
  50%      { transform: scale(1.6); opacity: 0; }
}

/* ═══════════ NAV ═══════════ */
#site-header {
  transition: background .3s ease, backdrop-filter .3s ease, border-color .3s ease;
}
#site-header.scrolled {
  background: rgba(7,14,28,0.7);
  backdrop-filter: blur(20px) saturate(140%);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.logo-mark {
  width: 42px; height: 42px;
  border-radius: 12px;
  background: linear-gradient(135deg, #1E3A5F 0%, #0E1B30 100%);
  border: 1px solid rgba(212,181,116,0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Fraunces', serif;
  font-size: 16px;
  color: #E0C57E;
  letter-spacing: 0.05em;
  font-weight: 500;
  box-shadow: 0 4px 14px rgba(7,14,28,0.4), inset 0 1px 0 rgba(255,255,255,0.08);
  transition: all 0.4s ease;
}
.logo-mark:hover { transform: rotate(-4deg); border-color: #D4B574; }

.glass-nav {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 999px;
  padding: 6px;
  backdrop-filter: blur(14px);
}
.nav-pill {
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 13px;
  color: rgba(245,239,224,0.7);
  font-weight: 500;
  transition: all 0.25s ease;
}
.nav-pill:hover {
  color: #F5EFE0;
  background: rgba(255,255,255,0.05);
}
.nav-pill-portal {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #E0C57E;
  background: rgba(212,181,116,0.06);
  border: 1px solid rgba(212,181,116,0.2);
  margin-left: 4px;
}
.nav-pill-portal:hover {
  color: #070E1C;
  background: linear-gradient(135deg, #E0C57E 0%, #D4B574 100%);
  border-color: transparent;
}
.mobile-link-portal {
  color: #E0C57E !important;
  font-weight: 500;
  margin-top: 4px;
}

.mobile-link {
  font-size: 16px;
  color: #F5EFE0;
  padding: 6px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.mobile-link:last-of-type { border: none; }

/* ═══════════ BOTONES ═══════════ */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 24px;
  background: #F5EFE0;
  color: #070E1C;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: -0.005em;
  transition: all 0.3s cubic-bezier(.34,1.2,.64,1);
  box-shadow: 0 1px 0 rgba(255,255,255,0.5) inset, 0 14px 40px -8px rgba(245,239,224,0.25);
}
.btn-primary:hover {
  transform: translateY(-2px);
  background: #FFFFFF;
  box-shadow: 0 1px 0 rgba(255,255,255,0.5) inset, 0 20px 50px -8px rgba(245,239,224,0.4);
}

.btn-glass {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 22px;
  background: rgba(255,255,255,0.05);
  color: #F5EFE0;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 999px;
  font-size: 14px;
  font-weight: 500;
  backdrop-filter: blur(12px);
  transition: all 0.3s ease;
}
.btn-glass:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(212,181,116,0.4);
  transform: translateY(-2px);
}

.btn-gold {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  color: #070E1C;
  background: linear-gradient(135deg, #E0C57E 0%, #D4B574 100%);
  border: 1px solid rgba(212,181,116,0.4);
  box-shadow: 0 8px 24px -6px rgba(212,181,116,0.4), inset 0 1px 0 rgba(255,255,255,0.4);
  transition: all 0.3s cubic-bezier(.34,1.2,.64,1);
}
.btn-gold:hover {
  transform: translateY(-2px);
  background: linear-gradient(135deg, #EBD9A8 0%, #E0C57E 100%);
  box-shadow: 0 14px 36px -6px rgba(212,181,116,0.55), inset 0 1px 0 rgba(255,255,255,0.5);
}

.btn-link-gold {
  display: inline-flex;
  align-items: center;
  color: #E0C57E;
  font-size: 14px;
  font-weight: 500;
  border-bottom: 1px solid rgba(224,197,126,0.3);
  padding-bottom: 2px;
  transition: all 0.3s ease;
}
.btn-link-gold:hover {
  border-color: #E0C57E;
  letter-spacing: 0.02em;
}

/* ═══════════ AURORA · HERO BG ═══════════ */
.aurora {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 0;
}
.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(110px);
  opacity: 0.55;
  will-change: transform;
}
.blob-1 {
  top: -10%; left: -5%;
  width: 600px; height: 600px;
  background: radial-gradient(circle, #1E3A5F 0%, transparent 70%);
  animation: float 18s ease-in-out infinite;
}
.blob-2 {
  bottom: -20%; right: -10%;
  width: 700px; height: 700px;
  background: radial-gradient(circle, #15294A 0%, transparent 70%);
  animation: float 22s ease-in-out infinite reverse;
}
.blob-3 {
  top: 30%; right: 20%;
  width: 380px; height: 380px;
  background: radial-gradient(circle, rgba(212,181,116,0.25) 0%, transparent 70%);
  animation: float 16s ease-in-out infinite;
}
@keyframes float {
  0%,100% { transform: translate(0,0) scale(1); }
  33%     { transform: translate(40px,-30px) scale(1.05); }
  66%     { transform: translate(-30px,40px) scale(0.95); }
}

.hero-grid-overlay {
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(circle at 50% 50%, black 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(circle at 50% 50%, black 30%, transparent 75%);
}

/* ═══════════ HERO VISUAL ═══════════ */
.hero-visual {
  position: relative;
  aspect-ratio: 4/5;
  max-width: 480px;
  margin-left: auto;
}

.hero-photo {
  position: absolute;
  inset: 0;
  border-radius: 28px;
  overflow: hidden;
  background: linear-gradient(135deg, #15294A 0%, #0A1628 100%);
  border: 1px solid rgba(255,255,255,0.06);
  box-shadow: 0 50px 100px -20px rgba(0,0,0,0.6);
}
.hero-photo img { width: 100%; height: 100%; object-fit: cover; }
.hero-photo-fallback {
  position: absolute;
  inset: 0;
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 32px;
  text-align: center;
}

.float-card {
  position: absolute;
  background: rgba(14,27,48,0.7);
  border: 1px solid rgba(255,255,255,0.1);
  backdrop-filter: blur(24px) saturate(140%);
  border-radius: 18px;
  padding: 16px 18px;
  box-shadow: 0 20px 60px -10px rgba(0,0,0,0.5);
  animation: floatCard 6s ease-in-out infinite;
}
@keyframes floatCard {
  0%,100% { transform: translateY(0); }
  50%     { transform: translateY(-8px); }
}
.float-card-1 {
  top: 8%;
  left: -28%;
  width: 240px;
  animation-delay: 0s;
}
.float-card-2 {
  top: 40%;
  right: -18%;
  animation-delay: -2s;
}
.float-card-3 {
  bottom: 8%;
  left: -22%;
  width: 200px;
  animation-delay: -4s;
}

@media (max-width: 1024px) {
  .float-card-1 { left: -8%; width: 220px; }
  .float-card-2 { right: -8%; }
  .float-card-3 { left: -4%; width: 180px; }
}
@media (max-width: 640px) {
  .float-card { display: none; }
}

.status-pill {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #B8C49B;
  background: rgba(184,196,155,0.12);
  border: 1px solid rgba(184,196,155,0.2);
  padding: 3px 8px;
  border-radius: 999px;
}

.bar-row {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 11px;
  color: rgba(245,239,224,0.85);
}
.bar-row > span:first-child { width: 86px; flex-shrink: 0; }
.bar {
  flex: 1;
  height: 4px;
  background: rgba(255,255,255,0.06);
  border-radius: 999px;
  overflow: hidden;
}
.bar > span {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, #E0C57E, #D4B574);
  border-radius: 999px;
  animation: barFill 1.6s cubic-bezier(.65,.05,.36,1) forwards;
  transform-origin: left;
}
@keyframes barFill {
  from { transform: scaleX(0); }
  to   { transform: scaleX(1); }
}

.chip {
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(245,239,224,0.85);
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 4px 10px;
  border-radius: 999px;
}

/* ═══════════ SCROLL CUE ═══════════ */
.scroll-cue {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  width: 24px; height: 40px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.2);
  display: flex;
  justify-content: center;
  padding-top: 6px;
  z-index: 5;
}
.scroll-cue span {
  width: 2px; height: 8px;
  background: #D4B574;
  border-radius: 999px;
  animation: scrollDown 1.6s ease-in-out infinite;
}
@keyframes scrollDown {
  0%   { transform: translateY(0); opacity: 1; }
  100% { transform: translateY(16px); opacity: 0; }
}

/* ═══════════ MARQUEE ═══════════ */
.marquee {
  width: 100%;
  overflow: hidden;
  position: relative;
  mask-image: linear-gradient(90deg, transparent 0%, black 8%, black 92%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, black 8%, black 92%, transparent 100%);
}
.marquee-track {
  display: inline-flex;
  align-items: center;
  gap: 32px;
  white-space: nowrap;
  animation: scrollMarquee 40s linear infinite;
  font-family: 'Fraunces', serif;
  font-size: 22px;
  color: rgba(245,239,224,0.5);
  letter-spacing: -0.02em;
}
.marquee-track > span { flex-shrink: 0; }
.marquee-track .dot {
  color: #D4B574;
  font-size: 16px;
}
@keyframes scrollMarquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ═══════════ BENTO TRUST GRID ═══════════ */
.bento-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: minmax(180px, auto);
  gap: 16px;
}
@media (max-width: 1024px) { .bento-grid { grid-template-columns: repeat(4, 1fr); } }
@media (max-width: 640px)  { .bento-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; } }

.bento-card {
  position: relative;
  grid-column: span 2;
  background: rgba(255,255,255,0.025);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 24px;
  padding: 28px;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(.34,1.2,.64,1);
}
.bento-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at var(--x,50%) var(--y,50%), rgba(212,181,116,0.08), transparent 50%);
  opacity: 0;
  transition: opacity 0.4s ease;
}
.bento-card:hover {
  border-color: rgba(212,181,116,0.25);
  transform: translateY(-4px);
}
.bento-card:hover::before { opacity: 1; }

.bento-card-lg {
  grid-column: span 4;
  grid-row: span 2;
  background: linear-gradient(135deg, rgba(30,58,95,0.4) 0%, rgba(14,27,48,0.4) 100%);
  border: 1px solid rgba(212,181,116,0.15);
}
@media (max-width: 1024px) { .bento-card-lg { grid-column: span 4; } }
@media (max-width: 640px)  { .bento-card-lg { grid-column: span 2; grid-row: span 1; } }

.bento-cta {
  background: linear-gradient(135deg, rgba(212,181,116,0.12) 0%, rgba(212,181,116,0.04) 100%);
  border: 1px solid rgba(212,181,116,0.2);
}
.bento-cta-link {
  display: inline-block;
  margin-top: 16px;
  color: #E0C57E;
  font-size: 13px;
  font-weight: 500;
  border-bottom: 1px solid rgba(224,197,126,0.3);
  padding-bottom: 2px;
}
.bento-cta-link:hover { border-color: #E0C57E; }

.map-mini {
  height: 60px;
  margin-top: 12px;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 80'><path d='M10 50 Q30 20 60 35 T120 30 T180 45' stroke='%23D4B574' stroke-width='1' fill='none' opacity='0.5'/><circle cx='60' cy='35' r='3' fill='%23E0C57E'/><circle cx='120' cy='30' r='2' fill='%23E0C57E' opacity='0.6'/><circle cx='180' cy='45' r='2' fill='%23E0C57E' opacity='0.6'/></svg>");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

/* ═══════════ SERVICIOS · BENTO ═══════════ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: minmax(220px, auto);
  gap: 16px;
}
@media (max-width: 1024px) { .services-grid { grid-template-columns: repeat(4, 1fr); } }
@media (max-width: 640px)  { .services-grid { grid-template-columns: 1fr; } }

.srv {
  position: relative;
  grid-column: span 2;
  background: linear-gradient(180deg, rgba(255,255,255,0.025) 0%, rgba(255,255,255,0.01) 100%);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 24px;
  padding: 32px;
  overflow: hidden;
  transition: all 0.5s cubic-bezier(.34,1.2,.64,1);
  display: flex;
  flex-direction: column;
}
.srv:hover {
  border-color: rgba(212,181,116,0.3);
  transform: translateY(-6px);
  background: linear-gradient(180deg, rgba(30,58,95,0.25) 0%, rgba(14,27,48,0.15) 100%);
}

.srv-feature {
  grid-column: span 4;
  grid-row: span 2;
  background: linear-gradient(135deg, rgba(30,58,95,0.5) 0%, rgba(7,14,28,0.4) 100%);
  border: 1px solid rgba(212,181,116,0.2);
  padding: 44px;
}
@media (max-width: 1024px) { .srv-feature { grid-column: span 4; grid-row: span 1; } }
@media (max-width: 640px)  { .srv-feature, .srv { grid-column: span 1; padding: 28px; } }

.srv-icon {
  width: 48px; height: 48px;
  border-radius: 14px;
  background: rgba(212,181,116,0.1);
  border: 1px solid rgba(212,181,116,0.2);
  color: #E0C57E;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  transition: all 0.4s ease;
}
.srv:hover .srv-icon {
  background: linear-gradient(135deg, #E0C57E, #D4B574);
  color: #070E1C;
  border-color: transparent;
  transform: rotate(-6deg);
}

.srv-title {
  font-family: 'Fraunces', serif;
  font-size: 28px;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: #F5EFE0;
  margin-top: 12px;
  font-weight: 400;
  font-variation-settings: "opsz" 144;
}
.srv-feature .srv-title { font-size: 44px; }
@media (max-width: 640px) { .srv-feature .srv-title { font-size: 32px; } }

.srv-desc {
  margin-top: 14px;
  color: rgba(245,239,224,0.55);
  font-size: 14px;
  line-height: 1.55;
  flex-grow: 1;
}
.srv-feature .srv-desc { font-size: 16px; max-width: 36ch; }

.srv-cta {
  margin-top: 24px;
  color: #E0C57E;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: -0.005em;
  border-bottom: 1px solid transparent;
  padding-bottom: 2px;
  align-self: flex-start;
  transition: border-color 0.3s ease;
}
.srv:hover .srv-cta { border-color: rgba(224,197,126,0.5); }

.srv-glow {
  position: absolute;
  bottom: -100px;
  right: -100px;
  width: 300px; height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212,181,116,0.15) 0%, transparent 70%);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.6s ease;
}
.srv-feature:hover .srv-glow { opacity: 1; }

/* ═══════════ TIMELINE ═══════════ */
.timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  position: relative;
}
@media (max-width: 1024px) { .timeline { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px)  { .timeline { grid-template-columns: 1fr; } }

.timeline::before {
  content: "";
  position: absolute;
  top: 28px;
  left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(212,181,116,0.3), transparent);
}
@media (max-width: 1024px) { .timeline::before { display: none; } }

.t-item {
  position: relative;
  padding-top: 60px;
}
.t-num {
  position: absolute;
  top: 0; left: 0;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, #15294A 0%, #070E1C 100%);
  border: 1px solid rgba(212,181,116,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Fraunces', serif;
  font-size: 20px;
  color: #E0C57E;
  letter-spacing: -0.02em;
  box-shadow: 0 8px 24px rgba(7,14,28,0.6);
}
.t-eyebrow {
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #D4B574;
}
.t-title {
  font-family: 'Fraunces', serif;
  font-size: 24px;
  color: #F5EFE0;
  margin-top: 6px;
  font-weight: 400;
  letter-spacing: -0.015em;
  line-height: 1.15;
  font-variation-settings: "opsz" 144;
}
.t-desc {
  margin-top: 10px;
  color: rgba(245,239,224,0.55);
  font-size: 13px;
  line-height: 1.55;
}

.sec-chip {
  background: rgba(255,255,255,0.025);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 999px;
  padding: 12px 18px;
  text-align: center;
  font-size: 12px;
  color: rgba(245,239,224,0.65);
  transition: all 0.3s ease;
}
.sec-chip:hover {
  border-color: rgba(212,181,116,0.3);
  color: #F5EFE0;
  background: rgba(212,181,116,0.05);
}

/* ═══════════ ABOUT EDITORIAL ═══════════ */
.about-glow {
  background:
    radial-gradient(ellipse at 20% 50%, rgba(30,58,95,0.4), transparent 50%),
    radial-gradient(ellipse at 80% 30%, rgba(212,181,116,0.08), transparent 50%);
  pointer-events: none;
}

.about-photo {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: 28px;
  overflow: hidden;
  background: linear-gradient(135deg, #15294A 0%, #0A1628 100%);
  border: 1px solid rgba(255,255,255,0.07);
  box-shadow: 0 50px 100px -20px rgba(0,0,0,0.6);
}
.about-photo img { width: 100%; height: 100%; object-fit: cover; }
.about-photo-fallback {
  position: absolute;
  inset: 0;
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 32px;
  text-align: center;
}
.about-photo-tag {
  position: absolute;
  bottom: 16px;
  left: 16px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(7,14,28,0.7);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(255,255,255,0.1);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(245,239,224,0.85);
}

.about-quote {
  position: relative;
  margin-top: 36px;
  padding: 28px 0 28px 28px;
  border-left: 1px solid rgba(212,181,116,0.3);
  font-family: 'Fraunces', serif;
  font-size: clamp(1.4rem, 2.2vw, 2rem);
  line-height: 1.25;
  letter-spacing: -0.02em;
  color: #F5EFE0;
  font-weight: 400;
  font-variation-settings: "opsz" 144;
}
.about-quote em { font-style: italic; color: #E0C57E; }
.q-mark {
  position: absolute;
  top: -8px; left: 16px;
  font-family: 'Fraunces', serif;
  font-size: 60px;
  color: #D4B574;
  line-height: 1;
  font-weight: 300;
}

.badge-row {
  margin-top: 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.badge {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(245,239,224,0.85);
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  padding: 6px 12px;
  border-radius: 999px;
}

/* ═══════════ FAQ ═══════════ */
.faq {
  border-top: 1px solid rgba(255,255,255,0.06);
}
.faq:last-of-type { border-bottom: 1px solid rgba(255,255,255,0.06); }
.faq summary {
  list-style: none;
  cursor: pointer;
  padding: 28px 0;
  font-family: 'Fraunces', serif;
  font-size: clamp(1.25rem, 2.2vw, 1.75rem);
  font-weight: 400;
  letter-spacing: -0.02em;
  color: #F5EFE0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  transition: color 0.3s ease;
  font-variation-settings: "opsz" 144;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  font-family: 'Inter Tight', sans-serif;
  font-size: 24px;
  color: #D4B574;
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(212,181,116,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  flex-shrink: 0;
  font-weight: 300;
}
.faq[open] summary { color: #E0C57E; }
.faq[open] summary::after {
  content: "−";
  background: #D4B574;
  color: #070E1C;
  transform: rotate(180deg);
}
.faq-body {
  padding: 0 0 28px;
  color: rgba(245,239,224,0.6);
  font-size: 16px;
  line-height: 1.7;
  max-width: 70ch;
  animation: faqOpen 0.4s ease;
}
@keyframes faqOpen {
  from { opacity: 0; transform: translateY(-6px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ═══════════ CTA FINAL ═══════════ */
.cta-bg {
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(30,58,95,0.6), transparent 70%),
    radial-gradient(ellipse 60% 80% at 50% 100%, rgba(212,181,116,0.15), transparent 70%),
    linear-gradient(180deg, #070E1C 0%, #0A1628 100%);
}
.cta-grid {
  background-image:
    linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(circle at 50% 50%, black 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(circle at 50% 50%, black 30%, transparent 80%);
  pointer-events: none;
}

.btn-mega {
  position: relative;
  display: inline-flex;
  align-items: center;
  padding: 0;
  border-radius: 999px;
  overflow: hidden;
  transition: transform 0.4s cubic-bezier(.34,1.2,.64,1);
}
.btn-mega:hover { transform: translateY(-4px) scale(1.02); }
.btn-mega-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #E0C57E 0%, #B89A55 100%);
  border-radius: 999px;
  transition: filter 0.4s ease;
}
.btn-mega:hover .btn-mega-bg { filter: brightness(1.1); }
.btn-mega-content {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 22px 40px;
  font-size: 17px;
  font-weight: 600;
  color: #070E1C;
  letter-spacing: -0.01em;
}

.btn-glass-lg {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 22px 36px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 999px;
  font-size: 17px;
  font-weight: 500;
  color: #F5EFE0;
  backdrop-filter: blur(14px);
  transition: all 0.3s ease;
}
.btn-glass-lg:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(212,181,116,0.4);
}

.info-card {
  background: rgba(255,255,255,0.025);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 18px;
  padding: 22px;
  transition: all 0.3s ease;
}
.info-card:hover {
  border-color: rgba(212,181,116,0.25);
  background: rgba(212,181,116,0.04);
}

/* ═══════════ LOGO HORIZONTAL ═══════════ */
.brand-logo-h {
  display: block;
  height: 72px;
  width: 320px;
  object-fit: cover;
  object-position: center;
  border-radius: 8px;
  transition: opacity 0.3s ease;
}
.brand-logo-h:hover { opacity: 0.85; }

@media (max-width: 640px) {
  .brand-logo-h { height: 56px; width: 260px; }
}

/* ═══════════ FOOTER ═══════════ */
.footer-h {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #D4B574;
  margin-bottom: 16px;
}
.footer-list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 14px;
  color: rgba(245,239,224,0.5);
}
.footer-list a:hover { color: #E0C57E; }

/* ═══════════ FLOATING WHATSAPP ═══════════ */
#wa-float {
  position: fixed;
  bottom: 24px; right: 24px;
  z-index: 60;
  width: 56px; height: 56px;
}
.wa-pulse {
  position: absolute;
  inset: 0;
  border-radius: 999px;
  background: #25D366;
  animation: pulse 2.5s ease-in-out infinite;
  opacity: 0.35;
}
.wa-btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px; height: 56px;
  border-radius: 999px;
  background: #25D366;
  color: #fff;
  box-shadow: 0 14px 40px -8px rgba(37,211,102,0.6);
  transition: transform 0.3s ease;
}
#wa-float:hover .wa-btn { transform: scale(1.08); }

/* ═══════════ REVEAL ═══════════ */
.reveal, .reveal-delay {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1s cubic-bezier(.25,.1,.25,1), transform 1s cubic-bezier(.25,.1,.25,1);
}
.reveal-delay { transition-delay: 0.2s; }
.reveal.is-visible, .reveal-delay.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ═══════════ ARTÍCULO BLOG ═══════════ */
.prose-article {
  max-width: 70ch;
  margin: 0 auto;
  color: rgba(245,239,224,0.75);
  font-size: 1.05rem;
  line-height: 1.8;
}
.prose-article h2 {
  font-family: 'Fraunces', serif;
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  margin-top: 3rem;
  margin-bottom: 1rem;
  color: #F5EFE0;
  font-weight: 400;
  letter-spacing: -0.025em;
  line-height: 1.15;
  font-variation-settings: "opsz" 144;
}
.prose-article h3 {
  font-family: 'Fraunces', serif;
  font-size: 1.5rem;
  margin-top: 2rem;
  margin-bottom: 0.75rem;
  color: #E0C57E;
  font-weight: 400;
  letter-spacing: -0.015em;
}
.prose-article p { margin-bottom: 1.25rem; }
.prose-article ul {
  margin: 1rem 0 1.5rem;
  padding-left: 1.25rem;
}
.prose-article ul li { margin-bottom: 0.6rem; }
.prose-article ul li::marker { color: #D4B574; }
.prose-article strong { color: #F5EFE0; }
.prose-article blockquote {
  border-left: 1px solid rgba(212,181,116,0.4);
  padding: 0.5rem 1.5rem;
  margin: 2rem 0;
  font-family: 'Fraunces', serif;
  font-size: 1.5rem;
  color: #F5EFE0;
  font-style: italic;
  line-height: 1.35;
  font-variation-settings: "opsz" 144;
}

/* ═══════════ RESPONSIVE TWEAKS ═══════════ */
@media (max-width: 640px) {
  .hero-headline { font-size: 2.75rem; }
  .title-2 { font-size: 2rem; }
  .btn-mega-content { padding: 18px 28px; font-size: 15px; }
  .btn-glass-lg { padding: 18px 28px; font-size: 15px; }
  .timeline::before { display: none; }
}
