/* Estilos para el botón de Sesión En Vivo */

.sesion-en-vivo-btn {
    position: fixed;
    z-index: 9999;
    display: flex;
    align-items: center;
    gap: 0;
    padding: 20px;
    background: #155167;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(21, 81, 103, 0.5);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s ease;
    overflow: hidden;
}

.sesion-en-vivo-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(19, 171, 188, 0.6);
    background: #13abbc;
    text-decoration: none;
    color: white;
}

.sesion-en-vivo-btn:active {
    transform: translateY(-1px) scale(1.02);
}

/* Posiciones del botón */
.sesion-en-vivo-bottom-right {
    bottom: 30px;
    right: 5%;
}

.sesion-en-vivo-bottom-left {
    bottom: 30px;
    left: 100px;
}

.sesion-en-vivo-top-right {
    top: 30px;
    right: 30px;
}

.sesion-en-vivo-top-left {
    top: 30px;
    left: 30px;
}

/* Contenedor del círculo con icono */
.sesion-en-vivo-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: #13abbc;
    border-radius: 50%;
    margin-right: 15px;
    position: relative;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
    font-size: 28px;
    color: white;
    padding-left: 4px;
}

/* Círculo punteado animado alrededor del icono */
.sesion-en-vivo-icon::before {
    content: "";
    position: absolute;
    width: 76px;
    height: 76px;
    border: 3px dotted rgba(19, 171, 188, 0.6);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: rotate 20s linear infinite;
}

/* Texto del botón */
.sesion-en-vivo-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    line-height: 1.3;
}

.sesion-en-vivo-text::before {
    content: "Sesión";
    font-size: 15px;
    font-weight: 400;
    color: white;
    margin-bottom: 4px;
}

.sesion-en-vivo-text::after {
    content: "EN VIVO";
    display: inline-block;
    background: #dc2626;
    color: white;
    padding: 5px 30px 5px 12px;
    border-radius: 4px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    position: relative;
}

.sesion-en-vivo-btn:hover .sesion-en-vivo-text::after {
    background-color: #ef4444;
}

/* Crear un pseudo-elemento para el punto REC amarillo que parpadea */
.sesion-en-vivo-btn::before {
    content: "●";
    position: absolute;
    color: #D1B257;
    font-size: 14px;
    animation: blink 1s infinite;
    text-shadow: 0 0 8px rgba(209, 178, 87, 0.9);
    z-index: 10;
    right: 35px;
    top: 50%;
    transform: translateY(-50%);
    margin-top: 10px;
}

/* Animación de rotación del círculo punteado */
@keyframes rotate {
    0% {
        transform: translate(-50%, -50%) rotate(0deg);
    }
    100% {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

/* Animación del punto amarillo parpadeante */
@keyframes blink {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.3;
        transform: scale(0.85);
    }
}

/* Responsive - Ajustes para móviles */
@media (max-width: 768px) {
    .sesion-en-vivo-btn {
        padding: 15px;
    }
    
    .sesion-en-vivo-bottom-right,
    .sesion-en-vivo-bottom-left {
        bottom: 20px;
    }
    
    .sesion-en-vivo-bottom-right {
        right: 90px;
    }
    
    .sesion-en-vivo-bottom-left {
        left: 90px;
    }
    
    .sesion-en-vivo-top-right,
    .sesion-en-vivo-top-left {
        top: 20px;
    }
    
    .sesion-en-vivo-top-right {
        right: 20px;
    }
    
    .sesion-en-vivo-top-left {
        left: 20px;
    }
    
    .sesion-en-vivo-icon {
        width: 55px;
        height: 55px;
        margin-right: 12px;
        font-size: 24px;
    }
    
    .sesion-en-vivo-icon::before {
        width: 70px;
        height: 70px;
        border-width: 2px;
    }
    
    .sesion-en-vivo-btn::before {
        font-size: 12px;
        right: 10px;
        margin-top: 8px;
    }
    
    .sesion-en-vivo-text::before {
        font-size: 14px;
    }
    
    .sesion-en-vivo-text::after {
        font-size: 12px;
        padding: 3px 10px;
    }
}

/* Ajustes para pantallas muy pequeñas */
@media (max-width: 480px) {
    .sesion-en-vivo-btn {
        padding: 12px;
    }
    
    .sesion-en-vivo-text {
        display: none;
    }
    
    .sesion-en-vivo-icon {
        width: 55px;
        height: 55px;
        margin: 0;
        font-size: 24px;
    }
    
    .sesion-en-vivo-icon::before {
        width: 68px;
        height: 68px;
        border-width: 2px;
    }
    
    .sesion-en-vivo-btn::before {
        font-size: 11px;
        right: 8px;
        margin-top: 0;
    }
}
