/* ============================================
   HOLA CORAZÓN! — Estilos globales
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400;1,500&family=DM+Sans:opsz,wght@9..40,300;9..40,400;9..40,500&display=swap');

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

:root {
  --rojo:        #B71C1C;
  --rojo-medio:  #D32F2F;
  --rojo-suave:  #E57373;
  --rojo-palido: #FDECEA;
  --crema:       #F7F3EF;
  --beige:       #E8E0D5;
  --beige-med:   #D9CFC4;
  --texto:       #2C2422;
  --texto-sub:   #6B5C57;
  --blanco:      #FFFFFF;
  --sombra:      0 2px 24px rgba(44,36,34,0.07);
}

html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: 'DM Sans', sans-serif; background: var(--crema); color: var(--texto); overflow-x: hidden; -webkit-font-smoothing: antialiased; }
img  { max-width: 100%; display: block; }
a    { color: inherit; text-decoration: none; }

/* ── TIPOGRAFÍA ── */
.serif { font-family: 'Cormorant Garamond', serif; }
h1,h2,h3,h4 { font-family: 'Cormorant Garamond', serif; font-weight: 300; line-height: 1.15; }

.eyebrow {
  font-size: 10px; letter-spacing: 2.8px; text-transform: uppercase;
  color: var(--rojo-suave); font-weight: 500; display: block; margin-bottom: 1rem;
}
.sep { width: 44px; height: 2px; background: var(--rojo); margin-bottom: 1.5rem; }
.sep-light { width: 44px; height: 2px; background: var(--rojo-suave); margin-bottom: 1.5rem; }

.section-title      { font-size: clamp(30px,4vw,44px); color: var(--texto); margin-bottom: .4rem; }
.section-title em   { font-style: italic; color: var(--rojo); }
.section-subtitle   { font-size: 15px; color: var(--texto-sub); line-height: 1.75; max-width: 560px; font-weight: 300; margin-bottom: 3rem; }

