* {
    margin: 0;
    padding: 0;
}

/*------------------------PALETA DE COLORES SELECCIONADA----------------------*/
:root {
    --verde: #386641;
    --blanco: #ffffff;
    --rojo: #ba1a1a;
}

.itemActivo {
    background-color: white;
    color: var(--verde);
    border-top: 2px solid var(--rojo);
    border-bottom: 0;
}

.slider {
    background: RGBA(100, 100, 100, 0.6) url(../img/index/slider1.jpg) no-repeat center center;
    background-blend-mode: multiply;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    height: 500px;
    transition: 5s;

}

.alojamiento {
    background: url(../img/alojamiento/bandera.jpg) no-repeat center fixed;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
}

body {
    font-family: 'Average', serif;
}

header {
    text-align: center;
    padding: 1em;
}

header img {
    width: 150px;
}

/*--------------------------------ESTILO DE MENU------------------------------*/


nav ul {
    list-style-type: none;
    display: flex;
    flex-direction: column;
}

nav ul li {
    flex: 1;
}

nav ul li a,
nav ul li a:link {
    text-decoration: none;
    display: block;
    text-align: center;
    padding: 0.5em;
    font-weight: bold;
    letter-spacing: 0.2rem;
    color: white;
    background-color: var(--verde);
    font-size: 1.3rem;
    border-bottom: 1px solid white;
    box-sizing: border-box;
}

nav ul li a:hover {
    background-color: var(--rojo);
    color: white;
}

h1 {
    font-family: 'Fugaz One', cursive;
    margin-top: 5rem;
    margin-left: 20px;
    color: var(--blanco);
    font-style: italic;
}

h1+p {
    display: none;
    padding: 0.5rem 0.5rem 0.5rem 0;
    color: var(--blanco);
    margin-left: 20px;
}

h2 {
    font-family: 'Fugaz One', cursive;
}

p>a,
p>a:link {
    text-decoration: none;
    display: inline-block;
    padding: 0.2rem 0.5rem 0.2rem 0.5rem;
    font-weight: bold;
    letter-spacing: 0.2rem;
    color: var(--blanco);
    background-color: var(--verde);
    text-align: center;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
}

p>a:hover {
    background-color: var(--rojo);
}

/*---------------------SECCION 2 HOME- CIUDADES-----------------------------------------*/
.ciudades {
    display: grid;
    grid-template: 50px / 100%;
    grid-gap: 20px;
    padding: 0 1em 0 1em;
    margin-bottom: 20px;
}

.ciudades h2 {
    color: var(--rojo);
    margin-top: 20px;
    grid-row: 1 / 2;
    grid-column: 1 / -1;
}

.ciudades article div figure {
    overflow: hidden;
    position: relative;
}

.ciudades article div figure figcaption {
    position: absolute;
    bottom: 0px;
    left: 0px;
    color: var(--rojo);
    font-weight: bold;
    height: 0%;
    width: 100%;
    background-color: RGBA(255, 255, 255, .4);
}

.ciudades article div figure figcaption h3 {
    margin-top: 35vh;
    margin-left: 10px;
}

.ciudades article div figure:hover figcaption {
    height: 100%;
}

.ciudades article div figure img {
    width: 100%;
    height: 40vh;
    object-fit: cover;
    object-position: center center;
}

.ciudades>article>div>div>p {
    display: none;
}

/*------------------------FIN DE SECCION 2 HOME- CIUDADES-------------------------------*/

/*---------------------------SECCION 3 HOME - PROMOCION-----------------------------------*/
.trama {
    background: rgba(186, 26, 26, .2) url(../img/index/trama.png) no-repeat;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    margin-top: 20px;
}

.destino {
    padding: 0 1em 2em 1em;
    display: grid;
    grid-template: 50px / 100%;
    grid-gap: 20px;
    margin-bottom: 50px;
}

.destino h2 {
    padding: 1rem 0 1rem 0;
    grid-row: 1 / 2;
    grid-column: 1 / -1;
}

.destino h3+p,
.destino article>img {
    display: none;
}

.destino article p:last-child {
    text-align: center;
}

#botonPrecio {
    margin: 1em auto 0.5em auto;
    font-weight: bold;
    font-size: 1.25em;
    color: var(--blanco);
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
    width: 80%;
}

#botonPrecio a,
#botonPrecio a:link {
    background-color: var(--verde);
    padding: .5em 1em .5em 1em;
}

