*{
    font-family: 'Roboto Condensed', sans-serif;
    margin: 0;
    padding: 0;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    outline: none;
    border: none;
    text-decoration: none !important;
    -webkit-transition: all .2s linear;
    transition: all .2s linear;
    font-family: 'Arial Rounded MT Bold', sans-serif;
}
html{
    overflow-x: hidden;
    scroll-behavior: smooth;
    scroll-padding-top: 6rem;
    background-color: rgb(242, 242, 242);
}
html::-webkit-scrollbar{
    width: 1rem;
}
html::-webkit-scrollbar-track{
    background: transparent;
}
html::-webkit-scrollbar-thumb{
    background: rgb(0, 160, 152);
}
a{
    text-decoration: none;
}
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Contenedor del modal */
.modal-content {
    position: relative;
    background-color: white;
    padding: 20px;
    border-radius: 10px;
    width: 80%;
    max-width: 700px;
    text-align: center;
}

/* Imagen dentro del modal */
.modal-content img {
    width: 100%;
    height: auto;
    border-radius: 10px;
}

/* Botón para cerrar */
.close {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 20px;
    cursor: pointer;
    font-weight: bold;
}
.loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}
.curtain {
    position: absolute;
    top: 0;
    height: 100%;
    width: 200%;
    background-color: #004f83;
    animation: slide 4s ease-out forwards;
}
@keyframes slide {
    0% {
      transform: translateX(-50%);
    }
    100% {
      transform: translateX(50%);
      opacity: 0;
    }
}
header {
    background: #004f83;
    width: 100%;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 50px;
    position: fixed;
    z-index: 9999;
}
header .logo-mares img{
    max-width: 100%;
    height: 60px;
}
header nav ul {
    display: flex;
    list-style: none;
}
header nav ul li a {
    display: inline-block;
    color: #fff;
    padding: 5px 0;
    margin: 0 10px;
    border: 3px solid transparent;
    text-transform: uppercase;
    transition: 0.2s;
}
header nav ul li a:hover,
header nav ul li a.active {
    border-bottom-color: rgb(0, 160, 152);
}
.nav_check {
    display: none;
}

.hamburger {
    position: relative;
    z-index: 99;
    width: 2rem;
    height: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    display: none;
}
.hamburger .bar {
    position: relative;
    width: 100%;
    height: 3px;
    background-color: white;
    border-radius: 3px;
    transition: 0.5s;
}
.bar::before,
.bar::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: white;
  border-radius: 3px;
  transition: 0.5s;
}

.bar::before {
  transform: translateY(-8px);
}

.bar::after {
  transform: translateY(8px);
}

.bg-image {
    background-image: url('images/fondos/inicio.avif');
    background-size: cover;
    background-position: center;
    height: 110vh;
    padding: 10%;
    text-align: center;
}

.bg-image::after{
    content: "";
    position: absolute;
    bottom: -10vh;
    left: 0;
    width: 100%;
    height: 500px; /* ajusta la altura del difuminado según tu necesidad */
    background: linear-gradient(to top, #004f83, transparent);
}
.content {
    text-align: center;
    margin-top: -80px;
}
.logo {
    max-width: 100%;
    margin-top: 5%;
    position: relative;
    right: -100%;
    animation: slideIn 2s forwards;
    filter: drop-shadow(8px 4px 5px white);
}
.message {
    position: relative;
    right: -100%;
    animation: slideIn 3s forwards;
    color: transparent;
    font-size: clamp(50px, 6vw, 100px);
    margin-top: 5%;
    z-index: 499;
}
@keyframes slideIn {
    0% {
        left: -100%;
        right: -100%;
    }
    100% {
        right: 0;
        left: 0;
    }
}
.message p {
    color: white;
    color: transparent;
    -webkit-text-stroke-width: 2px;
    -webkit-text-stroke-color: #fff;
}
.message p:last-child {
    padding: 3px;
    color: #fff;
    font-size: clamp(40px, 4vw, 100px);
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.9);
}
.bg-sun {
    background-image: url('images/fondos/fondo_mar_azul_Capurgana.avif');
    background-size: cover;
    background-position: center;
    height: 80vh;
    display: flex;
    justify-content: center;
    align-items: center;
}
.hotel{
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: #004f83;
    align-items: center;
}
.box {
    width: 80%;
    background-color: rgb(0, 160, 152);
    margin-top: -110px;
    text-align: justify;
    color: #fff;
    font-size: clamp(20px, 2vw, 30px);
    padding: 70px;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}
