:root {
    --oscuro-fondo: #1a1d23;
    --dorado: #b8924a;
    --blanco: #ffffff;
    --gris-claro: #f9f9f9;
}

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

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    background-color: var(--blanco);
    color: var(--oscuro-fondo);
    line-height: 1.6;
}

/* --- HEADER --- */
header {
    background: var(--blanco);
    padding: 15px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #eee;
    position: sticky;
    top: 0;
    z-index: 2000;
}

[id] {
    scroll-margin-top: 100px;
}

.header-logo {
    display: flex;
    align-items: center;
    gap: 15px;
    font-family: 'Lora', serif;
    font-size: 1.1rem;
}

.header-logo img {
    height: 85px;
    width: auto;
}

.header-subtitle {
    display: block;
    border: none;
    padding: 0;
    font-size: 0.75rem;
    text-transform: uppercase;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 600;
    letter-spacing: 1px;
    color: var(--oscuro-fondo);
    opacity: 0.7;
    margin-top: 5px;
}

nav {
    position: relative;
    display: flex;
    align-items: center;
}

.nav-links {
    display: flex;
}

nav a {
    text-decoration: none;
    color: var(--oscuro-fondo);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 1px;
    margin-left: 25px;
    transition: 0.3s;
}

nav a:hover { 
    color: var(--dorado); 
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--oscuro-fondo);
}

/* --- SLIDER PRINCIPAL --- */
.hero-slider {
    position: relative;
    width: 100%;
    height: 90vh;
    background-color: var(--oscuro-fondo);
    overflow: hidden;
}

.slides-container {
    display: flex;
    width: 100%;
    height: 100%;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.slide {
    flex: 0 0 100%;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 8%;
}

/* --- AJUSTE RESPONSIVO DEL SLIDER --- */
.slide-image-area {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    width: 100%;
}

.slide-image-area img {
    /* En PC, ocupará hasta el 80% de la altura disponible */
    max-height: 80vh; 
    /* En móvil, se ajusta al ancho de la pantalla */
    max-width: 90vw;
    width: auto;
    height: auto;
    object-fit: contain; /* Esto evita que la imagen se deforme */
    box-shadow: 15px 15px 50px rgba(0,0,0,0.5);
    border-left: 2px solid rgba(255,255,255,0.1);
}

/* Controles Slider */
.nav-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.1);
    border: none;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    transition: 0.3s;
}

.nav-arrow:hover { 
    background: var(--dorado); 
}

.arrow-prev { left: 20px; }
.arrow-next { right: 20px; }

/* --- SECCIONES --- */
section.content-section {
    padding: 100px 15%;
    min-height: 60vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.content-section p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #444;
    max-width: 800px;
    margin: 0 auto 20px auto;
}

.section-title {
    font-family: 'Lora', serif;
    font-size: 2.8rem;
    text-transform: uppercase;
    color: var(--oscuro-fondo);
    margin-bottom: 20px;
    position: relative;
    letter-spacing: 1px;
}

.section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background: var(--dorado);
    margin: 20px auto;
}

/* --- ACTIVIDADES --- */
.activities-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
    justify-content: center;
    margin-top: 40px;
}

.activity-card {
    background: #fbfbfb;
    padding: 30px;
    width: 350px;
    text-align: left;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    border: none;
    border-bottom: 3px solid transparent;
}

.activity-card:hover {
    background: #fff;
    transform: translateY(-8px);
    border-bottom: 3px solid var(--dorado);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.activity-card i {
    font-size: 2rem;
    color: var(--dorado);
    margin-bottom: 20px;
    display: block;
}

.activity-card h4 {
    font-family: 'Lora', serif;
    font-size: 1.4rem;
    margin-bottom: 15px;
    text-transform: uppercase;
    color: var(--oscuro-fondo);
}

.activity-card p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #555;
    margin-bottom: 15px;
}

.activity-card ul {
    list-style: none;
    padding-left: 0;
}

.activity-card ul li {
    font-size: 0.85rem;
    margin-bottom: 8px;
    padding-left: 20px;
    position: relative;
}

.activity-card ul li::before {
    content: "•";
    color: var(--dorado);
    position: absolute;
    left: 0;
    font-weight: bold;
}

/* --- CONTACTO --- */
.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 50px;
    max-width: 1100px;
    margin: 40px auto;
    text-align: left;
    align-items: start;
}

.contact-info h3 {
    font-family: 'Lora', serif;
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--dorado);
}

