/*---------------------------------------
   STYLE.CSS - VARIABLES GLOBALES Y RESET
-----------------------------------------*/

/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Variables globales unificadas */
:root {
    /* Colores principales */
    --ink: #0e0e0e;
    --ink-2: #1a1a1a;
    --ink-soft: #5a5a5a;
    --ink-muted: #8a8a85;
    --bg: #ffffff;
    --bg-soft: #f3efe7;
    --bg-dark: #0e0e0e;
    --bg-card: #ffffff;
    --bg-card-dark: #1a1a1a;
    
    /* Colores de acento */
    --accent: #ff5722;
    --accent-warm: #ff5722;
    --accent-soft: #fff6f1;
    
    /* Bordes y líneas */
    --line: #e6e0d3;
    --line-soft: #efeae0;
    
    /* Tipografía */
    --font-heading: 'Bricolage Grotesque', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    /* Sombras */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 5px 15px rgba(0, 0, 0, 0.521);
    --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.12);
    
    /* Bordes radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 9999px;
    
    /* Espaciados */
    --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;

    /* Tamaños de sección */
    --section-padding-desktop: 30px;
    --section-padding-tablet: 0px;
    --section-padding-mobile: 2.5rem;
}

/* Base del body */
body {
    background: var(--bg);
    color: var(--ink);
    font-family: var(--font-body);
    -webkit-font-smoothing: antialiased;
    line-height: 1.5;
    overflow-x: hidden;
}

/* Tipografía headings */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    letter-spacing: -0.02em;
}

/* Scroll behavior */
html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

/* Utilidades de texto */
.text-ink { color: var(--ink); }
.text-ink-soft { color: var(--ink-soft); }
.text-ink-muted { color: var(--ink-muted); }
.text-accent { color: var(--accent); }

/* Utilidades de fondo */
.bg-soft { background: var(--bg-soft); }
.bg-accent-soft { background: var(--accent-soft); }

/* Contenedor personalizado */
.container-x {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 var(--space-4);
}

@media (max-width: 768px) {
    .container-x {
        padding: 0 var(--space-5);
    }
}

/* Sección base */
.section {
    padding: var(--section-padding-desktop) 0;
}

.section-beige {
    background: var(--bg-soft);
}

/* Eyebrow */
.eyebrow {
    color: var(--accent);
    font-size: 0.6875rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    display: inline-block;
}

/* Título de sección */
.section-title {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 700;
    letter-spacing: -0.035em;
    line-height: 1.1;
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 576px) {
    .section-title {
        font-size: 2rem;
    }
}

.text-gradient {
    background: linear-gradient(135deg, var(--accent), #ff8c42);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

/* Animaciones globales */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.5;
        transform: scale(0.8);
    }
}

/* Utilidades responsive */
@media (max-width: 768px) {
    html {
        scroll-padding-top: 65px;
    }
    
    .section {
        padding: var(--section-padding-mobile) 0;
    }
}

/* Prefers reduced motion */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* Botones de planes */
.section-btn.pricing-btn {
    background: var(--ink);
    color: #fff;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 2rem;
    font-weight: 500;
    font-size: 0.875rem;
    cursor: pointer;
    transition: all 0.2s;
}

.section-btn.pricing-btn:hover {
    background: #000;
    transform: translateY(-2px);
}
::-webkit-scrollbar{
    width: 8px;
    height: 8px;
  }

  ::-webkit-scrollbar-thumb {
    cursor: pointer;
    background: #202020;
  }