.box.active {
    opacity: 1;
}
.map{
    margin-top: 100px;
    opacity: 0;
    transition: opacity 1s ease-in-out, transform 1s ease-in-out;
    transform: translateX(-100%);
}
.map.active {
    opacity: 1;
    transform: translateX(0);
}
.info{
    display: flex;
    width: 80%;
    justify-content: center;
    text-align: justify;
    color: white;
    font-size: clamp(18px, 2vw, 30px);
    opacity: 0;
    transition: opacity 1s ease-in-out, transform 1s ease-in-out;
    transform: translateX(100%);
}
.info.active {
    opacity: 1;
    transform: translateX(0);
}
.info div{
    margin: 5%;
}
.fish{
    width: 70%;
    float: left;
}
.icon-plato{
    flex-grow: 1;
    background-color: #004f83;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}
.icon-plato img{
    width: 50%;
}
@keyframes slideInFromLeft {
    0% {
        transform: translateX(-100%);
        opacity: 0;
    }
    100% {
        transform: translateX(0);
        opacity: 1;
    }
}
.restaurantes{
    opacity: 0;
    transition: opacity 1s ease;
}
.restaurantes.active {
    opacity: 1;
}
.restaurante-info-container{
    height: 70vh;
    padding: 10%;
    text-align: justify;
    display: flex;
    justify-content: center;
}
.restaurante-info{
    width: 70%;
    margin-top: -200px;
    opacity: 0;
}
.restaurante-info.active{
    animation: slideInFromRight 1s ease-in-out forwards;
}
.restaurante-info h1{
    color: rgb(0, 160, 152);
    font-size: clamp(40px, 5vw, 60px);
}
.restaurante-info hr{
    width: 150px;
    background-color: orange;
    height: 4px;
    margin-top: 40px;
    margin-bottom: 50px;
}
.restaurante-info p{
    color: #004f83;
    font-size: clamp(16px, 2vw, 40px);
}
.bg-image-content{
    position: relative; /* Necesario para la pseudo-clase ::before */
    height: 90vh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.bg-image-content::before {
    content: "";
    position: absolute;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('images/fondos/iguana.avif');
    background-size: 100% auto;
    background-repeat: no-repeat;
    filter: brightness(0.7); /* Aplica el filtro solo a la imagen */
    z-index: -1; /* Asegura que la imagen de fondo esté detrás del contenido */
}

.bg-image-content.active {
    opacity: 0.8;
    transform: translateY(0);
}
.message-content{
    color: white;
    font-size: clamp(16px, 4vw, 50px);
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.9);
    padding: 10px 20px;
    position: relative;
    z-index: 1;
    text-align: center;
}
.excursiones-container-uno{
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #004f83;
    margin-bottom: 5%;
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}
.excursiones-container-uno.active {
    opacity: 1;
    transform: translateY(0);
}
.excursiones-uno{
    width: 80%;
    text-align: center;
    height: 120vh;
}
.excursiones-content{
    margin: 5%;
}
.excursiones-content img{
    width: 150px;
    height: 150px;
    margin-bottom: 5%;
}
.excursiones-content p{
    text-align: justify;
    color: #fff;
    font-size: clamp(18px, 2vw, 50px);
}
.jungla{
    width: 100%;
    height: 70vh;
    z-index: 9999;
}
@keyframes slideInFromRight {
    0% {
      transform: translateX(100%);
      opacity: 0;
    }
    100% {
      transform: translateX(0);
      opacity: 1;
    }
}
.cielo{
    height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5%;
    opacity: 0;
}
.cielo.active {
    animation: slideInFromLeft 1s ease-in-out forwards;
}
.cielo img{
    width: 150px;
    height: 150px;
    display: flex;
}
.cielo .info-cielo{
    margin-left: 5%;
}
.cielo .info-cielo h1{
    color: #004f83;
    font-size: clamp(25px, 3vw, 50px);
    text-align: start;
}
.cielo .info-cielo hr{
    width: 150px;
    background-color: orange;
    height: 4px;
    margin-top: 40px;
    margin-bottom: 50px;
}
.cielo .info-cielo p{
    clear: both;
    color: #004f83;
    text-align: justify;
    font-size: clamp(20px, 2vw, 50px);
}
.excursiones-container-dos{
    display: flex;
    justify-content: center;
    align-items: center;
}
.excursiones-dos{
    width: 80%;
    text-align: center;
    z-index: 2;
}
.cielo-dos{
    height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5%;
    opacity: 0;
}
.cielo-dos img{
    width: 150px;
    height: 150px;
    display: flex;
}
.cielo-dos .info-cielo-dos{
    margin-left: 5%;
}
.cielo-dos.active {
    animation: slideInFromRight 1s ease-in-out forwards;
}
.cielo-dos .info-cielo-dos h1{
    color: #fff;
    font-size: clamp(30px, 2vw, 50px);
    text-align: start;
}
.cielo-dos .info-cielo-dos hr{
    width: 150px;
    background-color: orange;
    height: 4px;
    margin-top: 40px;
    margin-bottom: 50px;
}
.cielo-dos .info-cielo-dos p{
    clear: both;
    color: #fff;
    text-align: justify;
    font-size: clamp(20px, 2vw, 50px);
}
.sapzurro{
    margin-bottom: -80px;
}
.bg-playa{
    margin-top: -90px;
    height: 100vh;
    width: 100%;
}
.imagenes-container{
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #004f83;
    margin-top: -1%;
}
.imagenes{
    width: 95%;
    margin-top: 3%;
    margin-bottom: 3%;
}
.imagenes img{
    margin: 1%;
    opacity: 0;
    transition: opacity 0.5s ease;
}
.imagenes img.show {
    opacity: 1;
}
.imagenes-izquierda img{
    width: 30%;
    float: left;
}
.imagenes-arriba img{
    width: 32%;
    height: 40%;
    float: left;
}
.imagenes-abajo img{
    width: 66%;
    height: 330px;
}
.bg-cavana{
    height: 100vh;
    width: 100%;
}
.hotel-naturaleza-container, .hotel-naturaleza-container-dos{
    background-color: #004f83;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: -1%;
    height: 100vh;
}
.hotel-naturaleza-container-dos{
    height: 130vh;
}
.hotel-naturaleza, .hotel-naturaleza-dos{
    text-align: justify;
    width: 80%;
    font-size: clamp(18px, 2vw, 50px);
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}
.hotel-naturaleza.show, .hotel-naturaleza-dos.show{
    opacity: 1;
    transform: translateY(0);
}
.hotel-naturaleza .naturaleza{
    margin-bottom: 5%;
    color: rgb(0, 160, 152);
}
.bg-botes{
    height: 80vh;
    width: 100%;
}
.hotel-naturaleza-dos{
    margin-top: 10%;
    margin-bottom: 5%;
}
.naturaleza-izquierda img{
    float: left;
    height: 95vh;
    margin-top: 0;
    width: 35%;
    margin-right: 5%;
}
.naturaleza-derecha p{
    margin-bottom: 5%;
    font-size: clamp(20px, 3vw, 29px);
}
.planes-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
    margin-top: 5%;
    margin-bottom: 10%;
}
.planes {
    width: 80%;
    text-align: justify;
    margin-top: 5%;
    margin-bottom: 5%;
    font-size: clamp(20px, 3vw, 29px);
    color: #004f83;
    opacity: 0;
}

