    /* =========================
    ESTILOS GENERALES
    ========================= */
    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }

    body {
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        background-color: #000;
        color: #fff;
        line-height: 1.6;
    }

    /* =========================
    HEADER
    ========================= */

    header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        height: 70px; 
        /* 👈 un poco más alto */
        padding: 0 15px;
        background-color: #000;
        border-bottom: 2px solid #d4af37;
    }



    .logo img {
        height: 120px;
        object-fit: contain;
        animation: glow 2.5s infinite ease-in-out;
        position: relative;
        top: 9px; /* 👈 LO SUBE */
        left: -20px; /* 👈 LO PEGA MÁS AL CENTRO */
    }
    /* LOGO + UBICACIÓN */

    .logo {
        display: flex;
        align-items: center;
        gap: 3px;
        margin-left: -20px; /* 👈 clave para pegarlo más al logo */
    }



    /* ===== ANIMACIÓN ===== */

    @keyframes glow {
        0% {
            filter: drop-shadow(0 0 3px #d4af37);
        }
        50% {
            filter: drop-shadow(0 0 10px #d4af37);
        }
        100% {
            filter: drop-shadow(0 0 3px #d4af37);
        }
    }

    /* UBICACIÓN MAPS TOP LADO LOGO */
    
    
    .ubicacion-top {
        font-size: 11px;
        color: #ccc;
        text-decoration: none;
        margin-left: -5px; /* 👈 🔥 lo pega más al logo */
        display: flex;
        align-items: center;
        gap: 3px;
        margin-left: -45px;
        transition: color 0.3s;
        position: relative;  /* 👈 🔥 ESTO FALTABA */
        top: 25px;           /* ahora sí baja bien */
    }



    
    .ubicacion-top:hover {
        color: #d4af37;
    }



    /* =========================
    NAVEGACIÓN
    ========================= */
    .nav ul {
        list-style: none;
        display: flex;
        gap: 25px;
    }

    .nav a {
        text-decoration: none;
        color: white;
        font-weight: 500;
        transition: color 0.3s;
    }

    .nav a:hover {
        color: #d4af37;
    }

    
    .menu-btn {
    display: none; /* 👈 oculto por defecto */
    }


    /* =========================
    HERO / INICIO
    ========================= */
    .hero {
        padding: 15px 20px 0px; /* 👈 muy pegadito pero limpio  👈 controla altura */
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
    }

    .hero h1 {
        font-size: 2rem;
        margin-bottom: 8px;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 6px;
        color: #d4af37 /* 👈 cambia esto */
    }


    .hero-title {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px; /* menos espacio */
    }


    .logo-inline {
        height: 120px; /* ajusta entre 90–110 */
        margin-left: -20px; /* 👈 clave para "pegarlo" */
        position: relative;
        top: 8px;
        filter: drop-shadow(0 0 4px #d4af37);
    }





    
    .hero p {
        max-width: 550px;
        margin-bottom: 20px;
        font-size: 1.8rem;
    }


    /* BOTÓN HERO */
    .hero a {
        background-color: #d4af37;
        color: #000;
        padding: 10px 25px;
        text-decoration: none;
        border-radius: 25px;
        font-weight: 600;
        transition: all 0.3s ease;
        box-shadow: 0 5px 15px rgba(212, 175, 55, 0.4);
    }


    
    .hero a:hover {
        transform: translateY(-3px); /* 👈 efecto flotante */
        box-shadow: 0 10px 25px rgba(212, 175, 55, 0.7);
    }


    /* =========================
    SECCIONES GENERALES
    ========================= */
    section {
        padding: 60px 40px;
    }

    section h2 {
        text-align: center;
        margin-bottom: 30px;
        color: #d4af37;
    }



    /*inicio de redes sociales facebook instagram*/

/* CONTENEDOR */
.social-float {
    position: fixed;
    bottom: 20px;
    right: 20px;

    display: flex;
    flex-direction: column;
    gap: 10px;

    z-index: 1000;
}

/* BOTONES BASE */
/* BASE */
.btn-social {
    width: 50px;
    height: 50px;
    
    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 20px;

    box-shadow: 0 4px 10px rgba(0,0,0,0.4);

    transition: all 0.3s ease;
}


.btn-social {
    text-decoration: none;
    color: inherit;
}

/* 🔥 IMPORTANTÍSIMO */
.btn-social:link,
.btn-social:visited,
.btn-social:hover,
.btn-social:active,
.btn-social:focus {
    text-decoration: none;
}



/* WHATSAPP */
.btn-social.whatsapp {
    background: #25d366;
    color: #fff;
}

/* INSTAGRAM (GRADIENT PRO 🔥) */
.btn-social.instagram {
    background: linear-gradient(
        45deg,
        #f9ce34,
        #ee2a7b,
        #6228d7
    );
    color: #fff;
}

/* FACEBOOK */
.btn-social.facebook {
    background: #1877f2;
    color: #fff;
}


.btn-social:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 15px rgba(0,0,0,0.6);
}




.social-float {
    opacity: 0.85;
}

.social-float:hover {
    opacity: 1;
}
    /*fin de redes sociales facebook instagram*/






    /* =========================
    TARJETAS DE SERVICIOS
    ========================= */

    .servicios-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
        gap: 30px;
        max-width: 1100px;
        margin: 0 auto;
    }

    .servicio-card {
        background-color: #111;
        border: 1px solid #d4af37;
        border-radius: 12px;
        padding: 30px 20px;
        text-align: center;
        transition: transform 0.3s, box-shadow 0.3s;
    }

    .servicio-card i {
        font-size: 36px;
        color: #d4af37;
        margin-bottom: 15px;
    }

    .servicio-card h3 {
        margin-bottom: 10px;
        color: #fff;
    }

    .servicio-card p {
        font-size: 0.9rem;
        color: #ccc;
    }

    /* Hover elegante */
    .servicio-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 10px 25px rgba(212, 175, 55, 0.25);
    }





    /* =========================
    HORARIOS Y UBICACIÓN
    ========================= */

    #horarios {
        background: linear-gradient(180deg, #0b0b0b, #000);
        padding: 80px 40px;
    }

    #horarios h2 {
        margin-bottom: 50px;
        letter-spacing: 1px;
    }

    .info-box h3 {
        margin-bottom: 12px;
        font-size: 1.2rem;
        color: #fff;
    }

    .info-box p {
        font-size: 0.95rem;
        color: #ccc;
        line-height: 1.5;
    }

    /* GRID DE HORARIOS */
    .contenedor-horarios {
    display: flex;
    gap: 40px;
    align-items: stretch;
    max-width: 1100px;
    margin: auto;
}

    
    .info-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
    flex: 0.9;
}




    /* =========================
    GOOGLE MAPS
    ========================= */

    .mapa {
    flex: 1.1;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(212, 175, 55, 0.6);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.6);
    }   

    .mapa iframe {
    width: 100%;
    height: 100%;
    min-height: 350px;
    }

    /* =========================
    BOTONES
    ========================= */

    
    .btn-reservar {
        background-color: #d4af37;
        color: #000;
        padding: 12px 30px;
        text-decoration: none;
        border-radius: 30px;
        font-weight: bold;
        transition: background-color 0.3s, transform 0.3s;
        display: inline-block; /* 👈 importante */
        box-shadow: 0 0 10px rgba(212, 175, 55, 0.4);
        letter-spacing: 1px;
    }

    .btn-reservar:hover {
        background-color: #b8962e;
        transform: scale(1.05);
        box-shadow: 0 0 20px rgba(212, 175, 55, 0.8);
    }


    .btn-reservar:active {
        transform: scale(0.98);
    }










