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

html, body {
    height: 100%;
    overflow: hidden; /* ← IMPIDE SCROLL EN LA PORTADA */
}

body {
    font-family: 'Inter', sans-serif;
    background: #0a0a0a;
    color: #ffffff;
    line-height: 1.6;
    overflow-y: scroll; /* Permite scroll SOLO en galería y videos */
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    display: block;
}

/* ===== WHATSAPP FIJO ===== */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #25D366;
    color: #fff;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 9999;
    transition: transform 0.3s;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    color: #fff;
}

/* ===== HEADER ===== */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    padding: 15px 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 50px;
    width: auto;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.language-selector {
    display: flex;
    align-items: center;
    gap: 8px;
}

.lang-btn {
    background: transparent;
    border: none;
    color: #888;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    padding: 4px 8px;
    border-radius: 4px;
    transition: all 0.3s;
}

.lang-btn:hover {
    color: #fff;
}

.lang-btn.active {
    color: #fff;
    background: rgba(255, 255, 255, 0.1);
}

.lang-divider {
    color: #444;
}

.menu-toggle {
    background: transparent;
    border: none;
    color: #fff;
    font-size: 24px;
    cursor: pointer;
    display: none;
}

nav {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

nav.open {
    max-height: 200px;
}

.nav-menu {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 40px;
    padding-top: 15px;
}

.nav-link {
    color: #aaa;
    font-weight: 500;
    font-size: 15px;
    transition: color 0.3s;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0%;
    height: 2px;
    background: #fff;
    transition: width 0.3s;
}

.nav-link:hover {
    color: #fff;
}

.nav-link:hover::after {
    width: 100%;
}

/* ===== PORTADA FIJA ===== */
.hero {
    height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding-top: 80px;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 10, 10, 0.3);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    width: 100%;
    padding: 0 20px;
}

.hero-images {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    width: 100%;
    max-width: 1100px;
}

.hero-img {
    width: 35%;
    max-width: 400px;
    height: 450px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.8);
}

/* FRASE ELEGANTE ENTRE LAS FOTOS */
.hero-quote {
    width: 25%;
    text-align: center;
    padding: 0 15px;
}

.quote-text {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 400;
    font-style: italic;
    color: #ffffff;
    text-shadow: 0 0 30px rgba(255,255,255,0.1);
    line-height: 1.3;
    letter-spacing: 1px;
}

/* BOTÓN DE LA PORTADA */
.btn-hero {
    display: inline-block;
    background: transparent;
    color: #fff;
    padding: 14px 45px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    border: 2px solid rgba(255,255,255,0.3);
    cursor: pointer;
    transition: all 0.4s;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-top: 10px;
}

.btn-hero:hover {
    background: #fff;
    color: #0a0a0a;
    border-color: #fff;
    transform: scale(1.05);
}

/* ===== SECCIONES (GALERÍA Y VIDEOS) ===== */
.section {
    padding: 120px 0 80px;
    scroll-margin-top: 80px;
}

.section-title {
    font-size: 2.8rem;
    font-weight: 900;
    text-align: center;
    margin-bottom: 50px;
    letter-spacing: -1px;
    background: linear-gradient(135deg, #ffffff 60%, #888);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* ===== GALERÍA ===== */
.gallery-tabs {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.tab-btn {
    background: transparent;
    border: 1px solid rgba(255,255,255,0.15);
    color: #aaa;
    padding: 10px 28px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.tab-btn:hover {
    color: #fff;
    border-color: rgba(255,255,255,0.3);
}

.tab-btn.active {
    background: #fff;
    color: #0a0a0a;
    border-color: #fff;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    aspect-ratio: 1 / 1;
    background: #1a1a1a;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.08);
}

.gallery-item .overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    padding: 20px;
    opacity: 0;
    transition: opacity 0.3s;
}

.gallery-item:hover .overlay {
    opacity: 1;
}

.gallery-item .overlay p {
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    text-transform: capitalize;
}

/* ===== VIDEOS ===== */
.videos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 25px;
}

.video-item {
    background: #141414;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.05);
}

.video-item video {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    display: block;
}

.video-item .video-info {
    padding: 15px;
    color: #aaa;
    font-size: 14px;
}

/* ===== FOOTER ===== */
footer {
    background: #050505;
    padding: 30px 0;
    text-align: center;
    color: #555;
    font-size: 14px;
    border-top: 1px solid rgba(255,255,255,0.05);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
    .hero-images {
        flex-direction: column;
        gap: 30px;
    }
    .hero-img {
        width: 80%;
        max-width: 350px;
        height: 300px;
    }
    .hero-quote {
        width: 80%;
    }
    .quote-text {
        font-size: 1.8rem;
    }
    .section-title {
        font-size: 2.2rem;
    }
}

@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }
    .nav-menu {
        flex-direction: column;
        align-items: center;
        gap: 15px;
        padding: 20px 0;
    }
    .hero-img {
        width: 90%;
        height: 250px;
    }
    .hero-quote {
        width: 90%;
    }
    .quote-text {
        font-size: 1.5rem;
    }
    .btn-hero {
        padding: 12px 30px;
        font-size: 14px;
    }
    .gallery-grid {
        grid-template-columns: 1fr 1fr;
    }
    .videos-grid {
        grid-template-columns: 1fr;
    }
    .whatsapp-float {
        width: 50px;
        height: 50px;
        font-size: 26px;
        bottom: 20px;
        right: 20px;
    }
    .section {
        padding: 100px 0 60px;
    }
}
