:root {
  /* Paleta oficial EINARY, muestreada del logo */
  --color-primario: #f1959d;   /* Coral pastel: decoracion y fondos, no texto */
  --color-secundario: #96b29e; /* Sage pastel: decoracion y fondos, no texto */
  --ink: #4e362b;              /* Tinta / texto (AA 10.5:1 sobre papel) */
  --ink-soft: #8a7265;
  --cream: #fcf8f1;            /* Papel / fondo */
  --cream-deep: #f5ecdf;
  --white: #ffffff;
  --pastel-teal: #8faeb4;
  --pastel-yellow: #f4cb7a;    /* Gold pastel */
  --pastel-lilac: #bfa6c2;     /* Lila pastel */
  --pastel-blue: #a3a6c6;      /* Periwinkle pastel */
  --caramelo: #e3a97a;
  --terracota: #c67e6e;        /* Color de puntada (bordes cosidos) */
  --rubor: #f2afa4;
  /* UI derivada: mismo tono, mas profundo (texto, links y botones) */
  --accion: #c94c59;
  --link: #4a7e7b;
  --acento: #7b6893;
  --gold-texto: #8a6a1f;
  --exito: #25654f;
  --whatsapp: #25d366;
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --shadow-soft: 0 10px 30px rgba(78, 54, 43, 0.10);
  --shadow-pop: 0 16px 40px rgba(78, 54, 43, 0.16);
  --font-display: 'Fraunces', Georgia, serif;
  --font-body: 'Nunito', sans-serif;
}

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

[hidden] {
  display: none !important;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background-color: var(--cream);
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  line-height: 1.15;
  margin: 0;
}

p {
  margin: 0;
}

img {
  max-width: 100%;
  display: block;
}

button {
  font-family: inherit;
  cursor: pointer;
}

input, select, textarea {
  font-family: inherit;
  color: inherit;
}

a {
  color: inherit;
  text-decoration: none;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 28px;
  border: none;
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: 0.98rem;
  font-weight: 800;
  letter-spacing: 0.01em;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn:active {
  transform: translateY(0);
}

.btn-primary {
  background: var(--ink);
  color: var(--cream);
  box-shadow: 0 8px 20px rgba(78, 54, 43, 0.28);
}

.btn-primary:hover {
  background: #3d2a21;
}

.btn-secondary {
  background: var(--link);
  color: var(--white);
  box-shadow: 0 8px 20px rgba(74, 126, 123, 0.35);
}

.btn-whatsapp {
  background: var(--whatsapp);
  color: var(--white);
  box-shadow: 0 8px 20px rgba(37, 211, 102, 0.35);
}

.btn-whatsapp svg {
  width: 20px;
  height: 20px;
}

.btn-ghost {
  background: transparent;
  color: var(--ink-soft);
  border: 2px solid rgba(78, 54, 43, 0.18);
}

.btn-block {
  width: 100%;
}

.btn-danger {
  background: var(--accion);
  color: var(--white);
}