/* =========================
   INICIO DEL SLIDER PROMOCIONES
========================= */
/* =========================
   SECCIÓN PROMOCIONES
========================= */

#promociones {
    margin-top: -20px;
}

.promo-section {
    text-align: center;
}

.slider {
    position: relative;
    max-width: 800px;
    margin: auto;
    overflow: hidden;
}

.slides {
    display: flex;
    transition: transform 0.5s ease;
}

.slide {
    min-width: 100%;
    padding: 20px;
    display: flex;
    justify-content: center;
}

/* =========================
   IMAGEN + CONTENIDO
========================= */

.slide-content {
    position: relative;
    width: 100%;
    max-width: 450px;
}

/* IMAGEN */
.slide-content img {
    width: 100%;
    height: 320px;                /* tamaño controlado */
    object-fit: contain;          /* no recorta */
    background: transparent;            /* relleno elegante */

    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.6);

    transition: transform 0.3s ease;
}

/* EFECTO HOVER */
.slide-content:hover img {
    transform: scale(1.05);
}

/* =========================
   TEXTO ENCIMA (SIEMPRE VISIBLE)
========================= */

.overlay-text {
    position: absolute;
    bottom: 15px;
    left: 15px;
    right: 15px;

    background: rgba(0,0,0,0.6);
    padding: 12px;
    border-radius: 10px;

    color: #fff;
    text-align: left;
}

