html, body {
    scroll-behavior: smooth;
    overflow-x: hidden;
    width: 100%;
    position: relative;
}

body {
    font-family: 'Inter', sans-serif;
    background: #020617;
    color: white;
}

h1, h2, h3, h4, .serif {
    font-family: 'Cormorant Garamond', serif;
}

.lang-hidden {
    display: none !important;
}

section {
    scroll-margin-top: 100px;
    width: 100%;
    overflow: hidden;
}

.nav-light { 
    background: rgba(255, 255, 255, 0.98); 
    backdrop-filter: blur(10px); 
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    left: 0; 
    right: 0;
}

.nav-link-dark { 
    color: #0f172a; 
    transition: color 0.3s ease; 
}

.nav-link-dark:hover { 
    color: #d4af37; 
}

.lang-switcher-dark { 
    border-color: rgba(0, 0, 0, 0.1); 
    color: #0f172a; 
}

.hero-bg {
    position: absolute; 
    inset: 0;
    background: linear-gradient(rgba(2, 6, 23, 0.7), rgba(2, 6, 23, 0.9)), url('../../imagenes/hero2.jpeg');
    background-size: cover; 
    background-position: center; 
    z-index: 0;
}

.section-title { 
    font-size: 1.1rem; 
    font-weight: 800; 
    text-transform: uppercase; 
    letter-spacing: 0.5em; 
    color: #d4af37; 
    margin-bottom: 2rem; 
    display: block; 
}

.logo-container {
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    filter: opacity(0.9); 
}

.btn-gold, .btn-outline {
    padding: 16px 40px; 
    font-size: 11px; 
    font-weight: 700; 
    text-transform: uppercase; 
    letter-spacing: 0.25em; 
    transition: all 0.3s ease; 
    border-radius: 2px; 
    display: inline-flex; 
    align-items: center; 
    justify-content: center; 
    min-width: 240px; 
    cursor: pointer;
}

.btn-gold { 
    background-color: #d4af37; 
    color: #020617; 
}

.btn-gold:hover { 
    background-color: #e5c158; 
    transform: translateY(-2px); 
}

.btn-outline { 
    border: 1px solid rgba(255,255,255,0.3); 
    color: white; 
}

.btn-outline:hover { 
    background: rgba(255,255,255,0.05); 
    border-color: white; 
    transform: translateY(-2px); 
}

.glass-card {
    background: rgba(255, 255, 255, 0.03); 
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.08); 
    display: flex; 
    flex-direction: column; 
    height: 100%;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.glass-card:hover { 
    transform: translateY(-10px); 
    border-color: rgba(212, 175, 55, 0.4); 
    background: rgba(255, 255, 255, 0.05); 
}

/* Leadership Photos */

.leadership-photo-wrap {
    overflow: hidden;
}

.leadership-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.glass-card:hover .leadership-photo {
    transform: scale(1.20);
}

.legal-body h4 { 
    color: #d4af37; 
    font-size: 1.1rem; 
    text-transform: uppercase; 
    margin-top: 2rem; 
    border-bottom: 1px solid rgba(212, 175, 55, 0.2); 
    display: inline-block; 
}

.legal-body p { 
    color: #cbd5e1; 
    margin-bottom: 1.4rem; 
    line-height: 1.8; 
    font-size: 0.95rem; 
}
