/* ─── VARIABLES KAIROS ─────────────────────────────────────────── */
:root {
  --indigo-noche:   #1A1440;
  --indigo-profundo:#2C1F5E;
  --oro-ambar:      #C9A84C;
  --oro-claro:      #E8C97A;
  --crema:          #F5F0E8;
  --lavanda:        #7B6FA0;
  --blanco:         #FFFFFF;
  --gris-claro:     #F2F2F2;
  --verde:          #1D9E75;
  --rojo:           #D85A30;
}

/* ─── RESET ────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', Arial, sans-serif;
  background: var(--indigo-noche);
  color: var(--crema);
  line-height: 1.7;
}

/* ─── TIPOGRAFÍA ───────────────────────────────────────────────── */
h1, h2, h3 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 400;
  color: var(--crema);
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); line-height: 1.15; }
h2 { font-size: clamp(1.5rem, 3vw, 2.2rem); line-height: 1.2; }
h3 { font-size: 1.2rem; }

p  { font-size: 1rem; color: var(--lavanda); }

.eyebrow {
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--oro-ambar);
  margin-bottom: 1rem;
  display: block;
}

.highlight { color: var(--oro-ambar); }

/* ─── LAYOUT ───────────────────────────────────────────────────── */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

section { padding: 80px 0; }

/* ─── NAV ──────────────────────────────────────────────────────── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: var(--indigo-noche);
  border-bottom: 0.5px solid var(--indigo-profundo);
  padding: 16px 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.3rem;
  color: var(--crema);
  text-decoration: none;
}

.nav-cta {
  background: transparent;
  border: 0.5px solid var(--oro-ambar);
  color: var(--oro-ambar);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  padding: 8px 20px;
  border-radius: 4px;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}

.nav-cta:hover {
  background: var(--oro-ambar);
  color: var(--indigo-noche);
}

/* ─── HERO ─────────────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 24px 80px;
  background: var(--indigo-noche);
}

.hero-content { max-width: 720px; }

.hero h1 { margin-bottom: 1.5rem; }

.hero p {
  font-size: 1.1rem;
  max-width: 520px;
  margin: 0 auto 2.5rem;
}

/* ─── BOTONES ──────────────────────────────────────────────────── */
.btn-primary {
  display: inline-block;
  background: var(--oro-ambar);
  color: var(--indigo-noche);
  font-size: 0.9rem;
  font-weight: 600;
  padding: 14px 36px;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s;
  letter-spacing: 0.03em;
}

.btn-primary:hover { background: var(--oro-claro); }

.btn-secondary {
  display: inline-block;
  background: transparent;
  color: var(--oro-ambar);
  font-size: 0.9rem;
  padding: 14px 36px;
  border-radius: 6px;
  border: 0.5px solid var(--oro-ambar);
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}

.btn-secondary:hover {
  background: var(--oro-ambar);
  color: var(--indigo-noche);
}

.hero-note {
  font-size: 0.75rem;
  color: var(--lavanda);
  margin-top: 12px;
  display: block;
}

/* ─── PROOF BAR ────────────────────────────────────────────────── */
.proof-bar {
  background: #120D30;
  border-top: 0.5px solid var(--indigo-profundo);
  border-bottom: 0.5px solid var(--indigo-profundo);
  padding: 20px 0;
  display: flex;
  justify-content: center;
  gap: 64px;
  flex-wrap: wrap;
}

.proof-item { text-align: center; }

.proof-num {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.5rem;
  color: var(--oro-ambar);
  display: block;
}

.proof-label {
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--lavanda);
}

/* ─── SECCIÓN OSCURA ───────────────────────────────────────────── */
.section-dark  { background: #120D30; }
.section-mid   { background: var(--indigo-noche); }

/* ─── GRID DE PROPUESTAS ───────────────────────────────────────── */
.props-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 16px;
  margin-top: 48px;
}

.prop-card {
  background: var(--indigo-noche);
  border: 0.5px solid var(--indigo-profundo);
  border-radius: 10px;
  padding: 28px 24px;
}

.prop-icon {
  font-size: 1.5rem;
  color: var(--oro-ambar);
  margin-bottom: 16px;
  display: block;
}

.prop-card h3 { color: var(--crema); margin-bottom: 8px; }
.prop-card p  { font-size: 0.9rem; }

/* ─── FORMULARIO ───────────────────────────────────────────────── */
.form-wrap {
  max-width: 480px;
  margin: 0 auto;
  background: var(--indigo-noche);
  border: 0.5px solid var(--indigo-profundo);
  border-radius: 12px;
  padding: 36px;
}

.form-label {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--lavanda);
  margin-bottom: 8px;
}

