/* Contenedor del video de fondo */
.video-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2; /* Asegura que el video esté detrás del contenido */
}

/* Video de fondo */
#video-background {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Asegura que el video cubra toda la pantalla */
}

/* Capa de color con opacidad para oscurecer el video */
.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 1); /* Aquí puedes ajustar el nivel de oscuridad */
    z-index: -1; /* Asegura que la capa esté detrás del contenido */
}

/* Fondo */
body {
    background-size: cover;
    background-position: center;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    margin: 0;
    padding-top: 50px;
}

/* Contenido */
.content {
    position: relative; /* Esto asegura que el contenido se coloque sobre el video */
    z-index: 1; /* Coloca el contenido sobre la capa de video */
    text-align: center;
    color: white;
    max-width: 90%;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-sizing: border-box;
}

/* Imagen del logo */
.content img {
    max-width: 100%;
    height: 300px;
    display: block;
    margin: 0 auto;
}

/* Título "Jugá y ganá" */
h2 {
    font-size: 3rem;
    font-weight: bold;
    color: #fefefe;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8); 
    margin-bottom: 15px;
}

/* Animación "latido" */
@keyframes latido {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

.texto-grande {
    font-size: 2rem;
    font-weight: bold;
}

.latido {
    display: inline-block;
    animation: latido 1s infinite ease-in-out;
}

/* Botón de WhatsApp */
.btn-whatsapp {
    background-color: #d32525;
    color: white;
    font-size: 26px;
    font-weight: bold;
    padding: 14px 30px;
    border-radius: 10px;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 300px;
    width: 100%;
    height: 60px;
    position: relative;
}

.btn-whatsapp span {
    flex-grow: 1;
    text-align: center;
    display: block;
}

.btn-whatsapp img {
    width: 40px;
    height: auto;
    position: absolute;
    right: 15px;
}

/* Estilo para el footer */
.footer {
    background-color: #000; /* Fondo negro */
    color: white; /* Texto blanco */
    text-align: center; /* Centrado del texto */
    padding: 15px 0; /* Espaciado interno */
    position: fixed; /* Fijado en la parte inferior */
    left: 0;
    bottom: 0;
    width: 100%; /* Ancho completo */
    font-size: 1rem; /* Tamaño del texto */
}

.footer p {
    margin: 0; /* Elimina el margen por defecto */
}


/* Responsividad */
@media (max-width: 767px) {
    h2 {
        font-size: 2rem;
    }

    .content {
        padding: 15px;
    }

    .btn-whatsapp {
        font-size: 18px;
        padding: 10px 20px;
    }

    .banner {
        padding: 5px 0;
    }

    .scrolling-list li {
        font-size: 1.2em;
        padding: 0 30px;
    }
}

@media (max-width: 480px) {
    .btn-whatsapp img {
        width: 20px;
    }
}
