/*CUERPO PAGINA*/
body {
    margin: 0;
    margin-top: 8%;
    background-color: #ffffff;
}

/*PIE DE PAGINA*/
footer {
    margin-top: 5%;
    background-color: #d6e8df;
    display: flex;
    padding: 2rem 1rem;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #333;
    box-shadow: 0 -2px 8px rgba(0, 0, 0, 0.1);
}

footer .contacto {
    max-width: 500px;
}

footer .contacto h3 {
    margin-bottom: 1rem;
    font-size: 1.5rem;
    color: #2c6754;
}

footer .contacto img {
    width: 20px;
    vertical-align: middle;
    margin-right: 0.5rem;
}

footer .contacto a {
    color: #2c6754;
    text-decoration: none;
    font-weight: bold;
    display: inline-block;
    margin: 0.5rem 0;
    transition: color 0.3s ease;
}

footer .contacto a:hover {
    color: #1e4c3c;
}


/*BARRA NAVEGACION*/
.barraNavegacion {
    position: fixed;
    /*La barra siempre esta visible*/
    top: 0;
    left: 0;
    width: 100%;
    background-color: #d6e8df;
    display: flex;
    align-items: center;
    justify-content: space-around;
    flex-wrap: wrap;
    /*Permite que el menú baje en móvil*/
    z-index: 1000;
    /*Permite asegurarte de que quede por encima de otros elementos */
}

.barraNavegacion img {
    height: 100px;
    width: auto;
    padding-right: auto;
}

.Menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 20px;

}

.Menu li {
    margin-left: 30px;
    font-size: large;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}

.Menu li,
a {
    text-decoration: none;
    color: #013f42;
}

/*OCULTAR BOTON EN LA PANTALLA GRANDE*/
.menu-desplegable {
    display: none;
    font-size: 30px;
    background: none;
    border: none;
    cursor: pointer;
    /*Puntero de forma de mano*/

}

/*ENCABEZADO "BIENVENIDOS"*/
.bienvenida {
    justify-items: center;
    text-align: center;
    font-size: 20px;

}

/*ENCABEZADO "CONTENEDOR"*/
.ofrecemos {
    margin-top: 3%;
    justify-items: center;
    text-align: center;
    font-size: 20px;
}

/*Carrusel de imagenes*/
.carrusel {
    width: 100%;
    height: 700px;
    overflow: hidden;
    position: relative;
    margin: 0;
    padding: 0;

}

.carrusel img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.carrusel img.active {
    opacity: 1;
}


/*TODOS LOS ENCABEZADOS H1*/
h1 {
    font-family: 'Times New Roman', Times, serif;
    font-style: italic;
    color: #057075;
}

/*TODOS LOS ENCABEZADO H3*/
h3 {
    font-family: 'Times New Roman', Times, serif;
    font-style: italic;
    color: #057075;
}

.tabla-ofrecemos {
    margin-top: 2%;
}

.tabla-ofrecemos th {
    color: #057075;
    font-size: 25px;

}

.tabla-ofrecemos tr {

    text-align: center;
}