.overlay-text h3 {
    color: #d4af37;
    margin-bottom: 5px;
}

/* BOTÓN */
.btn-slide {
    display: inline-block;
    margin-top: 8px;
    padding: 6px 12px;

    background: #d4af37;
    color: #000;
    text-decoration: none;

    border-radius: 20px;
    font-weight: bold;
    font-size: 13px;
}

/* =========================
   BOTONES (FLECHAS)
========================= */

.prev, .next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);

    background: rgba(0,0,0,0.5);
    border: none;

    color: #fff;
    font-size: 24px;
    padding: 10px;

    cursor: pointer;
    z-index: 2;
}

.prev { left: 10px; }
.next { right: 10px; }

/* =========================
   DOTS
========================= */

.dots {
    margin-top: 15px;
}

.dots span {
    height: 10px;
    width: 10px;
    margin: 5px;

    background: #555;
    display: inline-block;
    border-radius: 50%;
    cursor: pointer;
}

.dots .active {
    background: #d4af37;
}

/* =========================
   MODAL FULL PANTALLA 🔥
========================= */


.modal-full {
    display: none;          /* ✅ solo esto */
    position: fixed;
    top: 0;
    left: 0;
    
    width: 100vw;
    height: 100vh;

    background: rgba(0,0,0,0.6);

    justify-content: center;
    align-items: center;

    z-index: 9999;
}



/* 🔥 caja grande */
.modal-box {
    
    
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 95vw;

    text-align: center;
    cursor: default; /* contenido NO clickeable */         
    background: transparent; 

}



/* 🔥 imagen grande */

.modal-box img {
    display: block;

    max-width: 95vw;
    max-height: 65vh;  

    margin: auto;
}




/* botón */
.modal-info a {
    margin-top: 10px;
    display: inline-block;
    
    
    max-width: 600px;
    margin-top: 15px; 


}



/* cerrar */
.cerrar {
    position: absolute;
    top: 20px;
    right: 30px;

    font-size: 40px;         
    font-weight: bold;
    color: white;
    z-index: 10000;
    background: rgba(0,0,0,0.5);
    border-radius: 50%;
    padding: 10px 15px;
}






