/* ========================================
   DISEÑO LIMPIO Y PROFESIONAL
   Elimina todos los CSS anteriores problemáticos
   ======================================== */

/* RESET - Eliminar estilos problemáticos */
.hero,
section.hero,
.hero-slider-container,
.slide {
    padding: 0 !important;
    min-height: auto !important;
    max-height: none !important;
    height: auto !important;
}

/* SLIDER DE INICIO - GRANDE Y VISTOSO */
.hero-slider-container {
    min-height: 500px !important;
    height: auto !important;
}

.slide {
    min-height: 500px !important;
    padding: 6rem 0 4rem !important;
}

.slide h1 {
    font-size: 3rem !important;
    margin-bottom: 1.5rem !important;
}

.slide p {
    font-size: 1.3rem !important;
    margin-bottom: 2rem !important;
}

/* HERO EN PÁGINAS DE PLANES - COMPACTO */
body:not(.home) section.hero,
body:not(.home) .hero {
    min-height: auto !important;
    padding: 2rem 0 1.5rem !important;
}

body:not(.home) .hero h1 {
    font-size: 2rem !important;
    margin-bottom: 1rem !important;
}

body:not(.home) .hero p {
    font-size: 1rem !important;
    margin-bottom: 1rem !important;
}

/* HEADER - COMPACTO Y VISIBLE */
header {
    background: #1e1b4b !important;
    position: sticky !important;
    top: 0 !important;
    z-index: 9999 !important;
}

.topbar {
    background: #1a1744 !important;
    padding: 0.5rem 0 !important;
}

.topbar * {
    color: #ffffff !important;
}

nav {
    background: #312e81 !important;
    padding: 0.7rem 0 !important;
}

nav a {
    color: #ffffff !important;
    font-weight: 600 !important;
}

nav a:hover {
    color: #fbbf24 !important;
}

/* DROPDOWN */
.dropdown-menu {
    background: #1e1b4b !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
}

.dropdown-menu a {
    color: #e0e7ff !important;
}

.dropdown-menu a:hover {
    background: rgba(251, 191, 36, 0.2) !important;
    color: #ffffff !important;
}

/* BOTÓN ÁREA CLIENTE */
.btn-primary {
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%) !important;
    color: #1e1b4b !important;
    font-weight: 700 !important;
}

/* TARJETAS DE PLANES */
.pricing-grid {
    display: grid !important;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)) !important;
    gap: 2rem !important;
}

.plan-card {
    background: rgba(255, 255, 255, 0.05) !important;
    padding: 2rem !important;
    border-radius: 12px !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
}

.plan-card:hover {
    transform: translateY(-5px) !important;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3) !important;
}

/* MOBILE */
@media (max-width: 768px) {
    .slide {
        min-height: 400px !important;
        padding: 4rem 0 3rem !important;
    }

    .slide h1 {
        font-size: 2rem !important;
    }

    .slide p {
        font-size: 1rem !important;
    }

    .pricing-grid {
        grid-template-columns: 1fr !important;
    }
}