﻿body{
    font-family: "Montserrat", sans-serif;
}

section {
    scroll-margin-top: 150px; /* la altura del header */
}

header{
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
    background: rgb(84, 177, 186, 0.2);
    padding-top: 12px;
    padding-bottom: 12px;
    
    transition: all 0.6s;
}
header:hover{
    background: rgb(84, 177, 186, 1);
}

.scrolled{
    background: rgb(84, 177, 186, 1);

}


.logotipo{
    text-align: center;
}

.logotipo img{
    width: 80%;

    border-radius: 10px;
}


nav a{
    color: black;
    text-decoration: none;
}
nav ul{
    list-style: none;
    padding: 0;
}
nav ul li{
    width: 25%;
    float: left;
}

.menuR{
    display: none;
}

.menu, .menuR{
    font-family: 'Times New Roman', Times, serif;
    text-align: center;
    color: white;
    font-size: 24px;
    text-shadow: 2px 2px 2px black;
    cursor: pointer;

    transition: all 0.4s;
}
.menu:hover, .menuR:hover{
    color: white;
    font-weight: bold;
}


.datos{
    text-align: center;
    color: white;
    text-shadow: 2px 2px 2px black;
    font-weight: bold;
}

.btn-reservar{
    font-weight: bold;
    font-size: 22px;
}

.datos span{
    width: 100%;
    font-size: 20px;
    display: inline-block;
    margin: 12px 0 0 0;
}



.efecto{
    position: relative;
    padding: 0;
}

.textoEfecto{
    position: absolute;
    top: 0;
    left: 0;
    text-align: center;
    padding-top: 400px;
}
.textoEfecto strong{
    background: rgb(255, 255, 255, 0.7);
    font-size: 50px;
    padding: 5px 10px;

    border-radius: 10px;
}
.textoEfecto span{
    background: rgb(255, 255, 255, 0.7);
    width: 100%;
    font-size: 33px;
    padding: 5px 10px;
    margin: 12px 0 30px 0;

    border-radius: 10px;
}

.textoEfecto p{
    color: white;
    font-size: 30px;
    font-weight: lighter;
    margin: 0;
}


.contenido{
    padding-top: 40px;
    padding-bottom: 40px;
}

.seccion{
    font-size: 22px;
    padding: 30px;
}

.seccion strong{
    width: 100%;
    font-size: 30px;
    color: #1a9047;
    display: inline-block;
    margin-bottom: 20px;
}


.ser{
    text-align: center;
}
.ser img{
    height: 80px;
}
.ser b{
    width: 100%;
    display: inline-block;
}


.ubicacion{
    background: #ddd;
    background: #f7f7f7;
    padding: 30px;

    border-radius: 20px;
}
.ubicacion label{
    font-size: 24px;
    font-weight: bold;
}
.ubicacion iframe{
    width: 100%;
    height: 300px;
}


.videos{
    padding-top: 60px;
    padding-bottom: 60px;
}


@media screen and (max-width:1400px){

}

@media screen and (max-width:1200px){
    header{
        position: relative;
        background: rgb(84, 177, 186, 1);
    }
    .textoEfecto{
        padding-top:200px;
    }
}

@media screen and (max-width:992px){
    .textoEfecto{
        position: relative;
        padding-top: 20px;
    }
    .textoEfecto p{
        color: blue;
    }
}

@media screen and (max-width:768px){
    nav{
        margin: 20px 0 0 !important;
    }
}

@media screen and (max-width:576px){
    .menuR{
        display: block;
    }
    nav ul{
        display: none;
    }
}


.chat{
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
    background: #24d366;
    font-weight: normal;
    font-size: 20px;
    color: white;
    padding: 6px 17px;
    border-radius: 20px;

    animation-name: pulse;
    animation-duration: 1s;
    animation-fill-mode: both;
    animation-delay: 0s;
    animation-iteration-count: 100;
}
@keyframes pulse {
    from,to {
        transform: scale3d(1,1,1)
    }

    50% {
        transform: scale3d(1.05,1.05,1.05)
    }
}

.pulse {
    animation-name: pulse
}




/* Galería */

.galeria{
    background: url(../images/fondo.webp) no-repeat center center;
    background-size: cover;
    padding-top: 30px;
    padding-bottom: 30px;
}


.titulo{
    text-align: center;
    font-size: 33px;
    font-weight:bold;
    text-shadow: 2px 2px 2px black;
}

.subtitulo{
    text-align: center;
    font-size: 23px;
    margin-bottom: 30px;
}

.blanco{
    color: white;
}


.gallery {
    display: flex;
    gap:20px;
    flex-wrap: wrap;
    justify-content: center;   /* CENTRA LAS IMÁGENES */
}

.thumb-box {
    width: 220px;
    height: 220px;
    overflow: hidden;
    border-radius: 6px;
    cursor: pointer;
}

.thumb-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Lightbox */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 2000;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,.8);
    display: none;
    justify-content: center;
    align-items: center;
}

.lightbox img {
    max-width: 80%;
    max-height: 80%;
    border-radius: 10px;
}

/* Botones */
.close-btn,
.prev-btn,
.next-btn {
    position: absolute;
    background: rgba(0,0,0,.6);
    border: none;
    padding: 10px 15px;
    color: #fff;
    font-size: 30px;
    cursor: pointer;
    border-radius: 8px;
}

/* X cerrar */
.close-btn {
    top: 20px;
    right: 20px;
    font-size: 40px;
}

/* Flecha izquierda */
.prev-btn {
    left: 40px;
}

/* Flecha derecha */
.next-btn {
    right: 40px;
}




.footer{
    background: linear-gradient(180deg, rgba(84,177,186,1) 0%, #146f8a 100%);
    color: white;
    margin-top: 40px;
    padding-top: 25px;
    padding-bottom: 20px;
    box-shadow: 0 -4px 12px rgba(0,0,0,0.2);
}

.footer a{
    color: white;
    text-decoration: none;
}

.footer a:hover{
    text-decoration: underline;
}

.footer-logo img{
    width: 70%;
    max-width: 220px;
    border-radius: 10px;
}

.footer-titulo{
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 10px;
}

.footer-links{
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li{
    margin-bottom: 6px;
}

.footer-whatsapp{
    display: inline-block;
    background: #24d366;
    padding: 6px 14px;
    border-radius: 18px;
    font-weight: bold;
    font-size: 14px;
}

.footer-copy{
    font-size: 13px;
    opacity: 0.9;
}

/* Responsive footer */
@media screen and (max-width:768px){
    .footer-logo img{
        width: 60%;
    }
    .footer{
        text-align: center;
    }
}