.ofrecemos,
.tabla-ofrecemos {
    visibility: hidden;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.ofrecemos.visible,
.tabla-ofrecemos.visible {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
}

/*SOBRE NOSOTROS*/

.nosotros .cabecera {
    text-align: center;
    font-size: 30px;
}

.nosotros .cuerpo {
    display: flex;
    margin-left: 10%;
    margin-right: 10%;
    gap: 5%;
}

.nosotros .cuerpo h3 {
    font-size: 25px;
}

.nosotros .cuerpo img {
    width: 600px;
    height: 500px;
    box-shadow: 0 20px 60px #d6e8df;
}

/*Nuestra cueva*/

.portada-cueva img{
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.plantilla-cueva {
    display: flex;
    margin-left: 2%;
    margin-right: 2%;
}

.bloque-cueva{
    margin-left: 5%;
    margin-right: 5%;
}

.intro-cueva h4 {
    font-size: 30px;
    color: #057075;
    font-family: 'Times New Roman', Times, serif;
    font-style: italic;
    text-align: center;
}

.detalles-cueva h4 {
    font-size: 20px;
    color: #057075;
    font-family: 'Times New Roman', Times, serif;
    font-style: italic;
    text-align: center;
}

.detalles-cueva ul{
    list-style: none;
    margin-top: 5%;
}

.detalles-cueva li{
    margin-top: 4%;
    font-size: large;
}

.carruseles {
    display: block;
}

.gallery-top {
    width: 100%;
    /*Usamos el 100% del contenedor padre "plantilla-cueva"*/
    max-width: 800px;
    margin: 40px auto;

}

.gallery-top img {
    margin-left: 10%;
    width: 650px;
    height: 700px;
    border-radius: 15px;
    object-fit: cover;
}

.gallery-thumbs {
    width: 100%;
    max-width: 800px;
    margin: 10px auto;
    box-sizing: border-box;
}

.gallery-thumbs .swiper-slide {
    height: 80px;
    margin-right: 0px
}

.gallery-thumbs img {
    height: 100%;
    border-radius: 10px;
    object-fit: cover;
}

/* Estilos para el modal */
.modal {
    display: none;
    /* Oculto por defecto */
    position: fixed;
    z-index: 9999;
    padding-top: 60px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.8);
}

/* Imagen ampliada dentro del modal */
.modal-content {
    margin: auto;
    display: block;
    max-width: 90%;
    max-height: 80vh;
    border-radius: 10px;
}

/* Botón cerrar (X) */
.close {
    position: fixed;
    top: 20px;
    right: 30px;
    color: white;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    user-select: none;
    z-index: 10000;
}

.close:hover {
    color: #bbb;
}

/*Que hacer*/

.intro {
    margin-left: 1%;
    font-size: larger
}

.fila {
    display: flex;
    margin-top: 2%;
    margin-right: 17%;
    margin-left: 7%;
    gap: 5%;
}

.fila h3,
p {
    font-size: larger;
}

.fila div {
    text-align: center;
}

.fila img {
    width: 500px;
    height: 300px;
}

.fila a {
    background-color: #d6e8df;
    border: none;
    padding: 10px;
    font-size: 16px;
    border-radius: 6px;
}

.fila-2 {
    display: flex;
    margin-top: 2%;
    margin-right: 17%;
    margin-left: 17%;
    gap: 5%;
}

.fila-2 h3,
p {
    font-size: larger;
}

.fila-2 div {
    text-align: center;
}

.fila-2 img {
    width: 500px;
    height: 300px;
}

.fila-2 a {
    background-color: #d6e8df;
    border: none;
    padding: 10px;
    font-size: 16px;
    border-radius: 6px;
}

/*senderismo*/
.rutas img {
    height: 400px;
    width: 450px;
    padding-top: 2%;
    padding-left: 4%;
    padding-right: 4%;
    padding-bottom: 15%;
    background-color: #fbf1e9;
    box-shadow: 0 12px 50px #d6e8df;
}

.tracamulas,
.chimeneas,
.pajarillo,
.playa,
.jabalcon {
    display: flex;
    gap: 10%;
    margin-left: 20%;
    margin-right: 20%;
    margin-bottom: 5%;
}

.rutas h3 {
    text-align: center;
    font-size: 30px;
}

/*Kayak*/
.acuatica {
    display: flex;
    gap: 10%;
    margin-left: 20%;
    margin-right: 20%;
    margin-bottom: 5%;
}

.actividad-acuatica h3 {
    text-align: center;
    font-size: 30px;
}

.acuatica img {
    height: 400px;
    width: 450px;
    margin-top: 15%;
    padding-top: 2%;
    padding-left: 4%;
    padding-right: 4%;
    padding-bottom: 15%;
    background-color: #fbf1e9;
    box-shadow: 0 12px 50px #d6e8df;
}

/*Aguas termales*/
.actividad-termal {
    display: flex;
    gap: 10%;
    margin-left: 20%;
    margin-right: 20%;
    margin-bottom: 5%;
}

.actividad-termal .texto {
    margin-top: 10%;
}

.termales h3 {
    text-align: center;
    font-size: 30px;
}

.actividad-termal img {
    height: 400px;
    width: 450px;
    margin-top: 15%;
    padding-top: 2%;
    padding-left: 4%;
    padding-right: 4%;
    padding-bottom: 15%;
    background-color: #fbf1e9;
    box-shadow: 0 12px 50px #d6e8df;
}

.baño {
    display: flex;
    gap: 10%;
    margin-left: 20%;
    margin-right: 20%;
    margin-bottom: 5%;
}

.baño .texto {
    margin-top: 10%;
}

.baño img {
    height: 400px;
    width: 450px;
    margin-top: 15%;
    padding-top: 2%;
    padding-left: 4%;
    padding-right: 4%;
    padding-bottom: 15%;
    background-color: #fbf1e9;
    box-shadow: 0 12px 50px #d6e8df;
}

/*Gastronomia*/
.comida {
    display: flex;
    gap: 10%;
    margin-left: 20%;
    margin-right: 20%;
    margin-bottom: 5%;
}

.comida h3 {
    text-align: center;
    font-size: 30px;
}

.gastronomia h3 {
    text-align: center;
    font-size: 30px;
}

.comida .texto {
    margin-top: 5%;
}

.gastronomia img {
    height: 400px;
    width: 500px;
    margin-top: 15%;
    padding-top: 2%;
    padding-left: 4%;
    padding-right: 4%;
    padding-bottom: 15%;
    background-color: #fbf1e9;
    box-shadow: 0 12px 50px #d6e8df;
}

/*lugares*/
.sitios {
    display: flex;
    margin-left: 10%;
    margin-right: 10%;
    gap: 10%;
}

.sitios .texto {
    margin-top: 5%;
}

.sitios img {
    height: 550px;
    width: 500px;
    margin-top: 15%;
    padding-top: 2%;
    padding-left: 4%;
    padding-right: 4%;
    padding-bottom: 15%;
    background-color: #fbf1e9;
    box-shadow: 0 12px 50px #d6e8df;
}

/* UBICACION MAPS */
.ubicacion {
    display: flex;
    justify-content: center;
    margin: 10%;
    margin-bottom: 2%;
}

.informacion {
    font-size: 20px;
    background-color: #fcfbfb;
    border-radius: 12px;
    margin-right: 5%;
    box-shadow: 0 12px 50px #d6e8df;
}

.informacion h3 {
    margin-left: 15%;
}

.informacion .ubicaciones div {
    display: block;
    padding: 3%;
}

.formulario {
    background-color: #fcfbfb;
    border-radius: 12px;
    max-width: 400px;
    margin: 40px auto;
    margin-top: 100px;
    padding: 20px 25px;
    box-shadow: 0 12px 50px #d6e8df;
    /*Hacemos el bloque oculto al inicio y añadimos una transaccion suave*/
    visibility: hidden;
    /*Evistamos usar display porque es más robusto (no animable)*/
    opacity: 0;
    /* opacity + transform permite animaciones suaves*/
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.formulario.visible {
    /*Aquí hacemos visible el bloque tras el uso de JS*/
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
}

.formulario h3 {
    font-size: 26px;
    text-align: center;
    margin-bottom: 20px;
}

.formulario form {
    display: flex;
    flex-direction: column;
    font-size: 16px;
}

.formulario label {
    font-weight: 500;
    color: #333;
}

.formulario input,
.formulario textarea,
.formulario select {
    width: 100%;
    padding: 8px 10px;
    font-size: 15px;
    border-radius: 6px;
    border: 1px solid #ccc;
    background-color: #fff;
    box-sizing: border-box;
}

.formulario textarea {
    height: 120px;
    resize: none;
}

.formulario button {
    background-color: #d6e8df;
    border: none;
    padding: 10px;
    font-size: 16px;
    border-radius: 6px;
    cursor: pointer;
    margin-top: 10px;
    transition: background-color 0.3s ease;
}

/* Estilo para mensaje emergente confirmación */
.toast {
    position: fixed;
    top: 80px;
    right: 50px;
    background-color: #333;
    color: white;
    padding: 15px 20px;
    border-radius: 8px;
    opacity: 1;
    transition: opacity 1s ease-out;
    z-index: 1000;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
}

.toast.hide {
    opacity: 0;
}

/*Reserva*/
.bloque-busqueda {
    margin-bottom: 12%;
}

.calendario {
    justify-items: center;
    text-align: center;
    margin-bottom: 5%;
}

.form-calendario img {
    border-radius: 20px;
    height: auto;
    max-width: 100%;
    margin-bottom: 20px;
}

.form-calendario {
    background-color: #fcfbfb;
    padding: 30px 40px;
    border-radius: 12px;
    box-shadow: 0 12px 50px #d6e8df;
    text-align: center;
}

.form-calendario form {
    text-align: center;
    font-size: 20px;
    display: flex;
    gap: 10px;
}

.form-calendario input,
.form-calendario select,
.form-calendario button {
    padding: 5px;
    font-size: 16px;
    border-radius: 6px;
}

.resultados {
    justify-items: center;
    text-align: center;
}

.vivienda {
    display: flex;
    border-radius: 5px;
    box-shadow: 0 12px 50px #d6e8df;
    padding: 20px 30px;
    gap: 20px;
    align-items: center;
    opacity: 0;
    transform: translateX(-50px);
    animation: entradaIzquierda 0.6s ease forwards;
    animation-delay: var(--delay, 0s);
}

@keyframes entradaIzquierda {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.vivienda button {
    border: none;
    border-radius: 5px;
    background-color: #d6e8df;
    font-size: large;
}

.img-vivienda {
    width: 250px;
    height: 300px;
    border-radius: 5px;
}

.precio-noche {
    font-size: small;
}

.bloque-reserva {
    display: none;
    align-items: center;
    justify-content: center;
    gap: 200px;
    font-size: larger;
    opacity: 0;
    transform: translateX(-50px);
    animation: entradaIzquierda 0.6s ease forwards;
    animation-delay: var(--delay, 0s);
}

.datos-reserva {
    font-size: larger;
    border-radius: 10px;
    box-shadow: 0 12px 50px #d6e8df;
    padding: 30px 50px
}

.datos-reserva img {
    width: 250px;
    height: 300px;
    border-radius: 5px;
}

.datos-reserva button {
    width: 100%;
    border: none;
    border-radius: 5px;
    background-color: #d6e8df;
    padding: 10px 5px;

}

.form-reserva {
    border-radius: 10px;
    box-shadow: 0 12px 50px #d6e8df;
    padding: 3% 50px
}

.form-reserva input,
.form-reserva label,
.form-reserva button {
    display: block;
    width: 100%;
}

.form-reserva button {
    border: none;
    border-radius: 5px;
    background-color: #d6e8df;
    padding: 10px 5px;
}

.pago {
    display: none;
}

/*Ventana confirmacion / cancelacion*/

.ventana-confi_cancel {
    background-color: #d6e8df;
    font-size: larger;
    text-align: center;
    border-radius: 5px;
    margin-left: 20%;
    margin-right: 20%;
    margin-bottom: 9%;
    padding: 5%;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    color: #2e4a39;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/*Pie de pagina*/

.contacto {
    color: #057075;
    font-size: 20px;
    /*  border-radius: 30%;
    background-color: white;
    padding: 25px;
    border: 2px solid #573c23; */
}

.contacto a {
    color: inherit;
    text-decoration: none;
}


/*ESTILO TIPO MOVIL*/
@media (max-width:760px) {
    body{
        margin-top: 27%;
    }

    .barraNavegacion {
        flex-direction: row;
        /*colocar los elementos en fila*/
        align-items: flex-start;
        align-items: center;
    }

    .Menu {
        flex-direction: column;
        background-color: #d6e8df;
        display: none;
        /*Oculto por defecto*/
        width: 100%;
        padding: 0;

    }

    .Menu.show {
        display: flex;
        /*Se muestra al activar*/
    }

    .menu-desplegable {
        display: block;
        /*Pasa el contenido a forma de bloque*/
    }

    .Menu li {
        border-bottom: 1px solid#057075;
        width: 100%;
        /*Que el borde ocupe todo el ancho*/
        margin: 0;
        /*Elimina cualquier margen*/
        text-align: center;
        padding: 0;
    }

    .carrusel {
        height: 300px;
    }

    /*AJUSTAR LA TABLA A MEDIA*/

    .tabla-ofrecemos thead,
    tbody,
    th,
    td,
    tr {
        display: block;

    }

    .bienvenida p{
        margin: 0px 5%;
        font-size: 20px;
    }

    .ofrecemos{
        margin: 0px 3%;
    }

    .tabla-ofrecemos thead {
        display: none;
    }

    .tabla-ofrecemos td::before {
        content: attr(data-label);
        /*Añadimos el data-label en los td de cada columna*/
        display: block;
        font-weight: bolder;
        color: #057075;
        font-size: 20px;
    }
    /*Sobre nosotros*/
    .nosotros .cabecera {
        font-size: 24px;
        text-align: center;
        margin-bottom: 1rem;
    }

    .nosotros .cuerpo {
        display: flex;
        flex-direction: column; 
        margin-left: 5%;
        margin-right: 5%;
        gap: 1.5rem; 
        align-items: center; /
    }

    .nosotros .cuerpo .texto {
        width: 100%;
        font-size: 16px;
        line-height: 1.5;
        text-align: justify;
    }

    .nosotros .cuerpo h3 {
        font-size: 20px;
        margin-bottom: 0.5rem;
    }

    .nosotros .cuerpo img {
        width: 100%; 
        max-width: 400px; 
        height: auto; 
        box-shadow: 0 10px 30px #d6e8df;
        border-radius: 8px;
    }

    /*Nuestra cueva*/

    /* Portada responsive */
    .portada-cueva img {
        width: 100%;
        height: 200px;
        object-fit: cover;
    }

    /* Layout en columna */
    .plantilla-cueva {
        flex-direction: column;
        margin-left: 4%;
        margin-right: 4%;
    }

    .bloque-cueva {
        margin-left: 0;
        margin-right: 0;
    }

    .intro-cueva h4,
    .detalles-cueva h4 {
        font-size: 22px;
        text-align: center;
        margin-top: 1rem;
    }

    .detalles-cueva p {
        font-size: 16px;
        line-height: 1.5;
        text-align: justify;
    }

    .detalles-cueva ul {
        padding-left: 0;
        margin-top: 20px;
    }

    .detalles-cueva li {
        font-size: 16px;
        display: flex;
        align-items: center;
        gap: 10px;
    }

    .detalles-cueva li img {
        width: 24px;
        height: 24px;
    }

    /* Carruseles adaptados */
    .gallery-top {
        width: 100%;
        margin: 20px auto;
    }

    .gallery-top img {
        width: 90%;
        height: auto;
        margin: 0 auto;
        display: block;
    }

    .gallery-thumbs {
        width: 90%;
        margin: 10px auto;
    }

    .gallery-thumbs .swiper-slide {
        height: 60px;
    }

    .gallery-thumbs img {
        width: auto;
        height: 100%;
    }

    /* Modal sigue igual, ya es responsive */
    .modal-content {
        max-width: 95%;
        max-height: 75vh;
    }

    .close {
        font-size: 32px;
        top: 10px;
        right: 15px;
    }
    /*Qué hacer*/
    .intro {
        margin: 0 5%;
        font-size: 16px;
        text-align: center;
    }

    .fila,
    .fila-2 {
        flex-direction: column;
        margin: 0 5%;
        gap: 30px;
    }

    .fila div,
    .fila-2 div {
        text-align: center;
        margin-bottom: 20px;
    }

    .fila img,
    .fila-2 img {
        width: 100%;
        height: auto;
        max-width: 100%;
        border-radius: 8px;
    }

    .fila h3,
    .fila-2 h3 {
        font-size: 20px;
        margin-top: 10px;
        color: #057075;
    }

    .fila p,
    .fila-2 p {
        font-size: 16px;
        margin: 10px 0;
        padding: 0 10px;
        text-align: justify;
    }

    .fila a,
    .fila-2 a {
        display: inline-block;
        margin-top: 10px;
        background-color: #d6e8df;
        padding: 8px 12px;
        font-size: 14px;
        border-radius: 6px;
        text-decoration: none;
    }  
    /*Senderismo*/
    .rutas h3 {
        font-size: 20px;
        margin: 30px 10px 10px;
        text-align: center;
        color: #057075;
    }

    .tracamulas,
    .chimeneas,
    .pajarillo,
    .playa,
    .jabalcon {
        flex-direction: column;
        margin: 0 5%;
        gap: 20px;
    }

    .tracamulas div,
    .chimeneas div,
    .pajarillo div,
    .playa div,
    .jabalcon div {
        text-align: justify;
    }

    .rutas img {
        width: 100%;
        height: auto;
        padding: 0;
        margin-top: 10px;
        background-color: transparent;
        box-shadow: none;
        border-radius: 10px;
    }

    .rutas p {
        font-size: 16px;
        margin: 6px 0;
    }

    /*Kayak*/
    .actividad-acuatica h3 {
        font-size: 22px;
        margin: 20px 10px;
        color: #057075;
    }

    .acuatica {
        flex-direction: column;
        margin: 0 5%;
        gap: 20px;
    }

    .acuatica div {
        text-align: justify;
    }

    .acuatica img {
        width: 100%;
        height: auto;
        margin: 0;
        padding: 0;
        background-color: transparent;
        box-shadow: none;
        border-radius: 10px;
    }

    .acuatica p {
        font-size: 16px;
        margin-bottom: 12px;
    }

    /*Termales*/
    .termales h3 {
        font-size: 22px;
        margin: 20px 10px;
        color: #057075;
    }

    .actividad-termal,
    .baño {
        flex-direction: column;
        margin: 0 5%;
        gap: 20px;
    }

    .actividad-termal .texto,
    .baño .texto {
        margin-top: 0;
        text-align: justify;
    }

    .actividad-termal img,
    .baño img {
        width: 100%;
        height: auto;
        margin: 0;
        padding: 0;
        background-color: transparent;
        box-shadow: none;
        border-radius: 10px;
    }

    .actividad-termal p,
    .baño p {
        font-size: 16px;
        margin-bottom: 12px;
    }

    /*Gastronomia*/

    .gastronomia h3 {
        font-size: 24px;
        margin: 20px 10px;
        color: #057075;
    }

    .comida {
        flex-direction: column;
        margin: 0 5%;
        gap: 20px;
    }

    .comida .texto {
        margin-top: 0;
        text-align: justify;
    }

    .comida .texto h4 {
        font-size: 20px;
        margin-bottom: 10px;
        color: #444;
    }

    .gastronomia img {
        width: 100%;
        height: auto;
        margin: 0;
        padding: 0;
        box-shadow: none;
        background-color: transparent;
        border-radius: 10px;
    }

    .comida p {
        font-size: 16px;
        line-height: 1.5;
    }

    /*Lugares*/
    .sitios {
        flex-direction: column;
        margin: 0 5%;
        gap: 20px;
    }

    .sitios .texto {
        margin-top: 0;
        text-align: justify;
    }

    .sitios .texto h3 {
        font-size: 22px;
        margin-top: 20px;
        color: #057075;
    }

    .sitios .texto p {
        font-size: 16px;
        line-height: 1.5;
        margin-bottom: 15px;
    }

    .sitios img {
        width: 100%;
        height: auto;
        margin-top: 10px;
        padding: 0;
        background-color: transparent;
        box-shadow: none;
        border-radius: 10px;
    }

    .lugar {
        margin-bottom: 40px;
    }

    /*Ubicacion*/
    .ubicacion {
        flex-direction: column;
        margin: 5%;
        align-items: center;
    }

    .informacion {
        font-size: 16px;
        margin-right: 0;
        margin-bottom: 20px;
        padding: 15px;
        width: 100%;
        box-sizing: border-box;
    }

    .informacion h3 {
        text-align: center;
        font-size: 20px;
        margin-left: 0;
    }

    .informacion .ubicaciones div {
        display: flex;
        align-items: center;
        gap: 10px;
        padding: 10px 0;
        font-size: 15px;
    }

    .informacion .ubicaciones img {
        width: 22px;
        height: 22px;
    }

    .ubicacion iframe {
        width: 100%;
        height: 300px;
        border-radius: 10px;
    }

    .formulario {
        margin: 30px 10%;
        padding: 20px;
        width: auto;
        box-sizing: border-box;
    }

    .formulario h3 {
        font-size: 20px;
        margin-bottom: 15px;
    }

    .formulario form {
        font-size: 14px;
    }

    .formulario input,
    .formulario textarea {
        font-size: 14px;
    }

    .formulario button {
        font-size: 15px;
        padding: 10px;
    }

    .toast {
        top: 20px;
        right: 20px;
        font-size: 14px;
        padding: 10px 15px;
    }
    /*Reservas*/
    .form-calendario {
        padding: 20px;
    }

    .form-calendario form {
        flex-direction: column;
        gap: 15px;
        font-size: 18px;
    }

    .form-calendario input,
    .form-calendario select,
    .form-calendario button {
        width: 100%;
    }

    .vivienda {
        flex-direction: column;
        text-align: center;
        padding: 15px;
    }

    .img-vivienda {
        width: 100%;
        height: auto;
    }

    .bloque-reserva {
        flex-direction: column;
        gap: 30px;
        padding: 20px;
    }

    .datos-reserva {
        padding: 20px;
    }

    .datos-reserva img {
        width: 100%;
        height: auto;
    }

    .form-reserva {
        padding: 20px;
    }

    .ventana-confi_cancel {
        margin-left: 5%;
        margin-right: 5%;
        padding: 5%;
        font-size: medium;
    }
}