body {
    font-family: "Red Hat Display", serif;
    margin: 0;
    padding: 0;
    background:#6BD9F2;
    color: #FFFFFF;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    align-items: center;
    text-align: center;
    justify-content: center;
    z-index: 4;
}

.cinco-pts{
    width: 100%;
    height: 100%;
}

.cinco-mdia{
    display: none;
}

.Titulo{
    font-size: 6vW; 

}

video{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 50%;
}

.LECE h1 {
    font-size: 3.5vw;
    margin-bottom: 20px;
    border-width: 2px;
    margin-top: 80px;
}

.descuentos h1{
    margin-top: 10px;
}

h2 {
    font-size: 2em;
    margin-bottom: 15px;
}

.container p{
    margin-top: 20px;
    font-size: 30px;
}


.banner{
    width: 100%;
    margin-bottom: 15vh;
    position: relative;
}

/* Estilos para el botón de WhatsApp */
.whatsapp-button {
    position: fixed;
    bottom: 20px;
    left: 20px;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    z-index: 1000;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.whatsapp-button img {
    width: 30px;
    height: 30px;
}

/* Efecto al hacer hover en el botón */
.whatsapp-button:hover {
    transform: scale(1.1);
    background-color: #128c7e; /* Cambio de color al hacer hover */
}

/* Estilos para el menú desplegable */
.whatsapp-menu {
    position: fixed;
    bottom: 90px;
    left: 20px;
    background-color: white;
    border-radius: 15px; /* Bordes más redondeados */
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2); /* Sombra más pronunciada */
    display: flex;
    flex-direction: column;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
    padding: 10px 0; /* Espaciado interno */
}

/* Clase para mostrar el menú */
.whatsapp-menu.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Estilos para los botones del menú */
.whatsapp-menu a {
    padding: 12px 20px;
    text-decoration: none;
    color: #333;
    font-family: Arial, sans-serif;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 10px; /* Espacio entre ícono y texto */
    transition: background-color 0.3s ease, color 0.3s ease;
}

/* Estilos para los íconos */
.whatsapp-menu a i {
    font-size: 18px; /* Tamaño del ícono */
    color: #25d366; /* Color del ícono */
}

/* Efecto hover en los botones */
.whatsapp-menu a:hover {
    background-color: #f0f0f0; /* Fondo al hacer hover */
    color: #25d366; /* Cambio de color del texto */
    border-radius: 10px; /* Bordes redondeados al hacer hover */
}

/* Responsive */
@media (max-width: 768px) {
    .whatsapp-button {
        width: 50px;
        height: 50px;
        bottom: 15px;
        left: 15px;
    }

    .whatsapp-button img {
        width: 25px;
        height: 25px;
    }

    .whatsapp-menu {
        bottom: 75px;
        left: 15px;
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 2.5rem; /* Tamaño más pequeño para móviles */
    }
}

        /* Estilos responsivos */
        @media (max-width: 768px) {
            .prev, .next {
                font-size: 14px;
            }
            
                        .cinco-pts{
                display: none;
            }
            
            .cinco-mdia{
                display: block;
                width: 100%;
                height: 100%;
            }
        }


        /* Contenedor principal de la imagen */
        .image-container {
            position: relative;
            width: 50vw; /* 50% del ancho de la ventana para laptops */
            height: auto;
            overflow: hidden;
            margin: 0 auto;
            transition: transform 0.5s ease-in-out; /* Transición para agrandamiento */
        }

        .image-container img {
            width: 100%;
            transition: transform 0.5s ease-in-out; /* Transición suave de la imagen */
        }

        /* Efecto de agrandamiento en hover en laptops o PC */
        @media (min-width: 768px) {
            .image-container:hover {
                transform: scale(1.2); /* Agranda el contenedor completo */
            }
        }

        /* Estilos responsivos para móviles */
        @media (max-width: 767px) {
            .image-container {
                width: 90vw; /* Ancho más pequeño en móviles */
            }
        }

        /* Modal de pantalla completa para móviles */
        .modal {
            display: none; /* Oculto inicialmente */
            position: fixed;
            z-index: 999;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.9);
            justify-content: center; /* Centramos horizontalmente */
            align-items: center;     /* Centramos verticalmente */
        }

        .modal img {
            width: 90vw; /* Imagen ajustada en pantallas móviles */
            height: auto;
            max-height: 80vh;
            transition: transform 0.5s ease-in-out;
            cursor: zoom-in;
        }

        /* Zoom centrado en móviles */
        .modal img:active {
            transform: scale(2); /* Aumenta el tamaño de la imagen */
            cursor: zoom-out;
        }

        /* Botón para cerrar la imagen */
        .close {
            position: absolute;
            top: 20px;
            right: 20px;
            font-size: 30px;
            color: white;
            cursor: pointer;
        }

        /* Centrado en móviles al hacer clic */
        @media (max-width: 767px) {
            .modal img {
                object-fit: contain;
                transform-origin: center; /* Mantener centrada la imagen al agrandar */
            }
        }

/* Estilos para el botón de contacto */
.contact-button {
    position: fixed;
    bottom: 20px;
    right: 100px; /* Ajusta la posición para que no se solape con el botón de WhatsApp */
    width: 60px;
    height: 60px;
    background-color: #007bff; /* Color azul para diferenciarlo */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    z-index: 1001; /* Asegura que esté por encima de otros elementos */
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.contact-button i {
    color: white;
    font-size: 24px; /* Tamaño del ícono */
}

/* Efecto al hacer hover en el botón */
.contact-button:hover {
    transform: scale(1.1);
    background-color: #0056b3; /* Cambio de color al hacer hover */
}

/* Estilos para el formulario de contacto */
.contact-form {
    display: none;
    position: fixed;
    bottom: 90px; /* Ajusta la posición */
    right: 100px; /* Misma posición horizontal que el botón */
    background-color: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    width: 300px;
}

.contact-form h2 {
    margin-top: 0;
    font-size: 1.5em;
    color: #333;
}

.contact-form label {
    display: block;
    margin-bottom: 5px;
    color: #333;
}

.contact-form input {
    width: 100%;
    padding: 8px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.contact-form button[type="submit"] {
    background-color: #25d366;
    color: white;
    border: none;
    padding: 10px 15px;
    border-radius: 5px;
    cursor: pointer;
    width: 100%;
}

.contact-form button[type="submit"]:hover {
    background-color: #128c7e;
}

/* Botón para cerrar el formulario */
.close-form {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 20px;
    cursor: pointer;
    color: #333;
}

.close-form:hover {
    color: #000;
}