#botonPrecio a:hover {
    background-color: var(--rojo);
}

.destino article figure {
    overflow: hidden;
}

.destino figure img {
    width: 100%;
    object-fit: cover;
    height: 40vh;
    margin-top: 2em;
}

.destino article h3 {
    display: inline-block;
    width: 40%;
}

.destino article p:last-child {

    margin-bottom: 3em;
}

.destino article {
    box-sizing: border-box;
}

.destino article h3 {
    margin-right: 15%;
}

.destino article:last-child {
    display: none;
}

/*-----------------------------FIN SECCION 3 HOME-----------------------------*/

/*-----------------------------FORMULARIO CONTACTO-------------------------- */
#contactoFondo {
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.5);
    position: fixed;
    top: 0;
    left: 0;
    place-items: center;
    display: none;
    z-index: 9000;

}

#contactoForm {
    padding: 0.5em 5em 5em 5em;
    display: flex;
    flex-direction: column;
    gap: 0.6em;
    height: fit-content;
    background-color: var(--verde);
    width: 70%;
    box-sizing: border-box;
}

#contactoForm>legend {
    margin: 0 auto;
}

#contactoForm>input[type="text"],
#contactoForm>input[type="date"] {
    flex: 1;
    padding: 0.3rem 0 0.3rem 0;
    outline: none;
    background-color: var(--blanco);
    color: var(--rojo);
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    border: 2px solid var(--rojo);
    width: 100%;
    height: 1em;

}

#contactoForm>input[type="text"]:focus {
    -webkit-box-shadow: 0 0 10px var(--rojo);
    -moz-box-shadow: 0 0 10px var(--rojo);
    box-shadow: 0 0 10px var(--rojo);
}

textarea {
    resize: none;
    outline: none;
    color: var(--rojo);
}

textarea:focus {
    -webkit-box-shadow: 0 0 10px var(--rojo);
    -moz-box-shadow: 0 0 10px var(--rojo);
    box-shadow: 0 0 10px var(--rojo);
}

#contactoForm>div {
    text-align: center;
}

#contactoForm>div>input[type="button"] {
    padding: 0em 1em 0em 1em;
    border: 2px solid var(--rojo);
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    font-weight: bold;
    color: var(--rojo);
    background-color: var(--blanco);
    height: 3em;
    width: calc(98% / 2);
}

#contactoForm>input[type="button"]:hover {
    background-color: var(--rojo);
    color: var(--blanco);
}

#contactoForm>input[type="button"]:focus {
    outline: 0;
}

.error {
    background-color: var(--rojo);
    color: var(--blanco);
    text-align: center;
    padding-top: 3px;
    padding-bottom: 3px;
}

/*------------------------------FIN FORMULARIO CONTACTO------------------------------*/

/*------------------------------FORMULARIO ALOJAMIENTO-------------------------------*/
form {
    background-color: var(--verde);
}

.busqueda {
    border: 0;
    margin-left: 20px;
    padding: 0 1rem 0 1rem;
}

fieldset>div {
    padding: 0.5rem 0 0.5rem 0;
    display: flex;
    gap: 5px;
    flex-wrap: wrap;
    align-items: flex-end;
    justify-content: flex-start;
}

.busqueda fieldset div div {
    box-sizing: border-box;
}

legend {
    flex: 1;
    padding: 0.5rem 0 0.5rem 0;
    margin-left: 20px;
}

legend,
label {
    color: var(--blanco);
    font-weight: bold;
}

#alojamiento,
fieldset div>div label,
#radio {
    display: none;
}

fieldset>div>div>input[type="text"] {

    flex: 1;
    padding: 0.5rem 0 0.5rem 0;
    outline: none;
    margin-top: 10px;
    background-color: var(--blanco);
    color: var(--rojo);
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    border: 2px solid var(--rojo);
    width: 15em;
    margin-left: 15px;
}

fieldset>div>div>input[type="text"]:focus {
    -webkit-box-shadow: 0 0 10px var(--rojo);
    -moz-box-shadow: 0 0 10px var(--rojo);
    box-shadow: 0 0 10px var(--rojo);
}

::placeholder {
    padding-left: 10px;
    font-style: italic;
}

.busqueda fieldset div>div>input[type="radio"] {
    margin-right: 10px;
}

