/*
Theme Name: Crono Theme Premium
Theme URI: https://cronopos.com/
Author: CRONO Digital Solutions
Description: Tema oficial para CRONO con diseño Premium de alta fidelidad.
Version: 2.0.0
License: GNU General Public License v2 or later
Text Domain: crono
*/

/* --- CORE DESIGN SYSTEM --- */
:root {
    --background: #ffffff;
    --foreground: #0f172a;
    --brand-primary: #3b82f6;
    --brand-secondary: #8b5cf6;
    --brand-accent: #ec4899;
}

html,
body {
    background-color: var(--background) !important;
    color: var(--foreground) !important;
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    scroll-behavior: smooth;
    margin: 0;
    padding: 0;
}

/* Glassmorphism */
.glass {
    background: rgba(255, 255, 255, 0.7) !important;
    backdrop-filter: blur(20px) !important;
    -webkit-backdrop-filter: blur(20px) !important;
    border: 1px solid rgba(226, 232, 240, 0.7) !important;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03) !important;
}

/* Text Gradient */
.text-gradient {
    background: linear-gradient(to right, #3b82f6, #8b5cf6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Standard Premium Button */
.btn-premium {
    background: linear-gradient(to right, #3b82f6, #8b5cf6) !important;
    color: white !important;
    padding: 14px 36px;
    border-radius: 9999px;
    font-weight: 700;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 20px rgba(59, 130, 246, 0.5) !important;
    border: none;
    cursor: pointer;
    text-decoration: none;
}

.btn-premium:hover {
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 0 30px rgba(59, 130, 246, 0.8) !important;
    opacity: 1;
}

/* Spotlight Effect Simulation */
.spotlight {
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.15) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

/* Layout Utilities */
.container-custom {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}