@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&display=swap');

/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  background: #0B1B33;
  color: #F0F4F8;
  line-height: 1.6;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { cursor: pointer; font-family: inherit; border: none; outline: none; }

/* ── CSS Variables ── */
:root {
  --navy: #0B1B33;
  --navy-light: #112244;
  --navy-mid: #0E2040;
  --gold: #C9A84C;
  --gold-light: #E2C06A;
  --cyan: #4FC3F7;
  --white: #F0F4F8;
  --muted: #8BA0B5;
  --border: rgba(201, 168, 76, 0.2);
  --border-subtle: rgba(255,255,255,0.07);
  --glow-gold: rgba(201, 168, 76, 0.15);
  --glow-cyan: rgba(79, 195, 247, 0.12);
}

/* ── Typography ── */
.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(201, 168, 76, 0.1);
  border: 1px solid var(--border);
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 1rem;
}
h1 { font-size: clamp(2rem, 5vw, 3.5rem); font-weight: 800; line-height: 1.15; }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.5rem); font-weight: 700; line-height: 1.2; }
h3 { font-size: 1.1rem; font-weight: 700; }
p  { color: var(--muted); }

/* ── Layout helpers ── */
.container { max-width: 1140px; margin: 0 auto; padding: 0 1.25rem; }
section { padding: 5rem 0; }
.section-header { text-align: center; margin-bottom: 3.5rem; }
.section-header p { max-width: 680px; margin: 0.75rem auto 0; font-size: 1.05rem; }

/* ── Utility ── */
.gold  { color: var(--gold); }
.cyan  { color: var(--cyan); }
.muted { color: var(--muted); }

/* ── Button styles ── */
.btn {
  display: inline-block;
  padding: 0.75rem 1.75rem;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.95rem;
  transition: all 0.2s ease;
  cursor: pointer;
}
.btn-primary {
  background: var(--gold);
  color: #0B1B33;
}
.btn-primary:hover { background: var(--gold-light); transform: translateY(-1px); box-shadow: 0 8px 24px rgba(201,168,76,0.35); }
.btn-ghost {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.25);
}
.btn-ghost:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-1px); }

/* ═══════════════════════════════════════
   1. NAVBAR
═══════════════════════════════════════ */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 1rem 0;
  transition: background 0.3s, backdrop-filter 0.3s, box-shadow 0.3s;
}
#navbar.scrolled {
  background: rgba(11, 27, 51, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 var(--border-subtle);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.nav-logo {
  font-size: 1.45rem;
  font-weight: 800;
  color: var(--gold);
  letter-spacing: -0.02em;
}
.nav-links {
  display: flex;
  gap: 1.75rem;
  list-style: none;
}
.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--muted);
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--white); }
.nav-cta { white-space: nowrap; }
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  padding: 4px;
}
.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.3s;
}
.nav-mobile {
  display: none;
  position: fixed;
  top: 60px; left: 0; right: 0;
  background: rgba(11,27,51,0.97);
  backdrop-filter: blur(20px);
  padding: 1.5rem 1.25rem;
  z-index: 999;
  border-top: 1px solid var(--border-subtle);
}
.nav-mobile.open { display: block; }
.nav-mobile ul { list-style: none; display: flex; flex-direction: column; gap: 1.25rem; margin-bottom: 1.5rem; }
.nav-mobile ul a { font-size: 1rem; font-weight: 600; color: var(--white); }

@media (max-width: 767px) {
  .nav-links, .nav-cta { display: none; }
  .nav-hamburger { display: flex; }
}

/* ═══════════════════════════════════════
   2. HERO
═══════════════════════════════════════ */
#hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 5rem;
  position: relative;
  overflow: hidden;
}
#hero::before {
  content: '';
  position: absolute;
  right: -5%;
  top: 15%;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,168,76,0.18) 0%, rgba(79,195,247,0.08) 50%, transparent 70%);
  animation: pulse-glow 4s ease-in-out infinite;
  pointer-events: none;
}
@keyframes pulse-glow {
  0%, 100% { transform: scale(1); opacity: 0.7; }
  50% { transform: scale(1.12); opacity: 1; }
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--cyan);
  background: rgba(79,195,247,0.08);
  border: 1px solid rgba(79,195,247,0.25);
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 1.25rem;
}
.hero-eyebrow::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--cyan);
  border-radius: 50%;
  animation: blink 1.5s ease-in-out infinite;
}
@keyframes blink { 0%,100% { opacity: 1; } 50% { opacity: 0.3; } }