#alojamiento {
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    border: 2px solid var(--rojo);
    color: darkgrey;
    font-style: italic;
    padding: 0.1rem 0.5rem 0.1rem 0.5rem;
    height: 2.5em;
    margin-top: 1em;
    width: 15em;
}

#alojamiento:focus {
    outline: 0;
    -webkit-box-shadow: 0 0 10px var(--rojo);
    -moz-box-shadow: 0 0 10px var(--rojo);
    box-shadow: 0 0 10px var(--rojo);
}

fieldset div>div label {
    margin-right: 10px;
    margin-bottom: 10px;
}


/*-----------------------FIN FORMULARIO ALOJAMIENTO---------------------------*/
/*-------------------------SECCION 2 ALOJAMIENTO------------------------------*/
.hotel {
    padding: 0 1em 2em 1em;
    display: grid;
    grid-template: 12/ 1;
    grid-gap: 20px;
    margin-bottom: 50px;

}

h2 {
    padding: 1rem 0 1rem 0;

    margin-left: 1em;
}

.hotel figure img {
    width: 100%;
    object-fit: cover;
    height: 40vh;
}

.hotel h3+p,
.hotel article div>img {
    display: none;
}

#precio {
    height: 5vh;
    font-weight: bold;
    color: var(--rojo);
}

.hotel article p {
    padding: -1px;
}

.hotel h3 {
    margin-bottom: 20px;
}



/*----------------------FIN SECCION 2 ALOJAMIENTO-----------------------------*/
/*-----------------------------SECCION 3 SUGERENCIAS-------------------------*/
.sugerencia {
    padding: 0 1em 2em 1em;
    display: grid;
    grid-template: 2/1;
    grid-gap: 20px;

}

.sugerencia h2 {
    padding: 1rem 0 1rem 0;
    grid-row: 1 / 2;
    grid-column: 1 / -1;
}

.sugerencia div div h3+p {
    display: none;
}

.sugerencia article div div>h3 {
    margin-top: 20px;
}

.sugerencia article:nth-of-type(2) div div>h3 {
    padding-bottom: 50px;
}

.sugerencia figure img {
    width: 100%;
    object-fit: cover;
    object-position: center;
    height: 40vh;
}

.sugerencia article:last-child {
    display: none;
}

#gradiente {
    background: -webkit-linear-gradient(-30deg, var(--verde), var(--blanco), var(--rojo));
    background: -o-linear-gradient(-30deg, var(--verde), var(--blanco), var(--rojo));
    background: -moz-linear-gradient(-30deg, var(--verde), var(--blanco), var(--rojo));
    background: linear-gradient(-30deg, var(--verde), var(--blanco), var(--rojo));
    height: fit-content;
}

/*modal */
/* Fondo modal: negro con opacidad al 50% */

.modal {
    width: 100vw;
    /* Ancho completo */
    height: 100vh;
    /* Algura completa */
    background-color: rgba(0, 0, 0, 0.5);
    /* Color negro con opacidad del 50% */
    position: fixed;
    /* Posición fija */
    top: 0;
    left: 0;
    display: none;
    /* Por defecto, estará oculto */
    z-index: 70000;
    /* Se situará por encima de otros elementos de la página*/
    padding-top: 100px;
    /* El contenido estará situado a 200px de la parte superior */
    overflow: auto;
    /* Se activará el scroll si es necesario */ 
}

.contenidoModal {
    position: relative;
    /* Relativo con respecto al contenedor -modal- */
    margin: 0 auto;
    /* Centrada */
    padding: 20px;
    width: 60%;
    height: fit-content;
    color: var(--blanco);
}

#nombrePromo {
    text-align: center;
    font-size: 2em;
    margin-left: 0;
    padding-top: 0;
}

.cerrar {
    color: black;
    float: right;
    font-size: 30px;
    font-weight: bold;
}

.cerrar:hover,
.cerrar:focus {
    color: #000;
    text-decoration: none;
    cursor: pointer;
}

#cuentaRegresiva {
    text-align: center;
}

#cuentaRegresiva p {
    font-size: 2em;
    font-weight: bold;
    margin-top: 0.5em;
    margin-bottom: 0.5em;
}

#alojamientoDePromo {
    display: flex;
    flex-wrap: nowrap;
    gap: 0.5em
}

#alojamientoDePromo img {
    width: 50%;
    height: 50%;
}

#seccionDetalle {
    margin: auto;
}

