/* ----------------------------------------------------------------
    Custom CSS

    Add all your Custom Styled CSS here for New Styles or
    Overwriting Default Theme Styles for Better Hanlding Updates
-----------------------------------------------------------------*/

#content{
    background-image: url(../images/bg.jpg);
    background-attachment: fixed;
    background-size: cover;
    background-position: center bottom;
}


@media (max-width: 767px) {
    .text-9 {
        font-size: 24px !important;  /* Tamaño reducido para móvil */
        font-size: 1.5rem !important;
    }
    .text-8 {
        font-size: 24px !important;  /* Tamaño reducido para móvil */
        font-size: 1.5rem !important;
    }
}
        .podcast-popup {
            position: fixed;
            bottom: 0;
            left: 20px;
            width: 350px;
            background: #1f1f1f;
            border-radius: 10px 10px 0 0;
            box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
            z-index: 1000;
            transform: translateY(100%);
            transition: transform 0.3s ease;
        }
        
        .podcast-popup.show {
            transform: translateY(0);
        }
        
        .popup-header {
            background: #1f1f1f; /* Verde de Spotify */
            color: white;
            padding: 10px 15px;
            border-radius: 10px 10px 0 0;
            cursor: pointer;
            display: flex;
            justify-content: center; /* Centra horizontalmente */
            align-items: center; /* Centra verticalmente */
            position: relative; /* Necesario para posicionar el botón de cerrar */
        }
        .close-btn {
        background: none;
        border: none;
        color: white;
        font-size: 1.5rem;
        line-height: 1;
        position: absolute; /* Posiciona el botón de forma absoluta */
        right: 15px; /* Distancia desde la derecha */
        }
        iframe{background-color: #1f1f1f;}