/* ==========================================================================
   VILLA PILARICA - ESTILOS OFICIALES HIGH-END (NEGRO / ORO / BLANCO)
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;600;700&family=Montserrat:wght@300;400;500;600&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: #FFFFFF;
    background-color: #0B0B0B;
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, .logo {
    font-family: 'Cinzel', serif;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

/* NAVEGACIÓN Y MENÚ */
.menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 50px;
    z-index: 100;
    background: linear-gradient(180deg, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.4) 100%);
    backdrop-filter: blur(8px);
    transition: all 0.4s ease;
}

.logo {
    font-size: 22px;
    font-weight: 700;
    color: #FFFFFF;
    letter-spacing: 3px;
}

.logo span {
    color: #D4AF37;
}

.enlaces {
    display: flex;
    gap: 30px;
}

.enlaces a {
    color: #FFFFFF;
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    position: relative;
    padding-bottom: 5px;
    transition: color 0.3s ease;
}

.enlaces a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 1px;
    bottom: 0;
    left: 0;
    background-color: #D4AF37;
    transition: width 0.3s ease;
}

.enlaces a:hover {
    color: #D4AF37;
}

.enlaces a:hover::after {
    width: 100%;
}

.menu-acciones {
    display: flex;
    align-items: center;
    gap: 15px;
}

.boton-menu {
    color: #D4AF37;
    border: 1px solid #D4AF37;
    padding: 10px 20px;
    text-decoration: none;
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.boton-menu:hover {
    background-color: #D4AF37;
    color: #000000;
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.4);
}

.hamburguesa {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
}

.hamburguesa span {
    width: 25px;
    height: 2px;
    background-color: #D4AF37;
    display: block;
}

/* PORTADA HERO */
.hero {
    position: relative;
    height: 100vh;
    overflow: hidden;
}

.hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.75);
}

.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0.8) 100%);
    z-index: 1;
}

.hero-content {
    position: absolute;
    z-index: 2;
    top: 55%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #FFFFFF;
    width: 85%;
    max-width: 900px;
}

.hero-content h1 {
    font-size: 56px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #FFFFFF;
}

.hero-content p {
    font-size: 18px;
    font-weight: 300;
    letter-spacing: 2px;
    margin-bottom: 40px;
    color: #E0E0E0;
}