#codigoPromocion {
    text-align: center;
    margin-top: 2em;
    background-color: var(--verde);
    padding: 0.5em;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;


}

#codigoPromocion p {
    font-size: 2em;
}

/*----------------------FIN SECCION 3 ALOJAMIENTO-----------------------------*/

/*------------------------------FOOTER----------------------------------------*/
footer {
    border-top: 1px solid var(--verde);
    text-align: center;
    position: fixed;
    left: 0;
    bottom: 0;
    /*solucionar lo que se perdió*/
    display: block;
    width: 100%;
    background: -webkit-linear-gradient(45deg, var(--verde), var(--blanco), var(--rojo));
    background: -o-linear-gradient(45deg, var(--verde), var(--blanco), var(--rojo));
    background: -moz-linear-gradient(45deg, var(--verde), var(--blanco), var(--rojo));
    background: linear-gradient(45deg, var(--verde), var(--blanco), var(--rojo));
}

footer p {
    display: inline-block;
    font-weight: bold;
    padding: 1rem;
}

footer img {
    vertical-align: middle;
}

footer audio {
    display: none;
}

/*-------------------------FIN FOOTER-----------------------------------------*/

/*--------------------------SECCION DETALLE-----------------------------*/
#fondo {
    background-color: rgba(255, 255, 255, .3);
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    height: fit-content;
    padding: 5em;
    flex-wrap: wrap;
}

#pequeñas {
    /* background-color: purple; */
    box-sizing: border-box;
    display: none;

}

#pequeñas img {
    width: calc(90% / 4);
    height: 12vh;
    object-fit: cover;
    object-position: center center;
    box-sizing: border-box;
    margin: 5px;
    border: 3px solid var(--rojo);
}

#principal img {
    width: 80%;
    height: 200px;
    border: 3px solid var(--verde);
}


#detalle {
    display: grid;
    grid-template: 1 / 1;
    width: 100%;
    text-align: center;

}

#descripcion {

    width: 100%;
    padding: 0 1em 1em 1em;
    height: 200px;
    box-sizing: border-box;
}

#descripcion>p,
#descripcion>h2,
#descripcion>table {
    /* background-color: blue; */

    margin-left: 1em;
    padding: 0 0.5em 0.5em 0;
    margin-right: 0.5em;
}

#descripcion>p,
#descripcion>table {
    padding: 0.5em;


}

#descripcion>p {
    display: none;
}

#descripcion>table {
    width: 90%;
    font-weight: bold;

}

#descripcion>table tr:first-child>th {
    padding: 0.5em;
    background-color: var(--rojo);
    color: var(--blanco);
    text-align: center;
}

#descripcion>table tr>td {
    padding: 0.5em;
}

#descripcion>table tr>td:last-child {
    text-align: center;
}

#descripcion>table tr:nth-child(2n+1) {
    background-color: var(--verde)
}

#lugares {
    /* background-color: aquamarine; */
    height: 500px;
    width: calc(100% / 5);
    padding: 1em;
    display: none;
}


/*----------------------MEDIAS QUERIES---------------------------------------*/
@media screen and (min-width: 576px) {
    header {
        text-align: left;
    }

    nav ul {
        flex-direction: row;
    }

    nav ul li a,
    nav ul li a:link {
        border-bottom: 0;
        border-right: 2px solid white;
    }

    nav ul li:last-child a,
    nav ul li:last-child a:link {
        border-right: 0;
    }

    h1+p {
        display: block;
    }

    .ciudades {
        grid-template: 50px repeat(3, 1fr) / repeat(2, 1fr);
    }

    .destino {
        grid-template: 50px 1fr / repeat(2, 1fr);
    }

    .destino article h3 {
        display: block;
        width: 100%;
    }

    .destino article>img {
        display: inline-block;
    }

    .destino article>img {
        margin-right: 8%;
        width: 50%;
    }

    .destino article:last-child>img {
        width: 30%;
        margin-right: 20%;
    }

    .destino article p:last-child {
        width: 40%;
    }

    .imagenFondo {
        background: url(../img/alojamiento/fondo.jpg)no-repeat center center fixed;
        -webkit-background-size: cover;
        -moz-background-size: cover;
        -o-background-size: cover;
        background-size: cover;
        padding-top: 200px;
    }

    .hotel {

        grid-template: repeat(1, 1fr) / repeat(2, 1fr);
        /* grid-template: repeat(6, 1fr) / repeat(2, 1fr); */
    }

    .hotel article div p a,
    .hotel article div p a:link {
        width: 40%;
    }

    .sugerencia {
        grid-template: 1fr / repeat(2, 1fr);

    }

    .sugerencia article div div>h3 {
        padding-bottom: 50px;
    }
}