.planes.active{
    animation: slideInFromLeft 1s ease-in-out forwards;
}
.planes h1 {
    margin-bottom: 5%;
    color: rgb(0, 160, 152);
}
.card-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    width: 80%;
}
.card {
    text-align: center;
    width: 250px;
    height: 150px;
    margin: 2%;
    opacity: 0;
}
.card.active{
    animation: slideInFromRight 1s ease-in-out forwards;
}
.card img {
    max-width: 80%;
    max-height: 80%;
}
.card h2 {
    margin-top: 20px;
    color: rgb(0, 160, 152);
    font-size: clamp(20px, 3vw, 29px);
}
.experiencias-container{
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 5%;
}
.experiencias{
    width: 60%;
    text-align: justify;
    margin-top: 5%;
}
.experiencias h1{
    color: rgb(0, 160, 152);
    font-size: clamp(40px, 4vw, 60px);
    margin: 2%;
    opacity: 0;
}

.experiencias h1.active{
    animation: slideInFromLeft 1s ease-in-out forwards;
}
.comment-card-container {
    display: flex;
    flex-direction: column;
    margin-top: 15%;
    padding: 4%;
    border-radius: 20px;
    background-color: #fff;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
}
.comment-card {
    display: flex;
    border-radius: 8px;
    flex-grow: 1;
    justify-content: center;
    margin-top: -2%;
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}
.comment-card.show{
    opacity: 1;
    transform: translateY(0);
}
.image,
.rating {
    display: flex;
    align-items: center;
}
.user {
    display: flex;
    flex-direction: column;
    color: black;
    text-align: justify;
    justify-content: center;
}
.name p,
.instagram p {
    font-size: clamp(20px, 2vw, 30px);
}

