@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&family=Orbitron:wght@400;500;700;900&display=swap');

:root {
    --color-primario: #6366f1;
    --color-secundario: #8b5cf6;
    --color-acento: #ec4899;
    --fondo-oscuro: #1e1b4b;
    --fondo-claro: #f8fafc;
    --texto-oscuro: #1e293b;
    --texto-claro: #64748b;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--texto-oscuro);
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
}

.navbar-hystore {
    background: linear-gradient(135deg, var(--color-primario) 0%, var(--color-secundario) 100%);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.navbar-hystore .navbar-brand {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.8rem;
    font-weight: 900;
    color: white !important;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.navbar-hystore .nav-link {
    color: rgba(255, 255, 255, 0.9) !important;
    font-weight: 500;
    transition: all 0.3s ease;
    margin: 0 0.5rem;
}

.navbar-hystore .nav-link:hover {
    color: white !important;
    transform: translateY(-2px);
}

.hero-hystore {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 4rem 0;
    margin-bottom: 3rem;
}

.card-hystore {
    border: none;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    overflow: hidden;
}

.card-hystore:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.card-hystore .card-img-top {
    height: 200px;
    object-fit: cover;
}

.btn-hystore {
    background: linear-gradient(135deg, var(--color-primario) 0%, var(--color-secundario) 100%);
    border: none;
    color: white;
    padding: 0.75rem 2rem;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-hystore:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 25px rgba(99, 102, 241, 0.4);
    color: white;
}

.btn-acento {
    background: linear-gradient(135deg, var(--color-acento) 0%, #f43f5e 100%);
    border: none;
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-acento:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(236, 72, 153, 0.4);
    color: white;
}

.footer-hystore {
    background: linear-gradient(135deg, #1e1b4b 0%, #312e81 100%);
    color: white;
    padding: 3rem 0 1rem;
    margin-top: 4rem;
}

.footer-hystore a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-hystore a:hover {
    color: white;
}

.icono-grande {
    font-size: 3rem;
    color: var(--color-primario);
    margin-bottom: 1rem;
}

.carrusel-hystore .carousel-item {
    height: 500px;
}

.carrusel-hystore .carousel-item img {
    height: 100%;
    object-fit: cover;
    filter: brightness(0.7);
}

.carrusel-hystore .carousel-caption {
    background: rgba(0, 0, 0, 0.5);
    padding: 2rem;
    border-radius: 15px;
}

.tabla-hystore {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.tabla-hystore thead {
    background: linear-gradient(135deg, var(--color-primario) 0%, var(--color-secundario) 100%);
    color: white;
}

.acordeon-hystore .accordion-item {
    border: none;
    margin-bottom: 1rem;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.acordeon-hystore .accordion-button {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    color: var(--texto-oscuro);
    font-weight: 600;
    border-radius: 10px;
}

.acordeon-hystore .accordion-button:not(.collapsed) {
    background: linear-gradient(135deg, var(--color-primario) 0%, var(--color-secundario) 100%);
    color: white;
}

.modal-hystore .modal-content {
    border-radius: 20px;
    border: none;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.modal-hystore .modal-header {
    background: linear-gradient(135deg, var(--color-primario) 0%, var(--color-secundario) 100%);
    color: white;
    border-radius: 20px 20px 0 0;
}

.tabs-hystore .nav-link {
    border: none;
    color: var(--texto-claro);
    font-weight: 500;
    transition: all 0.3s ease;
}

.tabs-hystore .nav-link.active {
    background: linear-gradient(135deg, var(--color-primario) 0%, var(--color-secundario) 100%);
    color: white;
    border-radius: 10px 10px 0 0;
}

.form-hystore {
    border-radius: 10px;
    border: 2px solid #e2e8f0;
    padding: 0.75rem 1rem;
    transition: all 0.3s ease;
}

.form-hystore:focus {
    border-color: var(--color-primario);
    box-shadow: 0 0 0 0.25rem rgba(99, 102, 241, 0.25);
}

.badge-hystore {
    background: linear-gradient(135deg, var(--color-acento) 0%, #f43f5e 100%);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 500;
}

.precio-hystore {
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-primario);
    font-family: 'Orbitron', sans-serif;
}

#scrollspy-section {
    position: relative;
    height: 400px;
    overflow-y: auto;
}

@keyframes aparecerArriba {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.aparecer-arriba {
    animation: aparecerArriba 0.6s ease-out;
}

@media (max-width: 768px) {
    .carrusel-hystore .carousel-item {
        height: 300px;
    }
    
    .hero-hystore {
        padding: 2rem 0;
    }
    
    .navbar-hystore .navbar-brand {
        font-size: 1.4rem;
    }
}
