@import url('https://fonts.googleapis.com/css2?family=Roboto+Serif:ital,opsz,wght@0,8..144,100..900;1,8..144,100..900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
    list-style: none;
}

body {
    font-family: "Roboto Serif", serif;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

.header {
    background-image: linear-gradient(rgb(255, 255, 255, 0.1), rgba(0, 0, 0, 0.4)), url(images-index/Local.webp);
    background-position: center left top;
    background-size: cover;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    min-height: 70vh;
    padding: 80px 0 0 0;
}

/* Estilos generales para pantallas grandes */
.menu {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 30px;
    box-sizing: border-box;
    /* Asegura que el padding no afecte el tamaño del contenedor */
}

.menu input {
    display: none;
}

.logo {
    color: blue;
    font-size: 25px;
    font-weight: 800;
    text-transform: uppercase;
}

.logo img {
    width: 250px;
    /* Ajusta según el tamaño de tu logo */
    max-width: 100%;
    /* Asegura que el logo no se salga del contenedor */
}

.menu .navbar ul {
    display: flex;
    justify-content: center;
    width: 100%;
    list-style: none;
    padding: 0;
    margin: 0;
}

.menu .navbar ul li {
    flex: 1;
    /* Hace que los elementos del menú ocupen el espacio disponible de manera uniforme */
    text-align: center;
    align-content: center;
}

.menu .navbar ul li i {
    display: none;
}

.menu .navbar ul li a {
    font-size: 18px;
    padding: 20px;
    color: black;
    display: block;
    font-weight: 600;
    box-sizing: border-box;
    /* Asegura que el padding no afecte el tamaño del enlace */
    text-decoration: none;
    /* Opcional, para eliminar el subrayado */
}

.menu .navbar ul li a:hover {
    color: whitesmoke;
}

.menu-icono {
    width: 25px;
}

.menu label {
    cursor: pointer;
    display: none;
}

.header-content {
    display: flex;
}

.header-txt {
    width: 50%;
}

.header-txt h1 {
    font: 70px;
    line-height: 65px;
    color: black;
    text-shadow:
        -1px -1px 0 white,
        1px -1px 0 white,
        -1px 1px 0 white,
        1px 1px 0 white;
    margin-bottom: 20px;
}

.header-txt span {
    font-size: 70px;
    color: blue;
}

.header-txt p {
    font-size: 16px;
    color: white;
    margin-bottom: 30px;
}

.header-img {
    width: 50%;
    text-align: center;
}

.header-img img {
    height: 550px;
}

.buttons {
    display: flex;
}

.btn-1 {
    display: inline-block;
    padding: 13px 20px;
    border: 1px solid white;
    color: white;
    border-radius: 15px;
    margin-right: 30px;
    font-size: 16px;
    text-transform: capitalize;
}

.btn-1:hover {
    background-color: blue;
    color: white;
}

.btn-2 {
    display: inline-block;
    padding: 13px 20px;
    border: 1px solid blue;
    color: blue;
    border-radius: 15px;
    margin-right: 30px;
    margin-left: 30px;
    font-size: 16px;
    text-transform: capitalize;
}

.btn-2:hover {
    background-color: blue;
    color: white;
}

.menu-pl {
    padding: 0 0 100px 0;
}

h2 {
    font-size: 40px;
    color: black;
    margin-bottom: 40px;
}

span {
    color: blue;
}

.general-content {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    grid-gap: 35px;
}

.services-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 35px;
}

.general-txt {
    border-radius: 25px;
    box-shadow: 0 0 20px black;
    padding-bottom: 35px;
}

.services-txt {
    border-radius: 25px;
    box-shadow: 0 0 20px black;
    padding: 15px;
}

.info-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 85px;
}

.info-txt {
    border-radius: 25px;
    box-shadow: 0 0 20px black;
    padding: 50px;
    margin-bottom: 8%;
}

.info-txt h1 {
    color: black;
    text-align: center;
}

.info-txt h2 {
    color: black;
    text-align: center;
}

.info-txt p {
    color: black;
    margin-left: 5%;
}

.general-txt img {
    border-radius: 25px 25px 25px 25px;
    width: 30%;
    height: 50%;
    margin-left: 27px;
    margin-top: 20px;
}

