/*
Theme Name: BlankSlate Natal
Theme URI: https://oportunidadnatal.com
Description: Tema hijo de BlankSlate para la landing page de Oportunidad Natal
Author: Sebastián Sáenz
Author URI: https://oportunidadnatal.com
Template: blankslate
Version: 1.1.0
Text Domain: blankslate-natal
*/

/* ==========================================================================
   SISTEMA DE DISEÑO - VARIABLES CSS
   ========================================================================== */

:root {
    /* ─────────────────────────────────────────────────────────────────────
       PALETA DE COLORES
       ───────────────────────────────────────────────────────────────────── */

    /* Stone - Neutros */
    --stone-50: #fafaf9;
    --stone-100: #f5f5f4;
    --stone-200: #e7e5e4;
    --stone-400: #a8a29e;
    --stone-600: #57534e;
    --stone-800: #292524;
    --stone-900: #1c1917;
    --stone-950: #0c0a09;

    /* Emerald - Color estratégico */
    --emerald-100: #d1fae5;
    --emerald-300: #6ee7b7;
    --emerald-400: #34d399;
    --emerald-500: #10b981;
    --emerald-600: #059669;
    --emerald-700: #047857;
    --emerald-900: #064e3b;

    /* Red - Problema/Dolor */
    --red-400: #f87171;
    --red-500: #ef4444;
    --red-900: #7f1d1d;

    /* Amber - Premium/Urgencia */
    --amber-400: #fbbf24;
    --amber-500: #f59e0b;

    /* ─────────────────────────────────────────────────────────────────────
       TIPOGRAFÍA
       ───────────────────────────────────────────────────────────────────── */

    --font-display: 'Playfair Display', Georgia, serif;
    --font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;

    /* Tamaños */
    --text-xs: 0.75rem;
    --text-sm: 0.875rem;
    --text-base: 1rem;
    --text-lg: 1.125rem;
    --text-xl: 1.25rem;
    --text-2xl: 1.5rem;
    --text-3xl: 1.875rem;
    --text-4xl: 2.25rem;
    --text-5xl: 3rem;
    --text-6xl: 3.75rem;

    /* ─────────────────────────────────────────────────────────────────────
       ESPACIADO
       ───────────────────────────────────────────────────────────────────── */

    --space-1: 0.25rem;
    --space-2: 0.5rem;
    --space-3: 0.75rem;
    --space-4: 1rem;
    --space-5: 1.25rem;
    --space-6: 1.5rem;
    --space-8: 2rem;
    --space-10: 2.5rem;
    --space-12: 3rem;
    --space-16: 4rem;
    --space-20: 5rem;
    --space-24: 6rem;

    /* ─────────────────────────────────────────────────────────────────────
       OTROS
       ───────────────────────────────────────────────────────────────────── */

    --radius-sm: 0.375rem;
    --radius-md: 1.5rem;
    --radius-lg: 0.75rem;
    --radius-xl: 1rem;
    --radius-2xl: 1.5rem;
    --radius-full: 9999px;

    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1);

    --transition-fast: 150ms ease;
    --transition-base: 300ms ease;
    --transition-slow: 500ms ease;

    --max-width: 1280px;
}

/* ==========================================================================
   RESET BASE PARA LA LANDING
   ========================================================================== */

.natal-landing *,
.natal-landing *::before,
.natal-landing *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

.natal-landing {
    font-family: var(--font-body);
    font-size: var(--text-base);
    line-height: 1.7;
    color: var(--stone-100);
    background-color: var(--stone-900);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.natal-landing img {
    max-width: 100%;
    height: auto;
    display: block;
}

.natal-landing a {
    color: inherit;
    text-decoration: none;
}

.natal-landing ul,
.natal-landing ol {
    list-style: none;
}

.natal-landing button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

.natal-landing input,
.natal-landing select,
.natal-landing textarea {
    font-family: inherit;
    font-size: inherit;
}

/* Tipografía base - solo font-family, weight y line-height */
/* Los tamaños específicos se manejan en landing.css */
.natal-landing h1,
.natal-landing h2,
.natal-landing h3,
.natal-landing h4 {
    font-family: var(--font-display);
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

/* Responsive typography se maneja en landing.css */