@media screen and (min-width: 768px) {

    .alojamiento .menuIndex {
        display: flex;
        align-items: center;
    }

    nav ul li {
        padding: 0.2rem;
    }

    nav ul li a,
    nav ul li a:link {
        border-bottom: 0;
        border-right: 0;
    }

    header {
        width: 50vw;
    }

    #contactoForm {
        width: 60%;
    }

    form {
        height: 150px;
    }

    fieldset>div>div label {
        display: inline-block;
    }

    fieldset>div>div>input[type="text"] {
        display: block;
    }

    label {
        display: block;
    }

    fieldset>div>div {
        flex-basis: calc(100% / 4);
        flex-basis: -webkit-calc(100% /4);
        flex-basis: -moz-calc(100% / 4);
        margin-left: 20px;
    }

    article>div {
        display: flex;
    }

    article>div>figure {
        width: 50%;
        height: 40vh;
    }

    article>div>div {
        width: 50%;
    }

    .ciudades>article>div>div>p {
        padding: 0 1rem 1rem 1rem;
        display: block;
    }

    .ciudades article div div p>a,
    .ciudades article div div p>a:link {
        margin-right: 20px;
        background-color: var(--rojo);
        width: 50%;
    }

    .ciudades article div div p>a:hover {
        background-color: var(--verde);
    }

    .ciudades article div figure {
        border: 3px solid var(--rojo);
    }

    .destino h3+p {
        display: block;
        padding: 0.5rem 0 0.5rem 0;
        height: 15vh;
    }

    #botonPrecio {
        display: block;
    }

    /*----- FORMULARIO ALOJAMIENTO------*/
    .busqueda fieldset div {
        justify-content: flex-start;
    }

    .busqueda {
        height: 150px;
    }

    #alojamiento,
    .busqueda fieldset div div label {
        display: inline-block;
    }

    .busqueda fieldset div div {
        width: 80vw;
    }

    fieldset>div>div>input[type="text"] {
        margin-left: 0;
    }

    .hotel h3+p {
        display: block;
        height: 20vh;
    }

    .hotel article>div {
        display: flex;
        align-items: flex-end;
    }

    .hotel article div img {
        display: inline-block;
        flex: 1;
        height: 30px;
    }

    .hotel article div p {
        flex: 1;
    }

    .hotel article div p a,
    .hotel article div p a:link {
        width: 80%;
    }

    .sugerencia article div {
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
    }

    .sugerencia article div figure {
        width: 100%;
    }


    /* ------------pagina detalle----- */
    #pequeñas {
        display: inline-block;
        width: 80%;
        margin: 0 auto;
    }

    #principal img {
        width: 90%;
        height: 300px;
        border: 3px solid var(--verde);
    }

    #descripcion>table {
        margin: 0 auto;
    }

    #descripcion h2 {
        text-align: center;
    }

    /* ----ventana Modal---- */
    .modal {
        padding-top: 100px;
    }

    #alojamientoDePromo {
        font-size: 1.5em;
    }


}