.instagram p{
    font-size: clamp(20px, 2vw, 20px);
    color: rgba(59, 59, 59, 0.652);
}
.image{
    display: flex;
    margin-left: auto;
    margin-top: -10%;
}
.image img {
    width: 170px;
    height: 170px;
    border-radius: 50%;
    border: 4px solid #004f83;
}
.rating {
    display: flex;
    margin-left: auto;
}
.green-dot {
    display: inline-block;
    width: 20px;
    height: 20px;
    background-color: green;
    border-radius: 50%;
    margin-left: 5px;
}
.info-text{
    margin-top: 40px;
}
.info-text p{
    font-size: clamp(20px, 2vw, 20px);
    padding-bottom: 30px;
    color: rgba(39, 39, 39, 0.815);
}
.info-text a{
    color: rgba(39, 39, 39, 0.815);
    font-size: clamp(20px, 2vw, 20px);
}
#btn-mas{
    display: none;
}
.boton{
    position: fixed;
    bottom: 20px;
    right: 20px;
}
.redes a, .btn-mas label{
    display: block;
    text-decoration: none;
    background: #004f83;
    color: #fff;
    width: 55px;
    height: 55px;
    line-height: 55px;
    text-align: center;
    border-radius: 50%;
    box-shadow: 0px 1px 10px rgba(0,0,0,0.4);
    transition: all 500ms ease;
}
.redes a:hover{
    background: #fff;
    color: #004f839c;
}
.redes a{
    margin-bottom: -15px;
    opacity: 0;
    visibility: hidden;
}
#btn-mas:checked~ .redes a{
    margin-bottom: 10px;
    opacity: 1;
    visibility: visible;
}
.btn-mas label{
    cursor: pointer;
    background: #004f83;
    font-size: 23px;
}
#btn-mas:checked ~ .btn-mas label{
    transform: rotate(135deg);
    font-size: 25px;
}
.footer-bg-img{
    background-image: url('images/fondos/playa.avif');
    background-size: cover;
    background-position: center;
    height: 110vh;
    padding: 10%;
    text-align: center;
}
.footer-message{
    font-size: clamp(60px, 6vw, 100px);
    text-align: center;
    margin-top: -30px;
    color: #fff;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.9);
    padding: 10px 20px;
    opacity: 0;
    transform: translateY(100%);
    transition: opacity 0.5s ease, transform 0.5s ease;
}
footer{
    background-color: rgb(0, 160, 152);
    text-align: center;
    color: #fff;
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}
.footer-message.active {
    opacity: 1;
    transform: translateY(0);
}
footer.show{
    opacity: 1;
    transform: translateY(0);
}
.footer-contact{
    padding: 30px;
}
.footer-contact h1{
    font-size: clamp(20px, 3vw, 80px);
    margin-bottom: 2%;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.9);
    padding: 10px 20px;
}
.footer-contact p{
    font-size: clamp(20px, 2vw, 20px);
}
.social{
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 3%;
    margin-top: -30px;
    z-index: 9999;
}
.social p{
    font-size: clamp(20px, 2vw, 20px);
}

.social a{
    color: #004f83;
}

