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

body {
    font-family: 'Inter', sans-serif;
    background: #0a0a0a;
    color: #ffffff;
    line-height: 1.6;
}

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

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

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

/* ===== WHATSAPP ===== */
.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;
}

/* ===== LOGOS ===== */
.logo-wrapper {
    display: flex;
    align-items: center;
    gap: 5px;
}

.logo-img {
    height: 55px;
    width: auto;
    display: block;
}

.logo-luna {
    height: 58px;
}

.logo-letras {
    height: 48px;
}

/* ===== HEADER RIGHT ===== */
.header-right {
    display: flex;
    align-items: center;
    gap: 15px;
}

/* ===== IDIOMAS ===== */
.language-selector {
    display: flex;
    align-items: center;
    gap: 6px;
}

.lang-btn {
    background: transparent;
    border: none;
    color: #888;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    padding: 4px 6px;
    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;
    font-size: 13px;
}

/* ===== DROPDOWN ===== */
.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-btn {
    background: transparent;
    border: 1px solid rgba(255,255,255,0.2);
    color: #fff;
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s;
}

.dropdown-btn:hover {
    border-color: rgba(255,255,255,0.5);
}

.dropdown-btn i {
    font-size: 12px;
    transition: transform 0.3s;
}

.dropdown-btn.active i {
    transform: rotate(180deg);
}

.dropdown-content {
    display: none;
    position: absolute;
    top: 110%;
    right: 0;
    background: #1a1a1a;
    min-width: 180px;
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.1);
    padding: 8px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.8);
    z-index: 100;
}

.dropdown-content.show {
    display: block;
}

.dropdown-content a {
    display: block;
    padding: 10px 16px;
    color: #aaa;
    font-size: 14px;
    font-weight: 500;
    border-radius: 8px;
    transition: all 0.3s;
}

.dropdown-content a:hover {
    background: rgba(255,255,255,0.05);
    color: #fff;
}

/* ===== PORTADA ===== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 100px;
    padding-bottom: 40px;
    position: relative;
}

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

.hero-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    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);
}

.hero-quote {
    width: 25%;
    text-align: center;
    padding: 0 10px;
}

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

/* ===== GALERÍA ===== */
.section {
    padding: 100px 0 80px;
    min-height: 100vh;
}

.section-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.8rem;
    font-weight: 900;
    text-align: center;
    margin-bottom: 50px;
    letter-spacing: 4px;
    text-transform: uppercase;
    background: linear-gradient(135deg, #ffffff 60%, #888);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.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);
}

/* ===== LIGHTBOX FOTOS ===== */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 9999;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

.lightbox img {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
    border-radius: 10px;
    box-shadow: 0 0 50px rgba(0,0,0,0.8);
}

.lightbox.show {
    display: flex;
}

/* ===== VÍDEOS EN CUADRÍCULA (2 COLUMNAS) ===== */
.videos-grid-2col {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.videos-grid-2col .video-item {
    background: #141414;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.08);
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

.videos-grid-2col .video-item:hover {
    transform: scale(1.03);
    box-shadow: 0 8px 30px rgba(0,0,0,0.5);
}

.videos-grid-2col .video-item video {
    width: 100%;
    aspect-ratio: 9 / 16;
    object-fit: cover;
    display: block;
    background: #000;
    pointer-events: none;
}

.videos-grid-2col .video-item .video-info {
    padding: 10px 12px;
    color: #ccc;
    font-size: 13px;
    font-weight: 500;
    text-align: center;
    background: rgba(255,255,255,0.03);
    border-top: 1px solid rgba(255,255,255,0.05);
    font-family: 'Inter', sans-serif;
    letter-spacing: 0.3px;
}

/* ===== LIGHTBOX VÍDEOS ===== */
.video-lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.92);
    z-index: 9999;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.video-lightbox.show {
    display: flex;
}

.video-lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
    width: 100%;
    background: #0a0a0a;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.9);
}

.video-lightbox-close {
    position: absolute;
    top: 10px;
    right: 20px;
    color: #fff;
    font-size: 35px;
    font-weight: 300;
    cursor: pointer;
    z-index: 10;
    transition: transform 0.3s;
    text-shadow: 0 0 20px rgba(0,0,0,0.8);
}

.video-lightbox-close:hover {
    transform: scale(1.2);
}

.video-lightbox-content video {
    width: 100%;
    aspect-ratio: 9 / 16;
    max-height: 85vh;
    object-fit: contain;
    display: block;
    background: #000;
}

.video-lightbox-title {
    padding: 15px 20px;
    color: #fff;
    font-size: 18px;
    font-weight: 500;
    text-align: center;
    background: rgba(0,0,0,0.5);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(255,255,255,0.05);
    font-family: 'Inter', sans-serif;
    letter-spacing: 0.5px;
}

/* ===== 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: 350px;
    }
    .hero-quote {
        width: 80%;
    }
    .quote-text {
        font-size: 1.5rem;
        white-space: normal;
    }
    .section-title {
        font-size: 2.2rem;
    }
}

@media (max-width: 768px) {
    .language-selector {
        gap: 4px;
    }
    .lang-btn {
        font-size: 11px;
        padding: 2px 4px;
    }
    .dropdown-btn {
        padding: 6px 12px;
        font-size: 12px;
    }
    .dropdown-content {
        min-width: 150px;
    }
    .hero-img {
        width: 90%;
        height: 280px;
    }
    .hero-quote {
        width: 90%;
    }
    .quote-text {
        font-size: 1.3rem;
        white-space: normal;
    }
    .gallery-grid {
        grid-template-columns: 1fr 1fr;
    }
    .whatsapp-float {
        width: 50px;
        height: 50px;
        font-size: 26px;
        bottom: 20px;
        right: 20px;
    }
    .logo-img {
        height: 40px;
    }
    .logo-luna {
        height: 42px;
    }
    .logo-letras {
        height: 34px;
    }
    .hero {
        padding-top: 80px;
    }
    .videos-grid-2col {
        gap: 15px;
        padding: 0 15px;
        max-width: 100%;
    }
    .videos-grid-2col .video-item {
        border-radius: 12px;
    }
    .videos-grid-2col .video-item .video-info {
        font-size: 12px;
        padding: 8px 10px;
    }
    .video-lightbox-content {
        max-width: 95%;
        max-height: 95%;
        border-radius: 16px;
    }
    .video-lightbox-close {
        font-size: 30px;
        top: 8px;
        right: 15px;
    }
    .video-lightbox-title {
        font-size: 15px;
        padding: 12px 15px;
    }
            }

/* ===== EMOJI FLOTANTE AL HACER CLIC ===== */
.emoji-popup {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    font-size: 8rem;
    z-index: 10000;
    pointer-events: none;
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    text-shadow: 0 0 50px rgba(255,255,255,0.3);
}

.emoji-popup.show {
    transform: translate(-50%, -50%) scale(1);
}