@media screen and (min-width: 992px) {
    .menuIndex {
        display: flex;
        align-items: center;
    }

    nav ul li {
        padding: 0.2rem;
    }

    nav ul li a,
    nav ul li a:link {
        border-bottom: 0;
        border-right: 0;
    }

    header {
        width: 50vw;
    }

    form {
        height: 150px;
    }

    fieldset>div>div {
        flex: calc(1 / 3);
        flex: -webkit-calc(1 / 3);
        flex: -moz-calc(1 / 3);
    }

    .destino {
        grid-template: 50px 1fr / repeat(3, 1fr);
        padding-bottom: 2em;
    }

    .destino article:last-child {
        display: block;
    }

    #contactoForm {
        width: 50%;
    }

    /*----------FORMULARIO ALOJAMIENTO------ */

    .busqueda fieldset div {
        width: 90vw;
    }

    .busqueda fieldset div>div label,
    #radio {
        display: inline-block;
    }

    .hotel {
        grid-template: repeat(1, 1fr)/ repeat(3, 1fr);
        /* grid-template: repeat(4, 1fr)/ repeat(3, 1fr); */
    }

    .hotel h3 {
        margin-bottom: 50px;
    }

    .hotel h3+p {
        display: block;
        height: 15vh;
    }

    .sugerencia {

        grid-template: 1fr / repeat(3, 1fr);
    }

    .sugerencia article:last-child {
        display: block;
    }

    footer audio {
        display: inline-block;
        vertical-align: middle;
        width: 15vw;
        height: 20px;
        margin-left: 20px;
    }

    footer audio:focus {
        outline: 0;
    }

    /* --------------pagina detalle------------------ */
    #fondo {
        flex-wrap: nowrap;
        height: fit-content;
    }

    #detalle {
        width: calc(100% / 2);
    }

    #descripcion {
        width: calc(100% / 2);
    }

    #descripcion table {
        margin-top: 1em;
        ;
    }

    #pequeñas,
    #principal img {
        width: 100%;
    }

    #descripcion p {
        display: block;
    }

    #descripcion h2 {
        text-align: left;
    }

    /* ------VENTANA MODAL----- */
    .modal {
        padding-top: 50px;
    }

    #nombrePromo {
        margin-top: 0.5em;
    }

    #alojamientoDePromo {
        font-size: 2em;
    }

}


@media screen and (min-width: 1200px) {
    .centrado {
        margin: 0 auto;
        width: 1200px;
    }

    .ciudades {
        margin: 0 auto;
        width: 1200px;
        ;
    }

    .ciudades {
        grid-template: 50px repeat(2, 1fr) / repeat(6, 1fr);
    }

    .ciudades article:nth-of-type(1) {

        grid-column: 1 / 3;
    }

    .ciudades article:nth-of-type(2) {

        grid-column: 3/ 5;
    }

    .ciudades article:nth-of-type(3) {

        grid-column: 5 / 7;
    }

    .ciudades article:nth-of-type(4) {

        grid-column: 1 / 4;

    }

    .ciudades article:nth-of-type(5) {

        grid-column: 4 / 7;

    }

    .ciudades article:nth-of-type(4) div figure {
        width: 70%;
    }

    .ciudades article:nth-of-type(4) div div {
        width: 30%;
    }

    .ciudades article:nth-of-type(5) div figure {
        width: 70%;
    }

    .ciudades article:nth-of-type(5) div div {
        width: 30%;
    }

    .destino {
        padding-bottom: 5em;
    }

    #contactoForm {
        width: 30%;
    }

    .busqueda {
        height: 200px;
        width: 95%;
        margin: 0 auto;
        max-width: 1200px;
    }

    .busqueda fieldset {
        max-width: 100%;
        padding-left: 1rem;
        box-sizing: border-box;
    }

    .busqueda.centrado fieldset>div>div {
        width: calc(100% / 2);
        width: -webkit-calc(100% / 2);
        width: -moz-calc(100% / 2);
    }

    .busqueda fieldset>div {
        margin-left: 5px;
    }

    .hotel h3+p {
        display: block;
        height: 10vh;
    }

    .sugerencia div div h3+p {
        display: block;
        text-align: left;
        padding-bottom: 50px;
    }

    .sugerencia article div {
        box-sizing: border-box;
    }

    .sugerencia article div div>h3 {
        padding-bottom: 0;
        margin-top: 0;
    }

    .sugerencia article:nth-of-type(2) div div>h3 {
        padding-bottom: 0;
    }

    .sugerencia article div figure {
        width: 50%;
    }

    .sugerencia article div div {
        width: 40%;
    }

    a:empty {
        /* linea respecto al entorno,
        de bloque en si mismo */
        display: inline-block;
        width: 66px;
        height: 65px;
        background: url(../img/spritesheet.png) no-repeat center top;
        position: fixed;
        right: 15px;
        bottom: 80px;
        z-index: 8000;
    }

    a:empty:hover {
        background-position-y: bottom;
    }

    /* --------pagina detalles-------- */
    #lugares {
        display: block;
        padding-top: 0;
    }

    #detalle {
        width: calc(100% / 2);
    }

    #principal img {
        height: 60vh;
    }

    #pequeñas img {
        height: 15vh;
    }

    #descripcion {
        width: calc(100% / 3);
    }

    #mismaRegion img {
        width: 80%;
        height: 20vh;
        padding: 1em 1em 1em 0;

    }

    /* ------VENTANA MODAL----- */



}