.services-txt img {
    border-radius: 25px;
    width: 100%;
    height: 250px;
}

.general-txt h3 {
    font-size: 18px;
    color: black;
    padding: 25px 25px 10px 25px;
}

.general-txt p {
    font-size: 16px;
    color: black;
    padding: 0 25px 20px 25px;
}

.prices {
    padding: 0 25px 10px 25px;
    display: flex;
    justify-content: space-between;
}

.prices {
    color: blueviolet;
    font-size: 18px;
    font-weight: 600;
}

.btn-3 {
    display: inline-block;
    background-color: blue;
    font-size: 14px;
    padding: 7px 15px;
    color: white;
    border-radius: 10px;
}

.mision {
    padding: 100px 0;
    margin-bottom: 100px;
    background-color: rgba(0, 0, 255, 0.6);
}

.mision-content {
    display: flex;
}

.mision-txt {
    width: 50%;
}

.mision-txt h2 {
    margin-top: 10%;
    color: black;
}

.mision-txt p {
    font-size: 16px;
    color: white;
    margin-bottom: 30px;
}

.mision-txt img {
    border-radius: 25px;
    box-shadow: 0 0 20px black;
    width: 80%;
    margin-left: 25%;
}

.vision {
    padding-bottom: 100px;
    display: flex;
}

.vision-img {
    width: 50%;
}

.vision-img img {
    border-radius: 25px;
    box-shadow: 0 0 20px black;
    width: 80%;
}

.vision-txt {
    width: 50%;
    padding-left: 55px;
    margin-top: 5%;
}

.vision-txt p {
    font-size: 16px;
    color: black;
}

.politica {
    padding: 100px 0;
    margin-bottom: 100px;
    background-color: rgba(0, 0, 255, 0.6);
}

.politica-content {
    display: flex;
}

.politica-txt {
    width: 50%;
}

.politica-txt h2 {
    margin-top: 10%;
    color: black;
}

.politica-txt p {
    font-size: 16px;
    color: white;
    margin-bottom: 30px;
}

.politica-txt img {
    border-radius: 25px;
    box-shadow: 0 0 20px black;
    width: 80%;
    margin-left: 25%;
    margin-top: 5%;
}

.footer {
    padding: 50px 0;
    background-color: black;
}

.footer-content {
    display: flex;
    justify-content: space-between;
}

.footer p {
    text-align: center;
    color: white;
}

.link h3 {
    color: white;
    font-size: 18px;
    margin-bottom: 15px;
}

.link a {
    color: white;
    font-size: 16px;
    display: block;
    margin-bottom: 10px;
}

.link a:hover {
    color: blue;
}

.info {
    max-width: 1200px;
    margin: auto;
    padding: 32px;
}

.info h1 {
    text-align: center;
    font: 70px;
    line-height: 65px;
    color: black;
}

.material-symbols-outlined {
    color: black;
    margin-left: -3%;
    margin-top: -5%;
}

.info-txt i {
    font-size: 32px;
    font-weight: 500;
}

.info-txt a {
    color: black;
    font: bold;

}

.container iframe {
    width: 600px;
    height: 450px;
    border-radius: 25px;
    margin-left: 25%;
    display: block;
    margin: 0 auto;
}

.redes-sociales {
    position: absolute;
    left: 50%;
    transform: translate(-50%, -50%);
}

.redes-sociales i {
    text-align: center;
    font-size: 25px;
    color: black;
    margin: 20px;
    border-radius: 50%;
    padding: 15px;
    box-shadow: 0px 5px 10px rgb(from 0, 0, 0, .35);
    transition: .3s ease;
}

.fa-envelope:hover {
    background-color: red;
    color: white;
    box-shadow: 0 0 15px red,
        0 0 45px red,
        0 0 75px red,
        0 0 115px red;
}

.fa-facebook:hover {
    background-color: blue;
    color: white;
    box-shadow: 0 0 15px blue,
        0 0 45px blue,
        0 0 75px blue,
        0 0 115px blue;
}

.fa-instagram:hover {
    background-color: purple;
    color: white;
    box-shadow: 0 0 15px purple,
        0 0 45px purple,
        0 0 75px purple,
        0 0 115px purple;
}

