/* ============================================================
   SELENE — VARIABLES DE MARCA Y RESET
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&family=Inter:wght@300;400;500;600&display=swap');

:root {
  /* PALETA PRINCIPAL — MORADOS SELENE */
  --p900: #1D0033;
  --p800: #2D0A4E;
  --p700: #4A0E6B;
  --p600: #5B1A8A;
  --p500: #7B2CBF;
  --p400: #9D4EDD;
  --p300: #B875F2;
  --p200: #C77DFF;
  --p100: #E5C3FF;
  --p50:  #F5ECFF;

  /* ACENTOS */
  --gold:      #D4AF37;
  --gold-light:#F0DFA0;
  --white:     #FFFFFF;
  --bg:        #FAF7FF;
  --text:      #1A0A2E;
  --text-dim:  #6B5B7E;
  --shadow:    rgba(45, 10, 78, 0.12);
  --radius:    16px;
  --radius-sm: 10px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
  -webkit-tap-highlight-color: transparent;
}

body {
  font-family: 'Inter', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

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

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

button {
  cursor: pointer;
  font-family: inherit;
  border: none;
  background: none;
}

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

ul { list-style: none; }

/* UTILIDADES */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

.titulo-linea {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  color: var(--p700);
  margin-bottom: 16px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--p200);
  display: flex;
  align-items: center;
  gap: 10px;
}

.titulo-linea::before {
  content: '';
  width: 4px;
  height: 24px;
  background: linear-gradient(180deg, var(--p500), var(--p200));
  border-radius: 2px;
}
