@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&display=swap');

:root {
    --primary: #0ea5e9; /* Sky Blue */
    --primary-soft: rgba(14, 165, 233, 0.1);
    --secondary: #10b981; /* Emerald/Mint Green */
    --secondary-soft: rgba(16, 185, 129, 0.1);
    --accent: #6d28d9;
    --bg-white: #ffffff;
    --bg-light: #f8fafc;
    --bg-card: #ffffff;
    --text-dark: #0f172a;
    --text-slate: #475569;
    --text-gray: #94a3b8;
    --border-soft: #e2e8f0;
    --glass: rgba(255, 255, 255, 0.8);
    --glass-border: rgba(255, 255, 255, 0.2);
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow-sm: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.05), 0 8px 10px -6px rgb(0 0 0 / 0.05);
}

/* Global Reset & Core Styling */
html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
}

body, input, select, textarea {
    font-family: 'Plus Jakarta Sans', sans-serif !important;
    color: var(--text-slate);
    background-color: var(--bg-light);
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Plus Jakarta Sans', sans-serif !important;
    color: var(--text-dark);
    font-weight: 800;
    letter-spacing: -0.025em;
}

/* Sidebar Light & Airy */
#sidebar {
    background: var(--bg-white) !important;
    border-right: 1px solid var(--border-soft);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

#sidebar .inner nav ul li a {
    padding: 1.5rem 2rem;
    color: var(--text-slate);
    font-weight: 600;
    font-size: 0.95rem;
    border-bottom: 0 !important;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 1rem;
}

#sidebar .inner nav ul li a i {
    color: var(--primary);
    font-size: 1.2rem;
}

#sidebar .inner nav ul li a:hover {
    color: var(--primary);
    background: var(--primary-soft);
}

#sidebar .inner nav ul li a.active {
    color: var(--primary) !important;
    background: var(--bg-light);
}

#sidebar .inner nav ul li a.active::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 4px;
    background: linear-gradient(to bottom, var(--primary), var(--secondary));
    border-radius: 0 4px 4px 0;
}

/* Intro Hero Light */
#intro {
    background-image: 
        linear-gradient(to right, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.5)),
        url('../images/hero-light.png') !important;
    background-size: cover !important;
    background-position: center !important;
    display: flex;
    align-items: center;
    padding: 8rem 0 !important;
}

#intro h1 {
    font-size: 5rem;
    color: var(--text-dark);
    margin-bottom: 2rem;
}

#intro h1 .punto {
    color: var(--secondary);
    animation: bounceScale 2s infinite ease-in-out;
}

@keyframes bounceScale {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.3); }
}

#intro blockquote {
    border-left: 0;
    background: var(--bg-white);
    border: 1px solid var(--border-soft);
    padding: 2rem;
    border-radius: 1.5rem;
    box-shadow: var(--shadow-lg);
    font-size: 1.2rem;
    color: var(--text-slate);
    margin: 3rem 0;
}

/* Sections & Wrapper Heights */
.wrapper {
    padding: 10rem 0 !important;
    background-color: var(--bg-light) !important;
}

.wrapper.style2 { background-color: var(--bg-white) !important; }
.wrapper.style3 { background-color: #f1f5f9 !important; }

/* The Modern Card Layout (Spotlights) */
.spotlights > section {
    background: transparent !important;
    margin-bottom: 4rem;
    padding: 0 2rem;
}

.spotlights > section .content {
    background: var(--bg-card) !important;
    border-radius: 2.5rem !important;
    padding: 4rem !important;
    border: 1px solid var(--border-soft);
    box-shadow: var(--shadow-xl) !important;
    transition: var(--transition);
}

.spotlights > section:hover .content {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 40px 60px -15px rgba(0, 0, 0, 0.08) !important;
    border-color: var(--primary-soft);
}

.spotlights > section h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.spotlights > section h2 i {
    color: var(--secondary);
    margin-right: 1.5rem;
    background: var(--secondary-soft);
    padding: 1rem;
    border-radius: 1rem;
}

/* Modern Buttons (Solid Light Colors) */
.button {
    background: var(--primary) !important;
    border-radius: 1rem !important;
    height: 4rem !important;
    line-height: 4rem !important;
    padding: 0 3rem !important;
    font-weight: 700 !important;
    letter-spacing: 0.02em !important;
    text-transform: none !important;
    box-shadow: 0 10px 15px -3px var(--primary-soft) !important;
    transition: var(--transition) !important;
}

.button:hover {
    background: var(--secondary) !important;
    transform: translateY(-4px);
    box-shadow: 0 20px 25px -5px var(--secondary-soft) !important;
}

/* Forms (Clean White) */
input[type="text"], input[type="email"], textarea {
    background: var(--bg-white) !important;
    border: 2px solid var(--border-soft) !important;
    border-radius: 1rem !important;
    color: var(--text-dark) !important;
    padding: 1.25rem 1.5rem !important;
    font-weight: 500;
}

input[type="text"]:focus, input[type="email"]:focus, textarea:focus {
    border-color: var(--primary) !important;
    box-shadow: 0 0 0 4px var(--primary-soft) !important;
    outline: none;
}

/* Cookie Notice Floating Card */
.cookies {
    background: var(--bg-white) !important;
    border: 1px solid var(--border-soft) !important;
    border-radius: 2rem !important;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15) !important;
    padding: 2.5rem !important;
    border-top: 4px solid var(--primary) !important;
}

/* Scroll Progress Bar (Gradient) */
#scroll-progress {
    height: 6px;
    background: linear-gradient(to right, var(--primary), var(--secondary));
}

/* Footer (Light) */
footer#footer {
    background-color: var(--bg-white) !important;
    border-top: 1px solid var(--border-soft);
    padding: 4rem 0 !important;
}

footer#footer .menu li {
    color: var(--text-gray);
    font-size: 0.9rem;
}

/* Responsive Overrides */
@media screen and (max-width: 1280px) {
    #sidebar {
        background: var(--bg-white) !important;
    }
}

@media screen and (max-width: 736px) {
    #intro h1 {
        font-size: 3.5rem;
    }
}