.hero-h1 { margin-bottom: 1rem; }
.hero-subhead { font-size: 1.15rem; color: var(--muted); margin-bottom: 1.75rem; max-width: 520px; }

.hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-bottom: 2rem;
}
.pill {
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 0.82rem;
  font-weight: 600;
  background: rgba(201,168,76,0.1);
  border: 1.5px solid var(--border);
  color: var(--gold);
  transition: all 0.4s ease;
}
.pill.active {
  background: var(--gold);
  color: #0B1B33;
  border-color: var(--gold);
  box-shadow: 0 0 16px rgba(201,168,76,0.4);
}

.hero-ctas { display: flex; flex-wrap: wrap; gap: 0.85rem; }

.hero-visual { position: relative; display: flex; justify-content: center; align-items: center; }
.hero-mascot { width: 100%; max-width: 440px; position: relative; z-index: 1; }
.hero-mascot img { width: 100%; border-radius: 16px; }

.chat-bubble {
  position: absolute;
  bottom: -20px;
  left: -30px;
  background: #112244;
  border: 1px solid rgba(201,168,76,0.3);
  border-radius: 16px 16px 16px 4px;
  padding: 1rem 1.2rem;
  max-width: 240px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.4);
  z-index: 2;
  animation: float 3s ease-in-out infinite;
}
@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }
.chat-bubble .chat-q { font-size: 0.88rem; font-weight: 500; color: var(--white); margin-bottom: 0.4rem; }
.chat-bubble .chat-a {
  font-size: 0.78rem;
  color: var(--cyan);
  background: rgba(79,195,247,0.1);
  padding: 4px 10px;
  border-radius: 8px;
  display: inline-block;
}

@media (max-width: 767px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-visual { margin-top: 2rem; }
  .chat-bubble { left: 0; bottom: -30px; }
  #hero::before { width: 300px; height: 300px; right: -20%; top: 5%; }
}

/* ═══════════════════════════════════════
   3. PROBLEMA
═══════════════════════════════════════ */
#problema { background: var(--navy-mid); }
.problema-stat {
  text-align: center;
  margin-bottom: 3rem;
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}
.problema-stat strong { color: var(--gold); }

.cards-grid-4 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}
@media (max-width: 639px) { .cards-grid-4 { grid-template-columns: 1fr; } }
@media (min-width: 1024px) { .cards-grid-4 { grid-template-columns: repeat(4, 1fr); } }

.problem-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border-subtle);
  border-radius: 14px;
  padding: 1.75rem 1.5rem;
  transition: border-color 0.3s, transform 0.3s;
}
.problem-card:hover { border-color: var(--border); transform: translateY(-3px); }
.problem-card .card-icon {
  font-size: 1.75rem;
  margin-bottom: 0.75rem;
}
.problem-card h3 { margin-bottom: 0.5rem; font-size: 1rem; }
.problem-card p { font-size: 0.9rem; }

.closing-line {
  text-align: center;
  margin-top: 2.5rem;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--gold);
}

/* ═══════════════════════════════════════
   4. BUD FEATURES
═══════════════════════════════════════ */
#bud { background: var(--navy); }

.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
@media (max-width: 639px) { .features-grid { grid-template-columns: 1fr; } }

.feature-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border-subtle);
  border-radius: 16px;
  padding: 2rem 1.75rem;
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
}
.feature-card:hover {
  border-color: var(--border);
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}
.feature-icon {
  width: 48px; height: 48px;
  background: rgba(201,168,76,0.1);
  border: 1px solid var(--border);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.1rem;
}
.feature-icon svg { width: 22px; height: 22px; stroke: var(--gold); fill: none; stroke-width: 1.8; }
.feature-card h3 { margin-bottom: 0.5rem; }
.feature-card p { font-size: 0.92rem; }

/* ═══════════════════════════════════════
   5. WIDGET DEMO
═══════════════════════════════════════ */
#widget { background: var(--navy-mid); }

.widget-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
}
@media (max-width: 767px) { .widget-inner { grid-template-columns: 1fr; } }