/* ── BOTONES ── */
.btn { display: inline-block; padding: 13px 30px; border-radius: 50px; font-size: 14px; font-weight: 500; transition: all .2s; cursor: pointer; }
.btn-rojo  { background: var(--rojo);  color: #fff; }
.btn-rojo:hover  { background: var(--rojo-medio); transform: translateY(-1px); }
.btn-ghost { background: transparent; color: var(--rojo); border: 1.5px solid var(--rojo); }
.btn-ghost:hover { background: var(--rojo-palido); }
.btn-blanco { background: #fff; color: var(--texto); }
.btn-blanco:hover { background: var(--crema); transform: translateY(-1px); }
.btn-wsp   { background: #25D366; color: #fff; }
.btn-wsp:hover { opacity: .9; }

.link-arrow { font-size: 14px; color: var(--rojo); font-weight: 500; display: inline-flex; align-items: center; gap: 5px; transition: gap .2s; }
.link-arrow:hover { gap: 9px; }

/* ── NAVEGACIÓN ── */
.nav {
  background: var(--blanco); height: 72px;
  padding: 0 4rem; display: flex; align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--beige);
  position: sticky; top: 0; z-index: 200;
}
.nav-logo { display: flex; flex-direction: column; line-height: 1; }
.nav-logo-name { font-family: 'Cormorant Garamond', serif; font-size: 22px; font-weight: 600; color: var(--rojo); letter-spacing: -.3px; }
.nav-logo-sub  { font-size: 9.5px; color: var(--texto-sub); letter-spacing: 1.8px; text-transform: uppercase; margin-top: 3px; }
.nav-links { display: flex; gap: 2.2rem; list-style: none; }
.nav-links a { font-size: 13px; color: var(--texto-sub); letter-spacing: .2px; transition: color .2s; padding: 4px 0; border-bottom: 1.5px solid transparent; }
.nav-links a:hover, .nav-links a.active { color: var(--rojo); border-bottom-color: var(--rojo-suave); }
.nav-cta { background: var(--rojo); color: #fff; padding: 9px 22px; border-radius: 50px; font-size: 13px; font-weight: 500; transition: background .2s; }
.nav-cta:hover { background: var(--rojo-medio); }
.nav-burger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
.nav-burger span { width: 24px; height: 1.5px; background: var(--texto); display: block; transition: all .3s; border-radius: 2px; }

/* Menú móvil */
.nav-mobile {
  display: none; flex-direction: column;
  background: var(--blanco); border-bottom: 1px solid var(--beige);
  padding: 0; max-height: 0; overflow: hidden;
  transition: max-height .35s ease, padding .3s;
}
.nav-mobile.open { display: flex; max-height: 400px; padding: 1rem 1.5rem 1.5rem; }
.nav-mobile a { font-size: 15px; color: var(--texto-sub); padding: .7rem 0; border-bottom: 1px solid var(--beige); }
.nav-mobile a:last-child { border: none; }
.nav-mobile .nav-cta-m { margin-top: .8rem; background: var(--rojo); color: #fff; text-align: center; padding: 13px; border-radius: 50px; font-weight: 500; }

/* ── WHATSAPP FLOTANTE ── */
.wsp-float {
  position: fixed; bottom: 2rem; right: 2rem;
  width: 56px; height: 56px; border-radius: 50%;
  background: #25D366; display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,.35); z-index: 999;
  transition: transform .2s;
}
.wsp-float:hover { transform: scale(1.1); }
.wsp-float svg { width: 28px; height: 28px; fill: #fff; }

/* ── FOOTER ── */
.footer {
  background: var(--texto); padding: 3.5rem 4rem;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 1.5rem;
}
.footer-logo-name { font-family: 'Cormorant Garamond', serif; font-size: 20px; color: var(--crema); }
.footer-logo-sub  { font-size: 10px; color: rgba(247,243,239,.35); letter-spacing: 1.2px; text-transform: uppercase; margin-top: 4px; }
.footer-links { display: flex; gap: 1.8rem; flex-wrap: wrap; }
.footer-links a { font-size: 12px; color: rgba(247,243,239,.5); transition: color .2s; }
.footer-links a:hover { color: var(--crema); }
.footer-legal { font-size: 11px; color: rgba(247,243,239,.25); }

/* ── UTILIDADES ── */
.section  { padding: 5rem 4rem; }
.section-sm { padding: 3.5rem 4rem; }
.bg-blanco { background: var(--blanco); }
.bg-crema  { background: var(--crema); }
.bg-beige  { background: var(--beige); }
.bg-rojo-palido { background: var(--rojo-palido); }
.bg-oscuro { background: var(--texto); }
.text-center { text-align: center; }

/* ── PAGE HERO (páginas internas) ── */
.page-hero {
  background: var(--blanco); padding: 5rem 4rem 4rem;
  border-bottom: 1px solid var(--beige);
}
.page-hero h1 { font-size: clamp(36px,5vw,58px); margin-bottom: .8rem; }
.page-hero p  { font-size: 16px; color: var(--texto-sub); max-width: 540px; line-height: 1.75; font-weight: 300; }

/* ── TARJETAS SERVICIOS ── */
.card {
  background: var(--blanco); border: 1px solid var(--beige);
  border-radius: 16px; padding: 2rem;
  transition: all .25s;
}
.card:hover { border-color: var(--rojo-suave); transform: translateY(-3px); box-shadow: var(--sombra); }
.card-num  { font-family: 'Cormorant Garamond', serif; font-size: 34px; color: rgba(183,28,28,.14); font-weight: 300; margin-bottom: .4rem; }
.card-name { font-family: 'Cormorant Garamond', serif; font-size: 20px; font-weight: 500; color: var(--texto); margin-bottom: .7rem; line-height: 1.3; }
.card-desc { font-size: 13px; color: var(--texto-sub); line-height: 1.75; font-weight: 300; margin-bottom: 1.5rem; }

/* ── PLAN CARDS ── */
.plan-card {
  border: 1px solid rgba(255,255,255,.1); border-radius: 16px;
  padding: 2rem; transition: all .25s;
}
.plan-card.featured { border-color: var(--rojo); background: rgba(183,28,28,.07); }
.plan-eyebrow { font-size: 9.5px; letter-spacing: 2.2px; text-transform: uppercase; color: var(--rojo-suave); margin-bottom: .7rem; }
.plan-name  { font-family: 'Cormorant Garamond', serif; font-size: 27px; color: var(--crema); margin-bottom: .4rem; }
.plan-for   { font-size: 12px; color: rgba(247,243,239,.45); margin-bottom: 1.4rem; line-height: 1.55; }
.plan-list  { list-style: none; display: flex; flex-direction: column; gap: .55rem; margin-bottom: 1.8rem; }
.plan-list li { font-size: 13px; color: rgba(247,243,239,.7); display: flex; gap: 8px; line-height: 1.5; }
.plan-list li::before { content: '—'; color: var(--rojo-suave); flex-shrink: 0; }
.plan-price { font-size: 12px; color: rgba(247,243,239,.35); margin-bottom: 1.5rem; font-style: italic; }
.plan-btn { display: block; text-align: center; padding: 12px; border-radius: 50px; font-size: 13px; font-weight: 500; border: 1px solid rgba(255,255,255,.18); color: var(--crema); transition: all .2s; }
.plan-btn:hover { border-color: var(--rojo); color: var(--rojo-suave); }
.plan-card.featured .plan-btn { background: var(--rojo); border-color: var(--rojo); color: #fff; }
.plan-card.featured .plan-btn:hover { background: var(--rojo-medio); }

/* ── AVISO LEGAL ── */
.aviso {
  background: rgba(183,28,28,.05); border-left: 3px solid var(--rojo-suave);
  padding: 1rem 1.2rem; border-radius: 0 10px 10px 0;
  font-size: 13px; color: var(--texto-sub); line-height: 1.65;
}
.aviso strong { color: var(--texto); }

/* ── FAQ ── */
.faq-item {
  border: 1px solid var(--beige); border-radius: 12px;
  padding: 1.4rem 1.6rem; cursor: pointer; transition: border-color .2s;
}
.faq-item:hover { border-color: var(--rojo-suave); }
.faq-q { font-size: 14px; font-weight: 500; color: var(--texto); margin-bottom: .5rem; line-height: 1.45; }
.faq-a { font-size: 13px; color: var(--texto-sub); line-height: 1.7; font-weight: 300; }

/* ── CHIPS ── */
.chip { background: rgba(255,255,255,.12); color: rgba(255,255,255,.85); padding: 5px 13px; border-radius: 50px; font-size: 12px; border: 1px solid rgba(255,255,255,.14); }
.chip-rojo { background: var(--rojo-palido); color: var(--rojo); padding: 6px 14px; border-radius: 50px; font-size: 12px; }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .nav { padding: 0 1.5rem; }
  .nav-links, .nav-cta { display: none !important; }
  .nav-burger { display: flex; }

  .section, .section-sm { padding: 3rem 1.5rem; }
  .page-hero { padding: 3rem 1.5rem 2.5rem; }
  .footer { padding: 2.5rem 1.5rem; flex-direction: column; text-align: center; }
  .footer-links { justify-content: center; }
}
