/* ============================================================
   MAGIC PLANS WITH MARTU — Landing Page Styles
   Brand colors (manual):
     #002A3D  azul oscuro (deep)
     #008AB8  celeste (sky)
     #FF9A00  naranja (sun)
     #F3F6F7  blanco hueso (paper)
   ============================================================ */

:root {
  --deep: #002A3D;
  --sky: #008AB8;
  --sky-soft: #B8DDEA;
  --sky-lighter: #E5F1F6;
  --sun: #FF9A00;
  --sun-soft: #FFD9A8;
  --paper: #F3F6F7;
  --paper-warm: #FAF7F2;
  --ink: #002A3D;
  --ink-soft: #4A6271;

  --font-display: 'Cormorant Garamond', 'Playfair Display', Georgia, serif;
  --font-body: 'Montserrat', system-ui, -apple-system, sans-serif;

  --container: 1240px;
  --radius: 18px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
a { color: inherit; text-decoration: none; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 28px;
}

/* ---------- Typography ---------- */
.eyebrow {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--sky);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--sky);
}

h1, h2, h3 { font-family: var(--font-display); font-weight: 500; line-height: 1.05; letter-spacing: -0.01em; }
h2 { font-size: clamp(38px, 5vw, 68px); }
h3 { font-size: clamp(22px, 2.4vw, 30px); }
.italic { font-style: italic; font-weight: 400; }

p { font-size: 16px; color: var(--ink-soft); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 28px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.03em;
  transition: transform .25s ease, box-shadow .25s ease, background .2s ease;
}
.btn-primary {
  background: var(--sun);
  color: var(--deep);
  box-shadow: 0 10px 30px -8px rgba(255, 154, 0, 0.6);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 14px 36px -8px rgba(255, 154, 0, 0.7); }
.btn-secondary {
  background: transparent;
  color: var(--deep);
  border: 1.5px solid var(--deep);
}
.btn-secondary:hover { background: var(--deep); color: var(--paper); }
.btn-ghost {
  background: rgba(255,255,255,0.15);
  color: white;
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.3);
}
.btn-ghost:hover { background: rgba(255,255,255,0.25); }

/* Sparkle decoration */
.sparkle { display: inline-block; color: var(--sun); }

/* Section spacing */
section { padding: 110px 0; position: relative; }
@media (max-width: 720px) { section { padding: 72px 0; } }

/* Decorative star */
.star {
  position: absolute;
  width: 14px; height: 14px;
  background: var(--sun);
  clip-path: polygon(50% 0%, 60% 35%, 100% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 0% 35%, 40% 35%);
  opacity: 0.6;
}
