/* style.css - GHL Versión Final de Alto Impacto */
:root {
    --ghlRed: #C2001B;
    --ghlBlack: #0A0A0A;
    --ghlGray: #1C1C1C;
    --nav-height: 100px;
}

body {
    background-color: var(--ghlBlack);
    color: #ffffff;
    font-family: 'Plus Jakarta Sans', sans-serif;
    margin: 0;
    overflow-x: hidden;
}

/* EFECTO CRISTAL ESMERILADO CLARO */
.glass {
    background: rgba(255, 255, 255, 0.03) !important;
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* MENÚ MÓVIL DESPLEGABLE BAJO LA BARRA */
#mobile-menu {
    position: fixed;
    top: var(--nav-height);
    left: 0; width: 100%; height: auto;
    padding: 2.5rem 0;
    background: rgba(15, 15, 15, 0.95);
    backdrop-filter: blur(25px);
    display: flex; flex-direction: column; align-items: center; gap: 2rem;
    transform: translateY(-150%);
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 40; visibility: hidden;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
#mobile-menu.active { transform: translateY(0); visibility: visible; }

/* IMAGEN DE FONDO CINEMATOGRÁFICA */
.bg-hero-page {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%; z-index: -1;
}
.bg-hero-page img {
    width: 100%; height: 100%; object-fit: cover;
    filter: brightness(0.25) blur(12px);
}

/* COMPONENTES BENTO */
.bento-card {
    background: rgba(28, 28, 28, 0.65);
    backdrop-filter: blur(15px);
    border-radius: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.4s ease;
}

.wa-button {
    background: #25D366; color: white; padding: 12px 24px;
    border-radius: 50px; display: inline-flex; align-items: center; gap: 10px;
    font-weight: 800; font-size: 0.8rem; text-transform: uppercase;
}

.tech-table { width: 100%; border-collapse: collapse; }
.tech-table td { padding: 14px 0; border-bottom: 1px solid rgba(255,255,255,0.05); font-size: 0.85rem; }
.tech-table .label { color: #9ca3af; }
.tech-table .value { color: #ffffff; font-weight: 600; text-align: right; }

.flag-icon { width: 25px; height: 25px; border-radius: 50%; object-fit: cover; border: 2px solid white; box-shadow: 0 4px 10px rgba(0,0,0,0.5); }