/* Sección Vinilo - V7 Final Refinements */
#vinilo {
    background: radial-gradient(circle at 30% 50%, #2a2a2a 0%, #000000 100%);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    position: relative;
    padding: 100px 0;
    overflow: hidden;
}

#vinilo::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -10%;
    width: 60%;
    height: 60%;
    background: radial-gradient(circle, rgba(120, 169, 165, 0.05) 0%, transparent 70%);
    filter: blur(80px);
    pointer-events: none;
}

/* Alineación de la línea separadora (override de .section-title::after) */
#vinilo .section-title::after {
    left: 0 !important;
    transform: none !important;
}

#vinilo .title-label {
    font-size: 0.75rem;
    letter-spacing: 5px;
    opacity: 0.6;
    margin-bottom: 15px;
    display: block;
    text-transform: uppercase;
}

#vinilo .title-main {
    font-size: 3.2rem;
    line-height: 1.1;
    letter-spacing: -1px;
    color: #fff;
    display: block;
    font-weight: 900;
}

#vinilo p {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-weight: 300;
    line-height: 1.7;
    color: #ccc;
    margin-bottom: 2rem;
}

/* Vinilo - Nueva interacción Hover (Sencilla y Notoria) */
.vinyl-img {
    width: 100%;
    max-width: 480px;
    height: auto;
    filter: drop-shadow(0 30px 50px rgba(0, 0, 0, 0.5));
    transition: transform 0.5s ease;
    /* Transición más suave */
}

/* Hover Simple: Scale Up 5% suave */
#vinilo:hover .vinyl-img {
    transform: scale(1.05);
}

.vinyl-text-col {
    padding-left: 2rem;
    z-index: 5;
}

/* RESPONSIVE */
.btn-vinilo {
    background-color: #78a9a5 !important;
    border: none;
    color: #fff !important;
    padding: 14px 40px !important;
    font-size: 0.95rem !important;
    letter-spacing: 2px !important;
    border-radius: 4px !important;
    text-transform: uppercase;
    font-weight: 600;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    display: inline-block;
    transition: all 0.3s ease;
}

.btn-vinilo:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 30px rgba(120, 169, 165, 0.3);
}


/* PROMO FLOTANTE EN HOME - PREMIUM BOX */
#vinyl-promo {
    position: absolute;
    left: 40px;
    top: 55%;
    transform: translateY(-50%);
    z-index: 100;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none !important;
    width: 160px;
    /* Un poco más ancho para el padding */
    text-align: center;

    /* El Encuadre Impresionante */
    background: rgba(0, 0, 0, 0.85);
    /* Fondo negro fuerte pero no sólido */
    backdrop-filter: blur(10px);
    /* Efecto vidrio ahumado */
    padding: 20px 15px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    /* Borde sutil */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    /* Sombra profunda */

    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    /* Bouncy transition */
}

.promo-img {
    width: 80px;
    height: auto;
    border-radius: 50%;
    margin-bottom: 15px;
    filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.5));
    transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.promo-text {
    font-size: 10px;
    line-height: 1.4;
    letter-spacing: 2px;
    color: #ffffff;
    font-weight: 700;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

/* Hover Effects en la Caja Completa */
#vinyl-promo:hover {
    transform: translateY(-55%) scale(1.05);
    /* Sube un poco y crece */
    background: rgba(0, 0, 0, 0.95);
    /* Más oscuro */
    border-color: rgba(120, 169, 165, 0.5);
    /* Borde se pone Teal */
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.7), 0 0 20px rgba(120, 169, 165, 0.2);
    /* Glow externo */
}

#vinyl-promo:hover .promo-img {
    transform: scale(1.1) rotate(10deg);
}

#vinyl-promo:hover .promo-text {
    color: #78a9a5;
    /* Texto Teal */
}

/* Ocultar en Mobile */
@media (max-width: 991px) {
    #vinyl-promo {
        display: none;
    }
}


/* RESPONSIVE SECCIÓN VINILO */
@media (max-width: 991px) {
    #vinilo {
        padding: 60px 0;
    }

    .vinyl-text-col {
        padding-left: 15px;
        padding-right: 15px;
        text-align: center !important;
    }

    .content-wrapper {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    #vinilo .title-label,
    #vinilo .title-main,
    #vinilo p {
        text-align: center;
    }

    #vinilo .section-title::after {
        left: 50% !important;
        transform: translateX(-50%) !important;
    }

    #vinilo .title-main {
        font-size: 2.2rem;
    }

    .vinyl-img {
        max-width: 70%;
        margin-top: 30px;
    }

    #vinilo p {
        margin-left: auto !important;
        margin-right: auto !important;
    }
}

@media (min-width: 992px) {
    .content-wrapper {
        text-align: left;
        align-items: flex-start;
    }

    #vinilo p {
        margin-left: 0 !important;
        margin-right: auto !important;
    }

    #vinilo .section-title::after {
        left: 0 !important;
        transform: none !important;
    }
}