/* --- CONFIGURACIÓN BASE --- */
:root {
    --oro: #d4af37;
    --oscuro: #0a0a0a;
    --gris: #161616;
}

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

html { scroll-behavior: smooth; }

body {
    background-color: var(--oscuro);
    color: white;
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3 { font-family: 'Playfair Display', serif; }

/* --- NAVEGACIÓN MEJORADA (MÁS ANCHA Y PREMIUM) --- */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 6%;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    position: fixed;
    width: 100%;
    z-index: 1000;
    border-bottom: 1px solid rgba(212, 175, 55, 0.15);
    transition: all 0.3s ease;
}

.logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.35rem;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: 1px;
}

.logo span { color: var(--oro); }

.logo small {
    display: block;
    font-family: 'Poppins', sans-serif;
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: #aaa;
    margin-top: 4px;
}

.nav-links { 
    display: flex; 
    list-style: none; 
    gap: 25px;
    align-items: center;
}

.nav-links a { 
    color: #e0e0e0; 
    text-decoration: none; 
    font-size: 0.8rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 6px 0;
    position: relative;
    transition: color 0.3s ease;
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 1px;
    bottom: 0;
    left: 0;
    background-color: var(--oro);
    transition: width 0.3s ease;
}

.nav-links a:hover { color: var(--oro); }
.nav-links a:hover::after { width: 100%; }

/* ICONOS Y BANDERAS BIEN DISTRIBUIDOS */
.contact-icons {
    display: flex;
    gap: 16px;
    padding-left: 18px;
    border-left: 1px solid rgba(255, 255, 255, 0.2);
}

.contact-icons a {
    font-size: 1rem;
    text-decoration: none;
    transition: transform 0.2s ease, filter 0.2s ease;
}

.contact-icons a:hover {
    transform: scale(1.2);
    filter: brightness(1.2);
}

.contact-icons a::after { display: none; }

/* Estilo premium para las banderas de idioma */
.lang-switch {
    display: flex;
    gap: 12px;
    align-items: center;
    padding-left: 10px;
}

.lang-switch img {
    width: 22px;
    height: auto;
    cursor: pointer;
    border-radius: 2px;
    box-shadow: 0 1px 4px rgba(0,0,0,0.3);
    transition: transform 0.2s ease, filter 0.2s ease;
    filter: brightness(0.9);
}

.lang-switch img:hover {
    transform: scale(1.15);
    filter: brightness(1.1);
}

/* --- HERO (VÍDEO) --- */
.hero-section {
    height: 100vh;
    width: 100%;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #000;
}

#hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    object-fit: cover;
    z-index: 0;
    filter: brightness(0.5);
}

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

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 20px;
}

.hero-content h1 { 
    font-size: clamp(2.2rem, 6vw, 3.8rem); 
    margin-bottom: 15px; 
    font-weight: 700;
    letter-spacing: 1px;
}

.hero-content p {
    font-size: clamp(1rem, 2.5vw, 1.2rem);
    color: #e0e0e0;
}

.btn-primary {
    display: inline-block;
    padding: 13px 38px;
    background: var(--oro);
    color: black;
    border: none;
    text-decoration: none;
    font-weight: 600;
    border-radius: 50px;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: #fff;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255,255,255,0.1);
}

/* --- SECCIONES --- */
.about-section, .menu-section, .press-section, .contact-section { padding: 120px 8%; }

.about-container, .press-container {
    display: flex;
    align-items: center;
    gap: 50px;
    max-width: 1200px;
    margin: 0 auto;
}

.about-image, .press-image { flex: 1; }
.about-text, .press-text { flex: 1; }