/*FIN DEL SLIDER PROMOCIONES*/












    /* =========================
    CONTACTO
    ========================= */
    .contact-info {
        list-style: none;
        max-width: 600px;
        margin: auto;
        text-align: center;
    }

    .contact-info li {
        margin-bottom: 15px;
    }

    /* =========================
    FOOTER
    ========================= */
    footer {
        text-align: center;
        padding: 20px;
        border-top: 2px solid #d4af37;
        font-size: 0.9rem;
    }




    /*letra cursiva*/
    .marca {
        font-family: 'Great Vibes', cursive;
        color: #ffffff;
        font-weight: 400; /* 👈 importante */
    }





    /* =========================
    CELULARES
    ========================= */
    /* =========================
    RESPONSIVE - MÓVIL
    ========================= */

   @media (max-width: 768px) {

    /* ================= HEADER ================= */
    header {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        height: 70px;
        padding: 0 5px;
    }

    /* LOGO header */
    .logo img {
        height: 120px;
        object-fit: contain;
        position: relative;
        top: 9px; /* 👈 lo baja un poco */
        left: -9px;
    }


    /*logo de main*/
    
    .logo {
        display: flex;
        align-items: center;
        justify-content: flex-start; /* 👈 importante */
        gap: 3px; /* 👈 pegadito */
    }

    .ubicacion-top {
        font-size: 11px;
        color: #ccc;
        white-space: nowrap;

        margin-left: -35px;

        position: relative;  /* 👈 🔥 ESTO FALTABA */
        top: 25px;           /* ahora sí baja bien */
    }


    
    
    
    .marca {
            font-family: 'Great Vibes', cursive;
            font-weight: 400;
            font-size: 1.4rem;
            letter-spacing: 0.5px;
            line-height: 1.2;
        }



    /* BOTÓN ☰ */
    .menu-btn {
        display: block;
        font-size: 28px;
        background: none;
        border: none;
        color: #fff;
        cursor: pointer;
    }

    /* ================= MENU ================= */

    .nav {
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        max-height: 400px;

        background-color: rgba(0, 0, 0, 0.95);
        border-top: 1px solid #d4af37;
        box-shadow: 0 10px 25px rgba(0,0,0,0.6);

        overflow-y: auto;

        /* animación */
        opacity: 0;
        transform: translateY(-10px);
        pointer-events: none;
        transition: all 0.25s ease;
        z-index: 999;
    }

    /* ACTIVO */
    .nav.active {
        opacity: 1;
        transform: translateY(0);
        pointer-events: auto;
    }

    /* LISTA */
    .nav ul {
        display: flex;
        flex-direction: column;
        gap: 12px;
        padding: 20px 0;
        text-align: center;
    }

    /* ITEMS */
    .nav ul li {
        padding: 10px 0;
    }

    /* LINKS */
    .nav ul li a {
        color: #fff;
        font-size: 18px;
        text-decoration: none;
        transition: color 0.3s;
    }

    .nav ul li a:hover {
        color: #d4af37;
    }

    /* ================= HERO ================= */

    
    .hero {
    padding: 30px 1px 3px; /* compacto arriba */
}

/* TÍTULO */
.hero h1 {
    font-size: 1.5rem;
    display: flex;
    flex-direction: column; /* mantiene estilo elegante */
    align-items: center;
    gap: 0px; /* 👈 clave para que quede pegado */
    transform: translateY(18px);
}

/* TEXTO "Relájate en" */
.marca {
    font-family: 'Great Vibes', cursive;
    font-size: 1.3em;
    letter-spacing: 0.2px;
    line-height: 1.1;
}

/* LOGO */
.logo-inline {
    height: 110px;
    margin: 0;
    transform: translateY(-17px); /* 👈 🔥 lo sube y lo pega */
    filter: drop-shadow(0 0 6px #d4af37);
}

/* TEXTO DESCRIPTIVO */
.hero p {
    font-size: 1.4rem; /* 👈 MUY IMPORTANTE */
    padding: 0 5px;
    line-height: 1.4;
    margin-bottom: 23px;
}

    /* BOTONES */
    /* BOTONES */
    .hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center; /* 👈 🔥 ESTO FALTABA */
}



    /* ================= SECCIONES ================= */

    section {
        padding: 40px 20px;
    }

   

    .mapa {
        margin-top: 10px;
    }

    section h2 {
        font-size: 1.6rem;
    }

    /* GRID */
    
    .info-grid {
        display: grid;
        grid-template-columns: 1fr 1fr; /* 👈 🔥 uno al lado del otro */
        gap: 10px; /* 👈 menos espacio */
    }

    /* BOTÓN */
    .btn-reservar {
        padding: 10px 25px;
        font-size: 0.9rem;
    }

    /* FOOTER */
    footer {
        font-size: 0.8rem;
    }



    /*horarios*/
    
    .contenedor-horarios {
            flex-direction: column;
        }

    
    #horarios {
        padding: 50px 20px; /* 👈 menos aire */
    }

    /* fin dehorarios */








/* =========================
    FIN DEL CSS
    ========================= */
}