.contact-info p {
    font-size: 1rem;
    color: #666;
    margin-bottom: 30px;
    text-align: left;
    margin-left: 0;
}

.contact-form-container {
    background: #fff;
    padding: 30px;
    border: 1px solid #eee;
    box-shadow: 10px 10px 0px var(--dorado);
}

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

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
    font-weight: 700;
    color: var(--oscuro-fondo);
}

.form-group input, 
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ccc;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1rem;
    border-radius: 0;
    transition: all 0.3s ease;
}

.form-group input:focus, 
.form-group textarea:focus {
    outline: none;
    border-color: var(--dorado);
    background-color: #fffcf5;
}

.btn-submit {
    background: var(--oscuro-fondo);
    color: white;
    border: none;
    padding: 15px 30px;
    text-transform: uppercase;
    font-weight: bold;
    letter-spacing: 2px;
    font-size: 0.9rem;
    cursor: pointer;
    transition: 0.4s;
    width: 100%;
}

.btn-submit:hover {
    background: var(--dorado);
    letter-spacing: 4px;
}

/* --- WHATSAPP --- */
.whatsapp-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    color: #fff !important;
    border-radius: 50px;
    text-align: center;
    font-size: 35px;
    box-shadow: 2px 2px 10px rgba(0,0,0,0.2);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.whatsapp-btn:hover {
    background-color: #128c7e;
    transform: scale(1.1);
    box-shadow: 2px 2px 20px rgba(0,0,0,0.3);
}


/* --- FOOTER --- */
footer { 
    padding: 60px 20px; 
    text-align: center; 
    background: #111; 
    color: var(--blanco); 
}

.social-links { 
    margin-bottom: 20px; 
    margin-top: 20px;
    display: flex;
    justify-content: center;
    gap: 15px;
}

.social-links a { 
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 45px;
    height: 45px;
    background-color: #111; /* Mismo color del fondo del footer para que se fundan */
    border: none; /* Elimina completamente el contorno */
    border-radius: 50%;
    color: #ffffff !important; 
    font-size: 1.2rem; 
    text-decoration: none;
    transition: all 0.3s ease; 
}

.social-links a i {
    color: #ffffff !important;
}

.social-links a:hover { 
    background-color: var(--dorado);
    border-color: var(--dorado);
    transform: translateY(-4px); 
}

/* Ajuste de tamaño de texto en el footer */
footer p {
    font-size: 0.85rem;
    line-height: 1.4;
    margin-bottom: 10px;
    opacity: 0.9;
}

footer span {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.6;
}

/* --- RESPONSIVE --- */
@media (max-width: 900px) {
    header {
        padding: 12px 20px;
    }

    .menu-toggle {
        display: block;
    }

    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        right: 0;
        width: 220px;
        background: white;
        padding: 20px;
        box-shadow: 0 5px 10px rgba(0,0,0,0.1);
        z-index: 3000;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links a {
        margin: 15px 0;
        font-size: 1rem;
        text-align: left;
    }

    .header-logo {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 5px;
        max-width: 70%;
        font-size: 1.1rem;
        letter-spacing: 2px;
    }

    .header-logo img {
        height: 45px;
    }

    .slide {
        flex-direction: column;
        text-align: center;
        padding-top: 50px;
    }

    .slide-image-area img {
        max-width: 250px;
    }

    section.content-section {
        padding: 80px 20px;
    }

    .contact-layout {
        grid-template-columns: 1fr;
        padding: 0 10px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {
    .whatsapp-btn {
        width: 50px;
        height: 50px;
        font-size: 30px;
        bottom: 20px;
        right: 20px;
    }
}
/* Estilos mejorados para el Lightbox con navegación */
.lightbox {
    display: none;
    position: fixed;
    z-index: 99999;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    justify-content: center;
    align-items: center;
}

.lightbox img {
    max-width: 85%;
    max-height: 90vh;
    object-fit: contain;
    box-shadow: 0 0 25px rgba(0,0,0,0.7);
    border: 1px solid rgba(255,255,255,0.2);
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    color: white;
    font-size: 40px;
    cursor: pointer;
    z-index: 100000;
    transition: 0.3s;
}

.lightbox-close:hover {
    color: var(--dorado);
}

/* Flechas de navegación dentro del Lightbox */
.lightbox-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    z-index: 100000;
    transition: 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-arrow:hover {
    background: var(--dorado);
}

.lightbox-prev { left: 20px; }
.lightbox-next { right: 20px; }
.slide img {
    cursor: zoom-in; /* Cambia el cursor al pasar por encima */
}