.fa-whatsapp:hover {
    background-color: #25D366;
    color: white;
    box-shadow: 0 0 20px #25D366,
        0 0 50px #25D366,
        0 0 80px #25D366,
        0 0 120px #25D366;
}

.phone-icon {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 40px;
    display: flex;
    /* Utilizamos flexbox para centrar el contenido vertical y horizontalmente */
    align-items: center;
    /* Centramos verticalmente */
    justify-content: center;
    /* Centramos horizontalmente */
    background-color: red;
    color: black;
    border-radius: 50%;
    font-size: 30px;
    box-shadow: 4px 4px 6px black;
    z-index: 100;
}

.phone-icon:hover {
    color: white;
}

.slider {
    width: 75vw;
    height: auto;
    margin: auto;
    overflow: hidden;
    white-space: nowrap;
    margin-bottom: 10%;
}

.slider .slide-track {
    align-items: center;
    display: flex;
    animation: scroll 40s linear infinite;
    -webkit-animation: scroll 40s linear infinite;
    width: calc(200px * 19);
}

.slider .slide {
    width: 200px;
}

.slider .slide img {
    width: 100%;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(-200px * 19));
    }
}

.swiper {
    width: 100%;
}

.swiper-slide {
    width: 300px;
    height: 300px;
    background-color: rgba(0, 0, 0, 0.2);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    text-align: center;
    border-radius: 15px;
    margin: 40px;
}

.product-img {
    display: flex;
    justify-content: center;
    /* Centrar horizontalmente */
    align-items: center;
    /* Centrar verticalmente */
    height: 100%;
    /* Para asegurarse de que ocupe toda la altura del contenedor */
}

.product-img img {
    max-width: 100%;
    /* Ajustar el ancho máximo de la imagen al contenedor */
    max-height: 100%;
    /* Ajustar la altura máxima de la imagen al contenedor */
}

