/* Estilos para el banner */
.products-banner {
    background: linear-gradient(135deg, var(--color-secondary) 0%, var(--color-secondary_hover) 100%);
    border-radius: 15px;
    padding: 25px 30px;
    margin: 40px 0;
    box-shadow: 0 10px 30px var(--color-secondary_hover);
    position: relative;
    overflow: hidden;
    color: white;
}

.products-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, var(--color-secondary_hover) 0%, rgba(255,255,255,0) 60%);
    pointer-events: none;
}

.banner-content {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.banner-title {
    display: flex;
    align-items: center;
    font-weight: 700;
    font-size: 2.2rem;
    margin: 0;
}

.banner-icon {
    background-color: rgba(255, 255, 255, 0.2);
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    font-size: 1.8rem;
    box-shadow: 0 4px 10px var(--color-secondary_hover);
    transition: transform 0.3s, background-color 0.3s;
}

.banner-highlight {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 4px;
    width: 100%;
    background: linear-gradient(90deg, var(--color-secondary_hover) 0%, rgba(255,255,255,0) 100%);
}

.banner-shapes {
    position: absolute;
    top: 0;
    right: 0;
    width: 180px;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
}

.shape {
    position: absolute;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}

.shape-1 {
    width: 100px;
    height: 100px;
    top: -20px;
    right: 50px;
}

.shape-2 {
    width: 70px;
    height: 70px;
    bottom: 10px;
    right: 30px;
}

.shape-3 {
    width: 50px;
    height: 50px;
    top: 50%;
    right: 130px;
}

.banner-btn {
    background-color: white;
    color: #0e86d4;
    border: none;
    border-radius: 8px;
    padding: 10px 20px;
    font-weight: 600;
    transition: transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.banner-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}

/* Animación de pulso para el ícono */
@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

.products-banner:hover .banner-icon {
    animation: pulse 1.5s infinite;
    background-color: rgba(255, 255, 255, 0.3);
}

.banner-icon img{
    border-radius: 50%;
}
/* Responsivo */
@media (max-width: 768px) {
    .banner-content {
        flex-direction: column;
        text-align: center;
    }
    
    .banner-title {
        margin-bottom: 20px;
        justify-content: center;
    }
    
    .banner-shapes {
        display: none;
    }
}

    /* Estilos para la imagen del producto */
    .product-image-link {
        display: block;
        overflow: hidden;
        cursor: zoom-in;
    }

    .product-image-link img {
        transition: transform 0.3s ease;
    }

    .product-image-link:hover img {
        transform: scale(1.05);
    }

    .zoom-indicator {
        position: absolute;
        bottom: 10px;
        right: 10px;
        background-color: rgba(0, 0, 0, 0.6);
        color: white;
        width: 40px;
        height: 40px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        opacity: 0.7;
        transition: opacity 0.3s ease;
    }

    .product-image-link:hover .zoom-indicator {
        opacity: 1;
    }

    /* Estilos para el modal de imagen */
    #imageModal .modal-body {
        padding: 0;
        background-color: #f8f9fa;
    }

    #imageModal .modal-body img {
        max-height: 80vh;
        object-fit: contain;
    }