/* ============================================
   PIEL CANELA — Estilos principales
   styles.css
   ============================================ */

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

/* VARIABLES */
:root {
  --cream: #f1e5e9;
  --white: #ffffff;
  --beige: #f0cbda;
  --sand: #ce9db1;
  --terra: #a8607e;
  --gold: #ce9db1;
  --gold-light: #f0cbda;
  --dark: #1a0e14;
  --mid: #5c2d40;
  --text: #2c1420;
  --muted: #8a5a6a;
  --whatsapp: #25D366;
  --shadow: 0 4px 32px rgba(206, 157, 177, 0.15);
  --shadow-hover: 0 8px 48px rgba(206, 157, 177, 0.28);
  --radius: 20px;
  --radius-sm: 12px;
}

/* BASE */
html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Jost', sans-serif;
  background: var(--white);
  color: var(--text);
  line-height: 1.7;
  overflow-x: hidden;
}

/* ============================================
   TIPOGRAFÍA
   ============================================ */

.display {
  font-family: 'Cormorant Garamond', serif;
}

h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 300;
  line-height: 1.15;
  letter-spacing: -0.01em;
}

h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 400;
  line-height: 1.2;
}

h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.3rem, 2.5vw, 1.9rem);
  font-weight: 500;
}

p {
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.8;
}

.eyebrow {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.8rem;
  display: block;
}

/* ============================================
   LAYOUT
   ============================================ */

.container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 48px;
}

section {
  padding: 96px 0;
}

.section-center {
  text-align: center;
  max-width: 620px;
  margin: 0 auto 56px;
}

/* ============================================
   BOTONES
   ============================================ */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 32px;
  border-radius: 50px;
  font-family: 'Jost', sans-serif;
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: all 0.3s ease;
}

.btn-primary {
  background: var(--dark);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(26, 20, 16, 0.2);
}

.btn-primary:hover {
  background: var(--mid);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(26, 20, 16, 0.25);
}

.btn-whatsapp {
  background: var(--whatsapp);
  color: #fff;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
  background: #1db954;
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(37, 211, 102, 0.4);
}

.btn-outline {
  background: transparent;
  color: var(--dark);
  border: 1.5px solid var(--sand);
}

.btn-outline:hover {
  background: var(--dark);
  color: var(--white);
  border-color: var(--dark);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.15);
  color: var(--white);
  border: 1.5px solid rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(8px);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.25);
}

/* ============================================