.overlay {
    position: relative;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.container-contact {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.form-container {
    background-color: rgb(255, 255, 255, 0.9);
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1), 0 1px 3px rgba(0, 0, 0, 0.08);
    margin-bottom: 50px;
}

.form-container h1 {
    text-align: center;
    margin-bottom: 25px;
}

.form-container h2 {
    font-size: small;
    text-align: center;
    margin-bottom: 25px;
}

.form-container input[type="text"],
.form-container input[type="email"],
.form-container input[type="tel"],
.form-container textarea {
    width: 100%;
    padding: 10px;
    margin-top: 15px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-sizing: border-box;
}

.form-container input[type="checkbox"] {
    margin-left: 25%;
}

.form-container button[type="submit"] {
    width: 100%;
    padding: 10px;
    background-color: #4CAF50;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    margin-top: 5%;
}

.ampliada {
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 999;
}

.ampliado {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    height: 50%;
    object-fit: contain;
    z-index: 999;
    background: rgba(0, 0, 0, 0.8);
}

/* Estilos para el contenedor de los videos */
.video-container {
    width: 100%;
    /* Ajusta el ancho según tu diseño */
    height: 300px;
    /* Altura del contenedor de video */
    margin: 0 auto;
    /* Centra el contenedor horizontalmente */
    position: relative;
    /* Posición relativa para que los elementos absolutos se posicionen correctamente */
    display: flex;
    /* Para que los videos se alineen horizontalmente */
    justify-content: center;
    /* Centra los videos horizontalmente */
}

/* Estilos para los videos */
.video-container video {
    margin-left: 50px;
    width: auto;
    /* Ancho automático para mantener la proporción original del video */
    height: 100%;
    /* Altura del video al 100% del contenedor */
    object-fit: contain;
    /* Escala el video para que se ajuste al contenedor sin cortar ninguna parte */
    position: absolute;
    /* Posición absoluta para que el video se ajuste al contenedor */
    top: 0;
    /* Coloca el video en la parte superior del contenedor */
    left: 0;
    /* Coloca el video en la parte izquierda del contenedor */
}


/* Estilos específicos para pantallas medianas (tabletas y dispositivos móviles en orientación horizontal) */
@media screen and (max-width: 991px) {
    .menu {
        position: fixed;
        top: auto;
        bottom: 0;
        padding: 10px 20px;
        background-color: rgba(0, 0, 0, 0.2);
        justify-content: center;
        z-index: 100;
        /* Asegura que el fondo sea más visible */
    }

    .menu .navbar ul {
        display: flex;
        justify-content: center;
        width: 100%;
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .menu .navbar ul li {
        flex: 1;
    }

    .menu .navbar ul li a {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        font-size: 12px;
        color: #000;
        text-decoration: none;
        padding: 5px;
    }

    .menu .navbar ul li a i {
        display: contents;
        font-size: 18px;
        margin-bottom: 5px;
    }

    .menu .navbar ul li a:hover {
        color: blue;
        background-color: rgba(255, 255, 255, 0.1);
    }


    .header {
        background-image: linear-gradient(rgb(255, 255, 255, 0.1), rgba(0, 0, 0, 0.4)), url(images-index/Local.webp);
        background-position: center;
        background-size: 900px;
        background-repeat: no-repeat;
        display: flex;
        align-items: center;
        min-height: 70vh;
        padding: 80px 0 0 0;
    }

    .header-content {
        flex-direction: column;
        padding: 30px 30px 50px 30px;
        text-align: center;
    }

    .header-txt {
        width: 100%;
    }

    .header-txt p {
        font-size: 13px;
    }

    .header-txt h1 {
        font-size: 25px;
    }

    .header-txt span {
        font-size: 30px;
    }

    .header-img {
        width: 100%;
    }

    .header-img img {
        width: 300px;
    }

    .buttons {
        justify-content: center;
    }

    .btn-1 {
        margin: 0 10px;
    }

    .btn-2 {
        margin: 0 10px;
    }

    .menu-pl {
        padding: 0 30px 30px 30px;
        margin-bottom: -70px;
        margin-top: -10px;
    }

    .container {
        margin-top: -5px;
        margin-bottom: 30px;
    }

    .menu-pl span {
        font-size: 20px;
    }

    .menu-pl h2 {
        font-size: 15px;
        text-align: center;
    }

    .general-content {
        display: inline;
    }

    .general-txt {
        text-align: center;
        border-radius: 25px;
        box-shadow: 0 0 20px black;
        padding-bottom: 15px;
        margin-top: -10%;
    }

    .general-txt img {
        border-radius: 25px 25px 25px 25px;
        width: 80%;
        height: 50%;
        margin: auto;
        margin-top: 20px;
    }

    .general-txt p {
        font-size: 10px;
    }

    body {
        background-color: white;
    }

    .services-content {
        display: inline;
    }

    .services-txt {
        text-align: center;
        font-size: 10px;
        border-radius: 25px;
        box-shadow: 0 0 20px black;
        margin-top: 50px;
    }

    .services-txt img {
        border-radius: 25px 25px 25px 25px;
        width: 80%;
        height: 50%;
        margin: auto;
        margin-top: 20px;
    }

    .mision {
        padding: 30px;
        margin-bottom: 30px;
        text-align: center;
    }

    .mision-content {
        flex-direction: column;
    }

    .mision-txt {
        width: 100%;
    }

    .mision-txt h2 {
        font-size: 22px;
        text-align: center;
    }

    .mision-txt p {
        margin-top: -30px;
        text-align: center;
        font-size: 12px;
        margin-bottom: 20px;
    }

    .mision-txt img {
        width: 80%;
        margin: 10%;
    }

    .vision {
        padding: 30px;
        flex-direction: column;
    }

    .vision-img {
        width: 100%;
    }

    .vision-img img {
        width: 100%;
    }

    .vision-txt h2 {
        font-size: 22px;
        text-align: center;
    }

    .vision-txt p {
        margin-top: -30px;
        font-size: 12px;
        width: 100%;
        padding-left: 0;
        text-align: center;
    }

    .vision-txt {
        width: 100%;
        padding-left: 0;
        text-align: center;
    }

    .politica {
        padding: 30px;
        margin-bottom: 30px;
        text-align: center;
    }

    .politica-content {
        flex-direction: column;
    }

    .politica-txt {
        width: 100%;
    }

    .politica-txt img {
        width: 100%;
        margin: 0;
        margin-top: 20px;
    }

    .politica-txt h2 {
        font-size: 22px;
        margin-bottom: 15px;
    }

    .politica-txt p {
        font-size: 12px;
        margin-bottom: 0;
    }

    .politica-img img {
        width: 100%;
        align-items: center;
    }

    .footer {
        margin-top: 100px;
        padding: 30px;
        text-align: center;
    }

    .footer-content {
        flex-direction: column;
    }

    .slide img {
        max-width: 100px;
        max-height: 70px;
        height: auto;
    }

    .info-txt h2 {
        font-size: 22px;
        margin-bottom: 15px;
    }

    .info-content {
        display: inline;
    }

    .info-txt h1 {
        text-align: center;
        font-size: 15px;
        border-radius: 25px;
    }

    .info-txt p {
        width: 100%;
        text-align: center;
        font-size: 10px;
        border-radius: 25px;
        word-wrap: break-word;
    }

    .container iframe {
        max-width: 100%;
        /* Para hacerlo responsive */
        width: 100%;
        /* Para ocupar todo el ancho disponible */
        height: auto;
        /* Para mantener la proporción de aspecto */
        max-height: 250px;
        /* Altura máxima deseada */
        border-radius: 25px;
        margin: 0 auto;
    }

    .redes-sociales {
        display: flex;
        text-align: center;
        font-size: 5px;
        color: black;
        margin-top: 20px;
        border-radius: 50%;
        padding: 15px;
        box-shadow: 0px 5px 10px rgb(from 0, 0, 0, .35);
        transition: .3s ease;
    }

    .footer {
        font-size: 10px;
    }

    .link a {
        font-size: 12px;
        margin-bottom: -5px;
    }

    .phone-icon {
        position: fixed;
        width: 40px;
        /* Reducimos el ancho del icono */
        height: 40px;
        /* Reducimos la altura del icono */
        bottom: 90%;
        /* Lo movemos más cerca del borde inferior */
        right: 15px;
        /* Lo movemos más cerca del borde derecho */
        display: flex;
        align-items: center;
        justify-content: center;
        background-color: rgba(255, 0, 0, 0.8);
        color: black;
        border-radius: 50%;
        font-size: 24px;
        /* Mantenemos el tamaño de fuente deseado */
        box-shadow: 2px 2px 3px #999;
        z-index: 100;
    }

    .swiper-slide {
        width: 200px;
        height: 200px;
        background-color: rgba(0, 0, 0, 0.2);
        box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
        text-align: center;
        border-radius: 15px;
        margin: 20px;
    }

    .ampliada {
        position: fixed;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        max-width: 90%;
        max-height: 90%;
        object-fit: contain;
        z-index: 999;
        /* Z-index mayor que el del overlay */
    }
    .ampliado {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
    z-index: 999;
}

.video-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 998;
}


    .overlay {
        position: relative;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.6);
        z-index: 998;
    }

    .video-container {
        width: 100%;
        /* Ajusta el ancho según tu diseño */
        height: 400px;
        /* Altura del contenedor de video */
        margin: 0 auto;
        /* Centra el contenedor horizontalmente */
        position: relative;
        /* Posición relativa para que los elementos absolutos se posicionen correctamente */
        display: flex;
        /* Para que los videos se alineen horizontalmente */
        justify-content: center;
        /* Centra los videos horizontalmente */
    }

    /* Estilos para los videos */
    .video-container video {
        top: -100px;
        margin-left: 45px;
        width: 55%;
        /* Ancho automático para mantener la proporción original del video */
        height: 100%;
        /* Altura del video al 100% del contenedor */
        object-fit: contain;
        /* Escala el video para que se ajuste al contenedor sin cortar ninguna parte */
        position: absolute;
    }
}

/* Estilos específicos para pantallas pequeñas (dispositivos móviles en orientación vertical) */
@media screen and (max-width: 767px) {
    .menu {
        position: fixed;
        top: auto;
        bottom: 0;
        padding: 10px;
    }

    .menu .navbar ul li a {
        font-size: 14px;
        padding: 10px;
    }

    .menu .navbar ul li i {
        display: contents;
    }
}