.widget-bullets { list-style: none; display: flex; flex-direction: column; gap: 0.9rem; margin-top: 1.5rem; }
.widget-bullets li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.95rem;
  color: var(--muted);
}
.widget-bullets li::before {
  content: '✓';
  color: var(--gold);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

.widget-visual { position: relative; }
.widget-img-wrap {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 24px 60px rgba(0,0,0,0.5);
}
.widget-img-wrap img { width: 100%; display: block; }
.hotel-bg-img {
  position: absolute;
  bottom: -30px;
  right: -30px;
  width: 55%;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border-subtle);
  box-shadow: 0 12px 30px rgba(0,0,0,0.5);
  z-index: -1;
}
.hotel-bg-img img { width: 100%; }

/* ═══════════════════════════════════════
   6. RESULTADOS
═══════════════════════════════════════ */
#resultados { background: var(--navy); }

.results-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}
@media (min-width: 768px) { .results-grid { grid-template-columns: repeat(3, 1fr); } }

.result-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border-subtle);
  border-radius: 14px;
  padding: 1.75rem 1.5rem;
  transition: border-color 0.3s, transform 0.3s;
}
.result-card:hover { border-color: var(--border); transform: translateY(-3px); }
.result-num {
  font-size: 2rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.5rem;
}
.result-card h3 { margin-bottom: 0.4rem; font-size: 1rem; }
.result-card p { font-size: 0.88rem; }

/* ═══════════════════════════════════════
   7. DASHBOARD
═══════════════════════════════════════ */
#panel { background: var(--navy-mid); }

.dashboard-img {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 0 60px rgba(201,168,76,0.12), 0 24px 60px rgba(0,0,0,0.5);
  margin-bottom: 3.5rem;
}
.dashboard-img img { width: 100%; }

.dash-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
@media (min-width: 768px) { .dash-features { grid-template-columns: repeat(3, 1fr); } }

.dash-feat {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.dash-feat-icon {
  width: 38px; height: 38px;
  background: rgba(201,168,76,0.1);
  border: 1px solid var(--border);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.dash-feat-icon svg { width: 18px; height: 18px; stroke: var(--gold); fill: none; stroke-width: 1.8; }
.dash-feat h3 { font-size: 0.95rem; margin-bottom: 0.25rem; }
.dash-feat p { font-size: 0.85rem; }

/* ═══════════════════════════════════════
   8. IMPLEMENTACIÓN
═══════════════════════════════════════ */
#implementacion { background: var(--navy); }

.timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  position: relative;
}
@media (max-width: 767px) { .timeline { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 479px) { .timeline { grid-template-columns: 1fr; } }

@media (min-width: 768px) {
  .timeline::before {
    content: '';
    position: absolute;
    top: 28px;
    left: 10%;
    right: 10%;
    height: 2px;
    background: linear-gradient(to right, var(--gold), var(--cyan));
    opacity: 0.3;
    z-index: 0;
  }
}

.timeline-step {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border-subtle);
  border-radius: 14px;
  padding: 1.75rem 1.5rem;
  position: relative;
  z-index: 1;
  transition: border-color 0.3s;
}
.timeline-step:hover { border-color: var(--border); }
.step-num {
  font-size: 2rem;
  font-weight: 800;
  color: var(--gold);
  opacity: 0.3;
  line-height: 1;
  margin-bottom: 0.75rem;
}
.timeline-step h3 { margin-bottom: 0.5rem; color: var(--white); }
.timeline-step p { font-size: 0.88rem; }

/* ═══════════════════════════════════════
   9. PRECIOS
═══════════════════════════════════════ */
#precios { background: var(--navy-mid); }

.currency-toggle {
  display: flex;
  gap: 0.5rem;
  justify-content: center;
  margin-bottom: 2.5rem;
}
.currency-btn {
  padding: 7px 20px;
  border-radius: 8px;
  font-size: 0.85rem;
  font-weight: 700;
  border: 1.5px solid var(--border);
  background: transparent;
  color: var(--muted);
  transition: all 0.2s;
}
.currency-btn.active {
  background: var(--gold);
  border-color: var(--gold);
  color: #0B1B33;
}
.currency-btn:hover:not(.active) { border-color: var(--gold); color: var(--gold); }

.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.75rem;
  max-width: 860px;
  margin: 0 auto;
}
@media (max-width: 639px) { .pricing-grid { grid-template-columns: 1fr; } }