.about-image img, .press-image img {
    width: 100%;
    height: auto;
    max-width: 500px;
    border-radius: 8px;
    border: 1px solid rgba(255,255,255,0.05);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.about-text h2, .press-text h2 { 
    color: var(--oro); 
    font-size: 2.6rem; 
    margin-bottom: 5px; 
}

.subtitle {
    display: block;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #888;
    margin-bottom: 25px;
}

.about-text p, .press-text p {
    color: #cccccc;
    margin-bottom: 20px;
    font-size: 0.95rem;
    text-align: justify;
}

.btn-outline {
    display: inline-block;
    margin-top: 10px;
    padding: 12px 25px;
    border: 1px solid var(--oro);
    color: var(--oro);
    text-decoration: none;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 4px;
    transition: 0.3s;
}

.btn-outline:hover {
    background: var(--oro);
    color: black;
}

/* --- GRID DE SERVICIOS / TARJETAS --- */
.menu-section h2 {
    text-align: center;
    font-size: 2.6rem;
    color: var(--oro);
    margin-bottom: 10px;
}

.grid-cocteles {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.card {
    background: var(--gris);
    padding: 25px;
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.03);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.4);
}

.img-container { 
    height: 220px; 
    overflow: hidden; 
    border-radius: 6px; 
    margin-bottom: 15px; 
}

.img-container img { 
    width: 100%; 
    height: 100%; 
    object-fit: cover; 
}

.card h3 {
    color: var(--oro);
    font-size: 1.3rem;
    margin-top: 15px;
    margin-bottom: 10px;
}

.card p {
    font-size: 0.85rem;
    color: #b3b3b3;
    line-height: 1.5;
}

/* --- SECCIÓN DE CONTACTO --- */
.contact-section {
    background-color: var(--gris);
    border-top: 1px solid #1a1a1a;
}

.contact-box {
    max-width: 650px;
    margin: 0 auto;
    text-align: center;
}

.contact-box h2 {
    color: var(--oro);
    font-size: 2.6rem;
    margin-bottom: 10px;
}

.contact-box p {
    color: #aaa;
    font-size: 0.95rem;
    margin-bottom: 35px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-form input, .contact-form textarea {
    width: 100%;
    padding: 15px;
    background-color: var(--oscuro);
    border: 1px solid #222;
    border-radius: 6px;
    color: white;
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
    transition: border-color 0.3s;
}

.contact-form input:focus, .contact-form textarea:focus {
    outline: none;
    border-color: var(--oro);
}

.contact-form button {
    margin: 15px auto 0;
    width: auto;
}

.direct-channels {
    margin-top: 40px;
    border-top: 1px solid #222;
    padding-top: 30px;
}

.direct-channels span {
    font-size: 0.85rem;
    color: #666;
    display: block;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.whatsapp-btn {
    display: inline-block;
    padding: 12px 25px;
    background-color: #128c7e;
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.85rem;
    border-radius: 4px;
    transition: 0.3s;
}

.whatsapp-btn:hover { background-color: #25d366; }

/* --- BOTÓN FLOTANTE WHATSAPP --- */
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #25d366;
    color: white;
    border-radius: 50px;
    display: flex;
    align-items: center;
    padding: 8px 15px;
    text-decoration: none;
    z-index: 2000;
    box-shadow: 0 4px 15px rgba(0,0,0,0.4);
}

.whatsapp-float img { width: 22px; height: 22px; }

.whatsapp-float span { 
    max-width: 0; 
    overflow: hidden; 
    transition: max-width 0.5s ease, margin-right 0.5s ease; 
    white-space: nowrap; 
    font-size: 0.85rem; 
    font-weight: 600;
}

.whatsapp-float:hover span { 
    max-width: 150px; 
    margin-right: 10px; 
}

/* --- PIE DE PÁGINA --- */
footer { 
    text-align: center; 
    padding: 50px 20px; 
    border-top: 1px solid #1a1a1a; 
    color: #666; 
    font-size: 0.8rem; 
}

footer p { margin-bottom: 8px; }

/* --- RESPONSIVE MÓVIL OPTIMIZADO --- */
@media (max-width: 992px) {
    nav { 
        flex-direction: column; 
        text-align: center; 
        gap: 15px; 
        padding: 20px 4%;
    }
    .nav-links { 
        gap: 15px; 
        flex-wrap: wrap; 
        justify-content: center; 
    }
    .nav-links a { font-size: 0.75rem; }
    .about-container, .press-container { 
        flex-direction: column; 
        text-align: center; 
        gap: 30px;
    }
    .about-text p, .press-text p { text-align: center; }
    .contact-icons { border: none; padding: 0; }
    .hero-content h1 { font-size: 2.2rem; }
}