.boton {
    display: inline-block;
    padding: 16px 38px;
    background-color: transparent;
    color: #FFFFFF;
    border: 1px solid #FFFFFF;
    text-decoration: none;
    font-size: 13px;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.boton:hover {
    background-color: #FFFFFF;
    color: #000000;
}

/* BIENVENIDA */
.bienvenida {
    padding: 100px 20px;
    text-align: center;
    max-width: 850px;
    margin: auto;
}

.bienvenida h2 {
    font-size: 32px;
    color: #D4AF37;
    margin-bottom: 25px;
}

.bienvenida p {
    font-size: 17px;
    line-height: 1.9;
    color: #CCCCCC;
    font-weight: 300;
}

/* LA CASA Y TARJETAS */
.casa {
    padding: 90px 50px;
    text-align: center;
    background-color: #050505;
    border-top: 1px solid rgba(212, 175, 55, 0.15);
    border-bottom: 1px solid rgba(212, 175, 55, 0.15);
}

.casa h2 {
    font-size: 36px;
    color: #FFFFFF;
    margin-bottom: 20px;
}

.casa > p {
    max-width: 700px;
    margin: 0 auto 50px;
    font-size: 16px;
    color: #A0A0A0;
    font-weight: 300;
}

.galeria-casa {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.tarjeta-casa {
    text-align: left;
    background: #0B0B0B;
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 20px;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.tarjeta-casa:hover {
    transform: translateY(-5px);
    border-color: #D4AF37;
}

.galeria-casa img {
    display: block;
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.tarjeta-casa h3 {
    font-size: 18px;
    color: #D4AF37;
    margin-top: 20px;
    margin-bottom: 10px;
}

.tarjeta-casa p {
    font-size: 14px;
    color: #BBBBBB;
    line-height: 1.7;
    font-weight: 300;
}

.caracteristicas-casa {
    max-width: 1000px;
    margin: 50px auto 0 auto;
    padding: 20px;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    font-size: 13px;
    letter-spacing: 2px;
    color: #D4AF37;
    text-transform: uppercase;
}

/* GALERÍA INTERACTIVA LIGHTBOX */
.seccion-galeria {
    padding: 90px 50px;
    background-color: #0B0B0B;
    text-align: center;
}

.seccion-galeria h2 {
    color: #D4AF37;
    font-size: 36px;
    margin-bottom: 15px;
}

.seccion-galeria p {
    color: #888888;
    margin-bottom: 40px;
    font-weight: 300;
}

.grid-galeria-interactiva {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.item-galeria {
    overflow: hidden;
    border: 1px solid rgba(212, 175, 55, 0.2);
    cursor: pointer;
    height: 220px;
}

.item-galeria img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease, filter 0.5s ease;
    filter: brightness(0.85);
}

.item-galeria:hover img {
    transform: scale(1.08);
    filter: brightness(1);
}

/* LIGHTBOX MODAL */
.modal-lightbox {
    display: none;
    position: fixed;
    z-index: 1000;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.92);
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 20px;
}

.contenido-modal {
    max-width: 90%;
    max-height: 80vh;
    border: 1px solid #D4AF37;
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.2);
}

#pie-foto-modal {
    color: #D4AF37;
    font-family: 'Cinzel', serif;
    margin-top: 15px;
    font-size: 16px;
    letter-spacing: 1px;
}

.cerrar-modal {
    position: absolute;
    top: 25px;
    right: 35px;
    color: #FFFFFF;
    font-size: 40px;
    cursor: pointer;
    transition: color 0.3s ease;
}

.cerrar-modal:hover {
    color: #D4AF37;
}

/* EXPERIENCIAS Y EVENTOS */
.experiencias {
    padding: 100px 50px;
    text-align: center;
    background-color: #080808;
}

.experiencias h2 {
    font-size: 36px;
    color: #D4AF37;
    margin-bottom: 20px;
}

.experiencias > p {
    max-width: 750px;
    margin: 0 auto 50px;
    font-size: 16px;
    color: #AAAAAA;
    font-weight: 300;
}

.experiencias-lista {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.experiencia {
    background-color: #111111;
    padding: 40px 30px;
    border: 1px solid rgba(212, 175, 55, 0.3);
    text-align: center;
    transition: all 0.3s ease;
}

.experiencia:hover {
    transform: translateY(-5px);
    border-color: #D4AF37;
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.15);
}

.experiencia h3 {
    font-size: 18px;
    color: #FFFFFF;
    margin-bottom: 15px;
}

.experiencia p {
    font-size: 14px;
    color: #CCCCCC;
    line-height: 1.7;
    font-weight: 300;
}

/* RESERVAS Y FORMULARIO */
.reservas-seccion {
    padding: 100px 50px;
    background-color: #050505;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    text-align: center;
}

.reservas-seccion h2 {
    color: #D4AF37;
    font-size: 38px;
    margin-bottom: 20px;
}

.reservas-seccion > p {
    color: #CCCCCC;
    font-size: 17px;
    max-width: 750px;
    margin: 0 auto 60px auto;
    font-weight: 300;
}

.reservas-contenedor {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 50px;
    text-align: left;
}

.reservas-info {
    background: #0B0B0B;
    border: 1px solid rgba(212, 175, 55, 0.2);
    padding: 40px;
}

.reservas-info h3 {
    color: #FFFFFF;
    font-size: 22px;
    margin-bottom: 20px;
}

.reservas-info p {
    color: #AAAAAA;
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 25px;
    font-weight: 300;
}

.lista-detalles {
    list-style: none;
    margin-bottom: 30px;
    border-top: 1px dashed rgba(212, 175, 55, 0.2);
    padding-top: 20px;
}

.lista-detalles li {
    color: #DDDDDD;
    font-size: 14px;
    margin-bottom: 12px;
}

.lista-detalles li strong {
    color: #D4AF37;
}

.contacto-directo {
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    padding-top: 20px;
}

.contacto-directo p {
    margin-bottom: 8px;
    color: #FFFFFF;
}

.contacto-directo a {
    color: #D4AF37;
    text-decoration: none;
}

.reservas-formulario {
    background: #111111;
    border: 1px solid rgba(212, 175, 55, 0.3);
    padding: 40px;
}

.grupo-form {
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
}

.grupo-form-doble {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.grupo-form label {
    color: #D4AF37;
    font-size: 12px;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.grupo-form input,
.grupo-form select,
.grupo-form textarea {
    width: 100%;
    padding: 12px 15px;
    background-color: #050505;
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #FFFFFF;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    outline: none;
    transition: border-color 0.3s ease;
}

.grupo-form input:focus,
.grupo-form select:focus,
.grupo-form textarea:focus {
    border-color: #D4AF37;
}

.boton-enviar {
    width: 100%;
    padding: 16px;
    background-color: #D4AF37;
    color: #000000;
    border: none;
    font-family: 'Cinzel', serif;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
}

.boton-enviar:hover {
    background-color: #FFFFFF;
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.4);
}

/* FOOTER */
.pie-pagina {
    background-color: #000000;
    padding: 60px 20px 30px 20px;
    border-top: 1px solid rgba(212, 175, 55, 0.15);
    text-align: center;
}

.logo-footer {
    font-family: 'Cinzel', serif;
    font-size: 24px;
    color: #FFFFFF;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.logo-footer span {
    color: #D4AF37;
}

.slogan-footer {
    color: #888888;
    font-size: 13px;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 30px;
    font-weight: 300;
}

.enlaces-footer {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 40px;
}

.enlaces-footer a {
    color: #CCCCCC;
    text-decoration: none;
    font-size: 12px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.enlaces-footer a:hover {
    color: #D4AF37;
}

.creditos {
    color: #555555;
    font-size: 12px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 25px;
    max-width: 800px;
    margin: 0 auto;
}

/* BOTÓN FLOTANTE WHATSAPP */
.whatsapp-flotante {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 55px;
    height: 55px;
    background-color: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
    z-index: 999;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.whatsapp-flotante:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
}

.icono-whatsapp {
    width: 32px;
    height: 32px;
}

/* ADAPTACIÓN MÓVIL (RESPONSIVE) */
@media (max-width: 900px) {
    .menu {
        padding: 0 20px;
    }
    .hamburguesa {
        display: flex;
    }
    .enlaces {
        display: none;
        position: absolute;
        top: 90px;
        left: 0;
        width: 100%;
        background-color: #0B0B0B;
        flex-direction: column;
        padding: 20px;
        gap: 20px;
        text-align: center;
        border-bottom: 1px solid #D4AF37;
    }
    .enlaces.activo {
        display: flex;
    }
    .hero-content h1 {
        font-size: 38px;
    }
    .galeria-casa, 
    .experiencias-lista, 
    .reservas-contenedor {
        grid-template-columns: 1fr;
    }
    .grupo-form-doble {
        grid-template-columns: 1fr;
    }
}
/* ==========================================================================
   CORRECCIÓN ESTÉTICA DE LA SECCIÓN LEGAL Y FOOTER
   ========================================================================== */

.seccion-textos-legales {
    padding: 120px 40px 60px 40px !important; /* Espacio superior para que el menú fijo no lo tape */
    background-color: #050505 !important;
    border-top: 1px solid rgba(212, 175, 55, 0.15) !important;
}

.contenedor-legal {
    max-width: 900px !important; /* Ancho contenido para alta legibilidad */
    margin: 0 auto !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 25px !important;
    text-align: left !important;
}

.bloque-legal {
    background-color: #0B0B0B !important;
    border: 1px solid rgba(212, 175, 55, 0.2) !important;
    padding: 30px 35px !important;
    border-radius: 4px !important;
}

.bloque-legal h3 {
    color: #D4AF37 !important;
    font-size: 16px !important;
    margin-bottom: 12px !important;
    font-family: 'Cinzel', serif !important;
    letter-spacing: 1.5px !important;
    text-transform: uppercase !important;
}

.bloque-legal p, 
.bloque-legal li {
    color: #AAAAAA !important;
    font-size: 13px !important;
    line-height: 1.7 !important;
    font-weight: 300 !important;
    font-family: 'Montserrat', sans-serif !important;
}

.bloque-legal ul {
    list-style: none !important;
    padding-left: 0 !important;
    margin-top: 10px !important;
}

.bloque-legal li {
    margin-bottom: 8px !important;
}

.bloque-legal strong {
    color: #FFFFFF !important;
}

.enlaces-legales {
    margin: 20px 0 !important;
    font-size: 12px !important;
}

.enlaces-legales a {
    color: #888888 !important;
    text-decoration: none !important;
    margin: 0 10px !important;
    transition: color 0.3s ease !important;
}

.enlaces-legales a:hover {
    color: #D4AF37 !important;
}
/* BLOQUE DESTACADO DE BIENVENIDA / LA MUSA */
.bienvenida {
    padding: 100px 40px;
    background-color: #0B0B0B;
    border-bottom: 1px solid rgba(212, 175, 55, 0.15);
}

.contenedor-musa {
    max-width: 850px;
    margin: 0 auto;
    text-align: center;
}

.subtitulo-oro {
    color: #D4AF37;
    font-family: 'Cinzel', serif;
    font-size: 13px;
    letter-spacing: 3px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 15px;
}

.bienvenida h2 {
    font-size: 34px;
    color: #FFFFFF;
    margin-bottom: 20px;
}

.bienvenida p {
    font-size: 17px;
    line-height: 1.8;
    color: #CCCCCC;
    font-weight: 300;
    margin-bottom: 30px;
}

.detalles-musa {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.detalles-musa span {
    color: #D4AF37;
    font-size: 13px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    font-weight: 500;
}