.social i{
    font-size: clamp(25px, 2vw, 30px);
    margin: 0 1.5%;
}
.footer-info{
    display: flex;
    width: 80%;
    margin-left: auto;
    margin-right: auto;
    justify-content: center;
    align-items: center;
    padding-bottom: 5%;
}
.footer-text p{
    font-size: clamp(15px, 3vw, 20px);
    text-align: justify;
    padding: 1%;
    margin: 2%;
}
@media screen and (min-width: 300px) and (max-width: 1023px){
    .content{
        margin-top: 150px;
    }
    .map{
        max-width: 80%;
        margin-bottom: 5%;
    }
    .info{
        margin-bottom: 5%;
        display: block;
    }
    .fish{
        clear: both;
    }
    .restaurantes{
        margin-bottom: 5%;
    }
    .restaurantes img{
        width: 100%;
        height: 50vh;
    }
    .icon-plato{
        clear: both;
        height: 30vh;
    }
    .icon-plato img{
        width: 50%;
        height: 200px;
    }
    .restaurante-info-container{
        height: 50vh;
        margin-bottom: 5%;
    }
    .restaurante-info{
        margin-top: 10%;
    }
    .bg-image-content{
        margin-bottom: -130%;
    }
    .message-content{
        margin-top: -135%;
    }
    .excursiones-uno{
        margin-top: 5%;
    }
    .jungla{
        height: 50vh;
        margin-top: 20%;
    }
    .sapzurro{
        margin-bottom: -30px;
    }
    .cielo{
        display: block;
        margin-top: 5%;
    }
    .cielo img, .cielo-dos img{
        margin-left: auto;
        margin-right: auto;
        margin-bottom: 10%;
    }
    .info-cielo{
        margin-bottom: -10%;
    }
    .cielo-dos{
        display: block;
        margin-top: 10%;
        margin-bottom: 10%;
    }
    .imagenes-container{
        margin-top: -5%;
        height: 130vh;
        padding: 10%;
    }
    .imagenes-izquierda img, .imagenes-arriba img, .imagenes-abajo img{
        width: 100%;
        height: 25vh;
    }
    .imagenes img{
        margin-bottom: 10%;
    }
    .bg-cavana, .bg-playa, .bg-botes{
        height: 60vh;
    }
    .hotel-naturaleza-container{
        height: 70vh;
    }
    .naturaleza-derecha{
        clear: both;
        margin-bottom: 30%;
    }
    .naturaleza-izquierda img{
        width: 100%;
        height: 60vh;
        margin-bottom: 20%;
        margin-top: 20%;
    }
    .hotel-naturaleza-container-dos{
        height: 140vh;
    }
    .planes-container{
        height: 190vh;
    }
    .planes{
        margin: 30px 0;
    }
    .card{
        margin-bottom: 10%;
    }
    .experiencias{
        width: 80%;
    }
    .comment-card{
        display: block;
        margin-left: auto;
        margin-right: auto;
    }
    .user{
        text-align: center;
        margin-top: 20%;
    }
    .image img{
        width: 100px;
        height: 100px;
        margin-top: 30%;
        margin-bottom: 30%;
        margin-left: auto;
        margin-right: auto;
    }
    .info-text{
        padding: 5%;
    }
    .info-text a{
        font-size: 14px;
    }
    .mapa-mares{
        max-width: 100%;
    }
    .footer-message{
        margin-top: 100px;
    }
    footer{
        height: 90vh;
    }
    .social{
        display: block;
    }
    .social i{
        margin: 5% 0;
    }
    .footer-info{
        display: block;
    }
    .footer-image img{
        max-width: 90%;
    }
}
@media only screen and (min-width: 1024px) and (max-width: 1600px) {
    .bg-playa{
        height: 80vh;
    }
    .planes{
        margin-top: 15%;
    }
    .card-container{
        margin-bottom: 10%;
    }
    .card{
        width: 200px;
        height: 100px;
    }
    .imagenes-abajo img{
        height: 295px;
    }
}
@media only screen and (max-width: 900px) {
    header {
        padding: 0 30px;
    }
}
@media only screen and (max-width: 700px) {
    .hamburger {
        display: flex;
    }
    .nav_check:checked + .logo-mares  {
        display: block;
        z-index: 9999;
    }
    header nav {
        position: absolute;
        width: 100%;
        left: -100%;
        top: 70px;
        width: 100%;
        background: #004f83;
        padding: 30px;
        transition: 0.3s;
    }
    header #nav_check:checked ~ nav {
        left: 0;
    }
    header nav ul {
        display: block;
    }
    header nav ul li a {
        margin: 5px 0;
    }
    .bg-playa{
        height: 60vh;
    }
}