/* ============================================================
   Alicia Arouesty — Estratega en Tranquilidad Integral
   Hoja de estilos base (landing + sitio) · Cloudflare Pages
   Identidad: Azul Marino + Verde + Dorado · Montserrat
   ============================================================ */

:root {
  --navy: #0d1b3d;       /* estructura, profesionalismo financiero */
  --green: #39846d;      /* sanación, paz emocional, tranquilidad */
  --gold: #b89a4a;       /* abundancia, patrimonio (oro viejo) */
  --white: #ffffff;
  --paper: #f5f6f9;      /* fondo alterno suave */
  --ink: #26324d;        /* cuerpo de texto */
  --navy-hover: #16264f;
  --gold-soft: rgba(184,154,74,.14);

  --font-display: 'Montserrat', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  --font-body: 'Montserrat', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;

  --maxw: 1120px;
  --radius: 14px;
  --shadow: 0 12px 40px rgba(13, 27, 61, 0.12);
  --shadow-sm: 0 4px 16px rgba(13, 27, 61, 0.08);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--white);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 { font-family: var(--font-display); color: var(--navy); line-height: 1.18; font-weight: 700; margin: 0 0 .5em; letter-spacing: -0.01em; }
h1 { font-size: clamp(2rem, 5vw, 3.1rem); font-weight: 800; }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.3rem); }
h3 { font-size: 1.25rem; }
p { margin: 0 0 1rem; }
a { color: var(--green); }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.section { padding: 72px 0; }
.center { text-align: center; }
.muted { color: #5a6580; }
.eyebrow {
  font-family: var(--font-body); font-weight: 600; text-transform: uppercase;
  letter-spacing: .22em; font-size: .78rem; color: var(--green); margin-bottom: 1rem;
}

/* Botones */
.btn {
  display: inline-block; border: 0; cursor: pointer;
  background: var(--navy); color: #fff;
  font-family: var(--font-body); font-weight: 700; font-size: 1.02rem;
  padding: 16px 34px; border-radius: 999px; text-decoration: none;
  transition: transform .15s ease, background .2s ease, color .2s ease;
  box-shadow: var(--shadow-sm); letter-spacing: .01em;
}
.btn:hover { background: var(--gold); color: var(--navy); transform: translateY(-2px); }
.btn--ghost { background: transparent; color: var(--navy); border: 2px solid var(--gold); box-shadow: none; }
.btn--ghost:hover { background: var(--gold); color: var(--navy); }
.btn--block { width: 100%; text-align: center; }

/* Header */
.topbar { padding: 20px 0; border-bottom: 1px solid var(--gold-soft); }
.topbar .container { display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.brand { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.brand img { height: 52px; width: auto; }
.brand .brand-name { font-family: var(--font-display); color: var(--navy); font-size: 1.1rem; font-weight: 800; line-height: 1; letter-spacing: .02em; text-transform: uppercase; }
.brand .brand-role { font-size: .62rem; letter-spacing: .16em; text-transform: uppercase; color: var(--green); font-weight: 600; }

/* Hero */
.hero { background: linear-gradient(180deg, #ffffff 0%, #eef1f6 100%); }
.hero-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 48px; align-items: center; }
.hero p.lead { font-size: 1.18rem; color: var(--ink); }

/* Tarjeta de formulario */
.card {
  background: #fff; border-radius: var(--radius); box-shadow: var(--shadow);
  padding: 34px; border: 1px solid rgba(13,27,61,.08);
}
.card h3 { margin-top: 0; }
.form-group { margin-bottom: 16px; text-align: left; }
label { display: block; font-size: .85rem; font-weight: 600; color: var(--navy); margin-bottom: 6px; }
input[type=text], input[type=email] {
  width: 100%; padding: 14px 16px; font-family: var(--font-body); font-size: 1rem;
  border: 1.5px solid #dde1ea; border-radius: 10px; background: #fbfbfd;
  color: var(--ink); transition: border-color .2s ease;
}
input:focus { outline: none; border-color: var(--gold); background: #fff; }
.form-note { font-size: .78rem; color: #5a6580; margin-top: 12px; }

/* Listas */
.checklist { list-style: none; padding: 0; margin: 0; display: grid; gap: 14px; }
.checklist li { position: relative; padding-left: 40px; }
.checklist li::before {
  content: "✦"; position: absolute; left: 8px; top: 0; color: var(--gold); font-size: 1rem;
}
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }

.feature {
  background: #fff; border-radius: var(--radius); padding: 26px; box-shadow: var(--shadow-sm);
  border: 1px solid rgba(13,27,61,.06); border-top: 3px solid var(--gold);
}
.feature .num { font-family: var(--font-display); font-size: 1.6rem; color: var(--gold); font-weight: 800; }

/* Bloque verde / acento */
.band { background: var(--green); color: #eaf3ef; }
.band h2, .band h3 { color: #fff; }
.band .muted { color: rgba(255,255,255,.85); }
.band .eyebrow { color: rgba(255,255,255,.85); }

/* Sobre Alicia (navy) */
.about { background: var(--navy); color: #d7deec; }
.about h2 { color: #fff; }
.about .muted { color: rgba(215,222,236,.85); }
.about .eyebrow { color: var(--gold); }

/* Footer */
.footer { background: #0a1533; color: rgba(215,222,236,.72); font-size: .85rem; padding: 40px 0; }
.footer a { color: var(--gold); }
.disclaimer { font-size: .74rem; color: rgba(215,222,236,.55); margin-top: 18px; line-height: 1.5; }

/* Gracias */
.hero-check { font-size: 3rem; color: var(--gold); }

/* Lockup de logo (mark + texto con fuentes de la página) */
.logo-lockup { display: inline-flex; flex-direction: column; align-items: center; gap: 14px; margin-bottom: 1.4rem; }
.logo-lockup .lockup-mark { height: 132px; width: auto; }
.logo-lockup .lockup-text { display: flex; flex-direction: column; align-items: center; line-height: 1.1; }
.logo-lockup .lockup-name {
  font-family: var(--font-display); font-weight: 800; text-transform: uppercase;
  font-size: clamp(1.7rem, 4.5vw, 2.6rem); color: var(--navy); letter-spacing: .04em;
}
.logo-lockup .lockup-role {
  font-family: var(--font-body); font-weight: 500;
  font-size: clamp(.9rem, 2vw, 1.1rem); color: var(--green); margin-top: 4px;
}

@media (max-width: 860px) {
  .hero-grid, .grid-2, .grid-3 { grid-template-columns: 1fr; }
  .section { padding: 52px 0; }
  .brand .brand-role { display: none; }
}


/* Navegación (topbar) */
.nav { display: flex; align-items: center; gap: 24px; }
.nav .navlink { color: var(--navy); text-decoration: none; font-weight: 600; font-size: .95rem; letter-spacing: .01em; }
.nav .navlink:hover { color: var(--green); }
.about .checklist li::before { color: var(--gold); }
.band .btn--ghost { border-color: #fff; color: #fff; }
.band .btn--ghost:hover { background: #fff; color: var(--green); }

@media (max-width: 860px) {
  .nav { gap: 14px; }
  .nav .navlink { display: none; }   /* en móvil se navega por scroll; queda el botón de la guía */
}


/* Logo oficial en el hero (lockup completo) */
.hero-logo { width: 300px; max-width: 72%; height: auto; display: block; margin: 0 auto 1.5rem; }