.form-input {
  width: 100%;
  background: #120D30;
  border: 0.5px solid var(--indigo-profundo);
  border-radius: 6px;
  padding: 12px 16px;
  color: var(--crema);
  font-size: 1rem;
  margin-bottom: 20px;
  outline: none;
  transition: border-color 0.2s;
}

.form-input:focus { border-color: var(--oro-ambar); }

.form-note {
  font-size: 0.75rem;
  color: var(--indigo-profundo);
  text-align: center;
  margin-top: 12px;
}

/* ─── TESTIMONIOS ──────────────────────────────────────────────── */
.testi-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 16px;
  margin-top: 48px;
}

.testi-card {
  background: var(--indigo-noche);
  border: 0.5px solid var(--indigo-profundo);
  border-radius: 10px;
  padding: 24px;
}

.testi-stars { color: var(--oro-ambar); font-size: 0.85rem; margin-bottom: 12px; }
.testi-text  { font-size: 0.9rem; font-style: italic; margin-bottom: 16px; color: #B0A8C8; }
.testi-author strong { color: var(--crema); display: block; font-size: 0.9rem; }
.testi-author span   { color: var(--lavanda); font-size: 0.8rem; }

/* ─── PRICING ──────────────────────────────────────────────────── */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 16px;
  max-width: 640px;
  margin: 48px auto 0;
}

.price-card {
  background: var(--indigo-noche);
  border: 0.5px solid var(--indigo-profundo);
  border-radius: 12px;
  padding: 28px 24px;
  position: relative;
}

.price-card.featured { border: 1.5px solid var(--oro-ambar); }

.price-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--oro-ambar);
  color: var(--indigo-noche);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 4px 16px;
  border-radius: 20px;
  white-space: nowrap;
}

.price-name   { font-size: 0.7rem; letter-spacing: 0.15em; color: var(--lavanda); margin-bottom: 12px; }
.price-amount { font-family: 'Cormorant Garamond', Georgia, serif; font-size: 2.5rem; color: var(--crema); }
.price-period { font-size: 0.85rem; color: var(--lavanda); margin-left: 4px; }
.price-desc   { font-size: 0.85rem; color: var(--lavanda); margin: 12px 0 20px; }

.price-feature {
  font-size: 0.85rem;
  color: #B0A8C8;
  padding: 8px 0;
  border-top: 0.5px solid var(--indigo-profundo);
  display: flex;
  align-items: center;
  gap: 8px;
}

.price-check { color: var(--oro-ambar); }

.price-btn {
  width: 100%;
  margin-top: 20px;
  padding: 12px;
  border-radius: 8px;
  font-size: 0.9rem;
  cursor: pointer;
  border: 0.5px solid var(--oro-ambar);
  background: transparent;
  color: var(--oro-ambar);
  transition: background 0.2s, color 0.2s;
}

.price-btn:hover        { background: var(--oro-ambar); color: var(--indigo-noche); }
.price-btn.featured-btn { background: var(--oro-ambar); color: var(--indigo-noche); border: none; font-weight: 600; }
.price-btn.featured-btn:hover { background: var(--oro-claro); }

/* ─── FAQ ──────────────────────────────────────────────────────── */
.faq-list { max-width: 640px; margin: 48px auto 0; }

.faq-item { border-bottom: 0.5px solid var(--indigo-profundo); padding: 20px 0; }
.faq-q    { font-size: 1rem; font-weight: 500; color: var(--crema); margin-bottom: 10px; }
.faq-a    { font-size: 0.9rem; color: var(--lavanda); line-height: 1.7; }

/* ─── FOOTER ───────────────────────────────────────────────────── */
footer {
  background: #120D30;
  border-top: 0.5px solid var(--indigo-profundo);
  padding: 48px 32px 24px;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 32px;
}

.footer-tagline { font-size: 0.8rem; color: var(--lavanda); margin-top: 6px; }

.footer-links { display: flex; gap: 24px; flex-wrap: wrap; }
.footer-link  { font-size: 0.8rem; color: var(--lavanda); cursor: pointer; text-decoration: none; }
.footer-link:hover { color: var(--oro-ambar); }

.footer-bottom {
  border-top: 0.5px solid var(--indigo-profundo);
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
}

.footer-copy { font-size: 0.75rem; color: var(--indigo-profundo); }

/* ─── UTILIDADES ───────────────────────────────────────────────── */
.text-center { text-align: center; }
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }

/* ─── RESPONSIVE ───────────────────────────────────────────────── */
@media (max-width: 768px) {
  nav { padding: 14px 20px; }
  .proof-bar { gap: 32px; }
  .form-wrap { padding: 24px 20px; }
  .footer-top { flex-direction: column; }
}