/*
Theme Name: Vevo Fun Wp theme
Theme URI: https://example.com
Author: Jairo Santana
Description: Tema basado en HTML con temporizador y URL configurable desde el Customizer.
Version: 1.0
Text Domain: vevo-video-theme
*/

body {
    margin: 0;
    padding: 0;
    background-color: #CCCCCC;
    font-family: Arial, sans-serif;
}

.container {
    width: 100%;
    max-width: 1200px;
    height: 100vh;
    margin: 0 auto;
    background-color: #FFFFFF;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    padding: 20px;
}

.seccion-publicidad,
.seccion-publicidad-bottom {
    height: 80px;
    background: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px dashed #999;
}

.seccion-publicidad {
    margin-bottom: 20px;
}

.seccion-publicidad-bottom {
    margin-top: 20px;
}

.seccion-contenido {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: start;
    text-align: center;
    margin-bottom: 50px;
}

.botones-contenido {
    display: flex;
    gap: 20px;

}

.img-boton {
    width: 120px;
    height: 120px;
    background: #ddd;
    border-radius: 10px;
    border: 2px solid #aaa;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

#btnVerVideo {
    padding: 12px 25px;
    font-size: 16px;
    border: none;
    background-color: #007BFF;
    color: #fff;
    border-radius: 5px;
    cursor: pointer;
}

#btnVerVideo:disabled {
    background-color: #888;
    cursor: not-allowed;
}

#temporizador {
    margin-top: 10px;
    font-size: 18px;
    font-weight: bold;
}

/* Barra de progreso */
.progress-container {
    width: 250px;
    height: 12px;
    background: #e0e0e0;
    border-radius: 6px;
    margin-top: 10px;
    overflow: hidden;
    display: none;
    /* Se muestra al iniciar */
}

.progress-bar {
    height: 100%;
    width: 0%;
    background: #007BFF;
    transition: width 1s linear;
}

/* Estilos para el botón */
.telegram-button {
    display: inline-block;
    background-color: #0a507c;
    /* Color de fondo del botón */
    color: #ffffff;
    /* Color del texto del botón */
    padding: 10px 20px;
    /* Espacio alrededor del texto */
    font-size: 16px;
    /* Tamaño del texto */
    text-decoration: none;
    /* Sin subrayado en el texto */
    border-radius: 5px;
    /* Bordes redondeados */
    border: none;
    /* Sin borde */
    cursor: pointer;
    /* Cursor al pasar sobre el botón */
}

/* Estilos para el logo de Facebook */
.telegram-logo {
    width: 30px;
    /* Tamaño del logo */
    vertical-align: middle;
    /* Alinear verticalmente con el texto */
    margin-right: 10px;
    /* Espacio a la derecha del logo */
}

/* Estilos para el botón */
.facebook-button {
    display: inline-block;
    background-color: #00ad03;
    /* Color de fondo del botón */
    color: #ffffff;
    /* Color del texto del botón */
    padding: 10px 20px;
    /* Espacio alrededor del texto */
    font-size: 16px;
    /* Tamaño del texto */
    text-decoration: none;
    /* Sin subrayado en el texto */
    border-radius: 5px;
    /* Bordes redondeados */
    border: none;
    /* Sin borde */
    cursor: pointer;
    /* Cursor al pasar sobre el botón */
}

/* Estilos para el logo de Facebook */
.facebook-logo {
    width: 30px;
    /* Tamaño del logo */
    vertical-align: middle;
    /* Alinear verticalmente con el texto */
    margin-right: 10px;
    /* Espacio a la derecha del logo */
}

.imagen-animada {
    animation: moverArribaAbajo 2s ease-in-out infinite;
}

/* Animación */
@keyframes moverArribaAbajo {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
        /* Ajusta la altura del movimiento */
    }

    100% {
        transform: translateY(0);
    }
}