.pricing-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border-subtle);
  border-radius: 20px;
  padding: 2.25rem 2rem;
  position: relative;
  transition: transform 0.3s;
}
.pricing-card:hover { transform: translateY(-4px); }
.pricing-card.featured {
  border-color: var(--gold);
  background: rgba(201,168,76,0.04);
  box-shadow: 0 0 40px rgba(201,168,76,0.1);
}

.popular-badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: #0B1B33;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 20px;
  white-space: nowrap;
}

.plan-name { font-size: 1rem; font-weight: 700; color: var(--muted); margin-bottom: 0.75rem; }
.plan-price {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
  margin-bottom: 0.25rem;
}
.plan-price span { font-size: 1rem; font-weight: 500; color: var(--muted); }
.plan-sub { font-size: 0.85rem; color: var(--muted); margin-bottom: 1.5rem; }
.plan-features { list-style: none; display: flex; flex-direction: column; gap: 0.7rem; margin-bottom: 2rem; }
.plan-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.9rem;
  color: var(--muted);
}
.plan-features li::before { content: '✓'; color: var(--gold); font-weight: 700; flex-shrink: 0; }

.plan-enterprise .plan-price { font-size: 1.6rem; }

.pricing-footnote {
  text-align: center;
  margin-top: 1.5rem;
  font-size: 0.8rem;
  color: var(--muted);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* ═══════════════════════════════════════
   10. COMPARATIVA
═══════════════════════════════════════ */
#vs { background: var(--navy); }

.table-wrap { overflow-x: auto; border-radius: 16px; border: 1px solid var(--border-subtle); }
table {
  width: 100%;
  border-collapse: collapse;
  min-width: 540px;
}
thead tr { background: rgba(201,168,76,0.07); }
thead th {
  padding: 1rem 1.25rem;
  text-align: left;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  border-bottom: 1px solid var(--border-subtle);
}
thead th:nth-child(2) { color: var(--gold); }
tbody tr:not(:last-child) td { border-bottom: 1px solid var(--border-subtle); }
tbody tr:hover td { background: rgba(255,255,255,0.02); }
td {
  padding: 1rem 1.25rem;
  font-size: 0.92rem;
  color: var(--muted);
}
td:first-child { color: var(--white); font-weight: 600; }
td:nth-child(2) { color: var(--white); font-weight: 500; }
td:last-child { color: var(--gold); font-weight: 600; }

.vs-closing {
  text-align: center;
  margin-top: 2rem;
  font-size: 1rem;
  color: var(--muted);
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
}

/* ═══════════════════════════════════════
   11. QUIÉNES SOMOS
═══════════════════════════════════════ */
#quienes { background: var(--navy-mid); }

.stats-row {
  display: flex;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
  margin-bottom: 3.5rem;
}
.stat-item { text-align: center; }
.stat-num {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--gold);
}
.stat-label { font-size: 0.85rem; color: var(--muted); }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
}
@media (max-width: 639px) { .about-grid { grid-template-columns: 1fr; } }

.about-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border-subtle);
  border-radius: 16px;
  padding: 2rem;
}
.about-card h3 {
  color: var(--gold);
  font-size: 1.05rem;
  margin-bottom: 0.25rem;
}
.about-card .about-sub {
  font-size: 0.82rem;
  color: var(--cyan);
  margin-bottom: 0.75rem;
}
.about-card p { font-size: 0.92rem; }

.about-tagline {
  text-align: center;
  margin-top: 2.5rem;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
}
.about-tagline span { color: var(--gold); }

/* ═══════════════════════════════════════
   12. ADD-ONS
═══════════════════════════════════════ */
#addons { background: var(--navy); }

.addons-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}
.addon-pill {
  padding: 10px 22px;
  border-radius: 30px;
  font-size: 0.9rem;
  font-weight: 600;
  background: rgba(201,168,76,0.07);
  border: 1.5px solid var(--border);
  color: var(--gold);
  cursor: default;
  transition: all 0.2s;
}
.addon-pill:hover {
  background: rgba(201,168,76,0.15);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(201,168,76,0.15);
}

/* ═══════════════════════════════════════
   13. CONTACTO
═══════════════════════════════════════ */
#contacto {
  background: radial-gradient(ellipse at center, rgba(201,168,76,0.08) 0%, transparent 70%), var(--navy-mid);
  text-align: center;
}
#contacto h2 { margin-bottom: 1rem; }
#contacto > .container > p { max-width: 580px; margin: 0 auto 2rem; font-size: 1.05rem; }
.contact-info {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-top: 2rem;
  font-size: 0.9rem;
  color: var(--muted);
}
.contact-info a:hover { color: var(--gold); }
.contact-divider { color: var(--border); }

