/* ================================================
   VARIABLES · RESET · BASE  —  TEMA OSCURO
   Agencia Sunsky  ·  css/variables.css
   ------------------------------------------------
   Base negra/oscura con acentos de color vibrantes.
   Tipografía: Montserrat (títulos) + DM Sans (cuerpo).
   Editá este archivo para cambiar colores y fuentes
   en toda la web de una vez.
================================================ */

:root {
  /* ---- Fondos / superficies (oscuros) ---- */
  --bg:          #0B0910;   /* Fondo general (casi negro violáceo) */
  --bg-2:        #110D1A;   /* Variante un poco más clara          */
  --surface:     #15111F;   /* Fondo de cards                      */
  --surface-2:   #1E1830;   /* Superficie elevada / hover          */

  /* ---- Texto (claro sobre oscuro) ---- */
  --dark:        #F4F1FB;   /* Texto principal (claro)             */
  --mid:         #BBB1D4;   /* Texto secundario                    */
  --soft:        #8B82A6;   /* Texto suave / párrafos              */

  /* ---- Acento de marca ---- */
  --purple:      #9D8FE8;   /* Morado de marca (más brillante)     */
  --purple-dark: #7B6EC4;   /* Morado (botones, CTAs)              */
  --purple-deep: #3D2A5E;   /* Morado profundo (gradientes)        */

  /* ---- Acentos vibrantes (resaltan sobre el negro) ---- */
  --rose:        #FF5C8A;   /* Rosa vibrante                       */
  --gold:        #FFC53D;   /* Dorado / amarillo                   */
  --coral:       #FF6B6B;   /* Coral                               */
  --teal:        #2EE6C5;   /* Verde azulado neón                  */
  --yellow:      #FFD93D;   /* Amarillo                            */
  --indigo:      #7C8AFF;   /* Índigo / azul                       */
  --mint:        #3DFFA8;   /* Verde menta                         */

  /* ---- Tints translúcidos para chips e iconos sobre oscuro ---- */
  --t-purple:    rgba(157, 143, 232, .16);
  --t-rose:      rgba(255, 92, 138, .16);
  --t-teal:      rgba(46, 230, 197, .15);
  --t-gold:      rgba(255, 197, 61, .16);
  --t-coral:     rgba(255, 107, 107, .15);

  /* ---- Gradientes de iconos (brillantes) ---- */
  --icon-purple: linear-gradient(135deg, #9D8FE8, #6D5DD3);
  --icon-rose:   linear-gradient(135deg, #FF5C8A, #FF8FB0);
  --icon-sage:   linear-gradient(135deg, #2EE6C5, #12B89C);
  --icon-peach:  linear-gradient(135deg, #FFC53D, #FF9F45);
  --icon-teal:   linear-gradient(135deg, #2EE6C5, #2BA8FF);
  --icon-coral:  linear-gradient(135deg, #FF6B6B, #FF9A6B);

  /* ---- Tokens de diseño ---- */
  --border:      rgba(255, 255, 255, .09);
  --border-2:    rgba(255, 255, 255, .14);
  --shadow-sm:   0 4px 24px  rgba(0, 0, 0, .35);
  --shadow-md:   0 12px 40px rgba(0, 0, 0, .45);
  --shadow-lg:   0 24px 70px rgba(0, 0, 0, .55);
  --glow:        0 0 40px rgba(157, 143, 232, .25);

  /* ---- Border radius ---- */
  --r:  20px;  /* Cards grandes   */
  --rs: 12px;  /* Cards pequeñas  */

  /* ---- Nav height ---- */
  --nav: 86px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--bg);
  color: var(--dark);
  overflow-x: hidden;
  line-height: 1.65;
  cursor: none;
  -webkit-font-smoothing: antialiased;
}

a   { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
p   { color: var(--soft); }

::selection { background: var(--rose); color: #fff; }

/* ============================
   TIPOGRAFÍA
   .serif = clase histórica, ahora Montserrat display
============================ */
.serif {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  letter-spacing: -.02em;
}

h1 { font-size: clamp(2.9rem, 6.8vw, 5.8rem); line-height: 1.02; letter-spacing: -.035em; font-family: 'Montserrat', sans-serif; font-weight: 800; }
h2 { font-size: clamp(2rem,   4.2vw, 3.4rem);  line-height: 1.1;  letter-spacing: -.025em; font-family: 'Montserrat', sans-serif; font-weight: 800; }
h3 { font-size: clamp(1.1rem, 2vw,   1.4rem);  line-height: 1.25; font-family: 'Montserrat', sans-serif; font-weight: 700; }

/* ============================
   UTILIDADES DE LAYOUT
============================ */
.container { max-width: 1440px; margin: 0 auto; padding: 0 56px; }
.section   { padding: 110px 0; }

/* ---- Encabezado de sección (reutilizable) ---- */
.section-head {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 64px;
}
.section-head .tag { margin-bottom: 16px; }
.section-head h2   { margin-bottom: 16px; color: var(--dark); }
.section-head > p  { font-size: 1.02rem; line-height: 1.7; }
