/* ============================================================
   MAIN STYLES - Estilos generales del sitio
============================================================ */

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f5f9;
}

::-webkit-scrollbar-thumb {
    background: #3b82f6;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #1e40af;
}

/* Gradient text utility */
.gradient-text {
    background: linear-gradient(135deg, #1e40af, #3b82f6, #60a5fa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Glass morphism effect */
.glass {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

/* Hero gradient background */
.hero-gradient {
    background: linear-gradient(135deg, #0f172a 0%, #1e3a5f 30%, #1e40af 60%, #3b82f6 100%);
}

/* Section divider line */
.section-divider {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #1e40af, #3b82f6, #facc15);
    border-radius: 2px;
    margin: 0 auto;
}

/* Navbar shadow on scroll */
.navbar-scrolled {
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}

/* Plan feature icons */
.plan-check {
    color: #22c55e;
}

.plan-x {
    color: #ef4444;
}