/* ═══════════════════════════════════════
   14. FOOTER
═══════════════════════════════════════ */
footer {
  background: #070F1E;
  padding: 3rem 0 2rem;
  border-top: 1px solid var(--border-subtle);
}
.footer-top {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 2rem;
  margin-bottom: 2rem;
}
.footer-brand .footer-logo {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--gold);
  margin-bottom: 0.4rem;
}
.footer-brand p { font-size: 0.88rem; }

.footer-addresses {
  display: flex;
  gap: 3rem;
  flex-wrap: wrap;
}
.footer-addr h4 { font-size: 0.85rem; font-weight: 700; color: var(--white); margin-bottom: 0.5rem; }
.footer-addr p { font-size: 0.82rem; line-height: 1.7; }

.footer-bottom {
  border-top: 1px solid var(--border-subtle);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem;
}
.footer-bottom p { font-size: 0.8rem; }
.back-to-top {
  font-size: 0.85rem;
  color: var(--gold);
  font-weight: 600;
  transition: opacity 0.2s;
}
.back-to-top:hover { opacity: 0.75; }

/* ═══════════════════════════════════════
   FORMULARIO DE CONTACTO
═══════════════════════════════════════ */
.contact-form-wrap {
  max-width: 620px;
  margin: 2rem auto 0;
  text-align: left;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 1.25rem;
}
@media (max-width: 639px) {
  .form-row { grid-template-columns: 1fr; }
}

.form-group {
  display: flex;
  flex-direction: column;
  margin-bottom: 1.1rem;
}

.form-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.4rem;
}
.form-label .required { color: var(--gold); margin-left: 2px; }

.form-control {
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  font-size: 0.95rem;
  width: 100%;
  padding: 0.65rem 0.9rem;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border-subtle);
  border-radius: 8px;
  color: var(--white);
  transition: border-color 0.2s, box-shadow 0.2s;
}
.form-control::placeholder { color: var(--muted); }
.form-control:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,168,76,0.15);
}
.form-control.is-invalid { border-color: #d9534f; }
.form-control.is-invalid:focus { box-shadow: 0 0 0 3px rgba(217,83,79,0.15); }

.form-control.is-invalid + .invalid-feedback { display: block; }
.invalid-feedback {
  display: none;
  font-size: 0.8rem;
  color: #f28b82;
  margin-top: 0.3rem;
}

select.form-control {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%238BA0B5' d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.85rem center;
  padding-right: 2.2rem;
  cursor: pointer;
}
select.form-control option {
  background: #0E2040;
  color: #F0F4F8;
}

textarea.form-control {
  resize: vertical;
  min-height: 7rem;
}

.form-error {
  margin-top: 0.75rem;
  padding: 0.6rem 0.9rem;
  background: rgba(217,83,79,0.1);
  border: 1px solid rgba(217,83,79,0.3);
  border-radius: 6px;
  font-size: 0.85rem;
  color: #f28b82;
}

.form-success {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.5rem;
  padding: 2rem 1rem;
}
.form-success__icon {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background: rgba(201,168,76,0.15);
  border: 2px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--gold);
  margin-bottom: 0.5rem;
}
.form-success__title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
}
.form-success__subtitle { font-size: 0.95rem; }

.form-privacy {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.4);
  margin-top: 0.85rem;
  text-align: center;
}
.form-privacy a { color: var(--gold); text-decoration: underline; }

/* Spinner */
.spinner {
  display: inline-block;
  width: 1rem;
  height: 1rem;
  border: 2px solid rgba(11,27,51,0.3);
  border-top-color: #0B1B33;
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
  vertical-align: middle;
  margin-right: 0.5rem;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* Botón submit — variante bloque (reutiliza .btn-primary del tema) */
#btnContactSubmit {
  width: 100%;
  padding: 0.85rem 1.75rem;
  border-radius: 8px;
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  background: var(--gold);
  color: #0B1B33;
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
}
#btnContactSubmit:hover:not(:disabled) {
  background: var(--gold-light);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(201,168,76,0.35);
}
#btnContactSubmit:disabled { opacity: 0.7; cursor: not-allowed; }

.d-none { display: none !important; }
