/* Variables de la paleta Corporativa / Legal Premium */
:root {
    --primary-dark: #071324;   /* Azul marino muy oscuro */
    --primary-light: #122a4f;  /* Azul marino intermedio */
    --gold: #d4af37;           /* Dorado metálico elegante */
    --gold-hover: #b5952f;
    --text-white: #f8f9fa;
    --text-gray: #b0b8c4;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Roboto, Helvetica, sans-serif;
}

body {
    background-color: var(--primary-dark);
}

/* --- Top Bar --- */
.top-bar {
    background-color: #030811;
    color: var(--text-gray);
    font-size: 0.85rem;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.top-bar-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
}

.top-bar-right span {
    margin-left: 20px;
}

.top-bar i {
    color: var(--gold);
    margin-right: 5px;
}

/* --- Navbar --- */
nav {
    position: absolute; /* Cambia a fixed con JS */
    width: 100%;
    top: 34px; /* Altura del top-bar */
    z-index: 1000;
    transition: all 0.3s ease;
    background: rgba(7, 19, 36, 0.4);
    backdrop-filter: blur(5px);
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

nav.sticky {
    position: fixed;
    top: 0;
    background: var(--primary-dark);
    box-shadow: 0 4px 20px rgba(0,0,0,0.5);
    border-bottom: 2px solid var(--gold);
}

.nav-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 15px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    color: var(--text-white);
    font-family: 'Georgia', serif;
    font-size: 2.2rem;
    font-weight: 700;
}

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

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

.nav-links > li > a {
    color: var(--text-white);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s;
}

.nav-links > li > a:hover {
    color: var(--gold);
}

.nav-icon {
    font-size: 0.7rem;
    margin-left: 4px;
}

/* Dropdown */
.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 150%;
    left: 0;
    background-color: var(--primary-light);
    min-width: 260px;
    list-style: none;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    border-top: 3px solid var(--gold);
    box-shadow: 0 10px 25px rgba(0,0,0,0.5);
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    top: 100%;
}

.dropdown-menu li a {
    display: block;
    padding: 15px 20px;
    color: var(--text-white);
    text-decoration: none;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    transition: background 0.3s;
}

.dropdown-menu li a:hover {
    background-color: rgba(212, 175, 55, 0.1);
    color: var(--gold);
    padding-left: 25px; /* Efecto de movimiento */
}

/* Botones */
.btn {
    padding: 12px 28px;
    font-size: 0.95rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.btn-outline-gold {
    background: transparent;
    color: var(--gold);
    border: 2px solid var(--gold);
}

.btn-outline-gold:hover {
    background: var(--gold);
    color: var(--primary-dark);
}

.btn-gold {
    background: var(--gold);
    color: var(--primary-dark);
    border: none;
}

.btn-gold:hover {
    background: var(--gold-hover);
}

.btn-full {
    width: 100%;
    padding: 15px;
    margin-top: 10px;
}

/* --- Hero Section --- */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-image: url('https://images.unsplash.com/photo-1542296332-2e4473faf563?q=80&w=2070&auto=format&fit=crop');
    background-size: cover;
    background-position: center;
    padding-top: 100px; /* Espacio para el navbar */
}

.hero-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(90deg, rgba(7, 19, 36, 0.95) 0%, rgba(7, 19, 36, 0.7) 50%, rgba(7, 19, 36, 0.4) 100%);
    z-index: 1;
}

.hero-container {
    position: relative;
    z-index: 2;
    max-width: 1300px;
    margin: 0 auto;
    padding: 40px;
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 60px;
    align-items: center;
    flex-grow: 1;
}

/* Columna de Texto */
.hero-text {
    color: var(--text-white);
    animation: fadeInLeft 1s ease;
}

.badge {
    display: inline-block;
    color: var(--gold);
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-size: 0.9rem;
    margin-bottom: 20px;
    border-bottom: 1px solid var(--gold);
    padding-bottom: 5px;
}

.hero-text h1 {
    font-family: 'Georgia', serif;
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 25px;
}

.hero-text p {
    font-size: 1.2rem;
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 30px;
    max-width: 650px;
}

.hero-features {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.hero-features span {
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.hero-features i {
    color: var(--gold);
}

/* Columna del Formulario */
.hero-form-box {
    background: rgba(18, 42, 79, 0.85); /* Azul cristalino */
    backdrop-filter: blur(10px);
    padding: 40px 30px;
    border-radius: 8px;
    border: 1px solid rgba(212, 175, 55, 0.3); /* Borde dorado sutil */
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
    animation: fadeInRight 1s ease;
}

.hero-form-box h3 {
    color: var(--text-white);
    font-size: 1.5rem;
    margin-bottom: 10px;
    font-family: 'Georgia', serif;
}

.hero-form-box p {
    color: var(--text-gray);
    font-size: 0.9rem;
    margin-bottom: 25px;
}

.input-group {
    position: relative;
    margin-bottom: 20px;
}

.input-group i {
    position: absolute;
    top: 50%;
    left: 15px;
    transform: translateY(-50%);
    color: var(--gold);
}

.input-group input, 
.input-group select {
    width: 100%;
    padding: 14px 15px 14px 45px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 4px;
    color: var(--text-white);
    font-size: 0.95rem;
    outline: none;
    transition: border 0.3s;
}

.input-group select option {
    background-color: var(--primary-dark);
    color: var(--text-white);
}

.input-group input:focus, 
.input-group select:focus {
    border-color: var(--gold);
    background: rgba(255, 255, 255, 0.1);
}

/* Cinta Inferior */
.hero-bottom-strip {
    position: relative;
    z-index: 2;
    background: rgba(3, 8, 17, 0.9);
    border-top: 1px solid rgba(255,255,255,0.1);
    display: flex;
    justify-content: center;
    gap: 80px;
    padding: 30px 20px;
    margin-top: auto;
}

.strip-item {
    display: flex;
    align-items: center;
    gap: 15px;
    color: var(--text-white);
}

.strip-item i {
    font-size: 2.2rem;
    color: var(--gold);
}

.strip-item h4 {
    font-size: 1.1rem;
    margin-bottom: 3px;
}

.strip-item p {
    font-size: 0.85rem;
    color: var(--text-gray);
}

/* Animaciones */
@keyframes fadeInLeft {
    from { opacity: 0; transform: translateX(-40px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes fadeInRight {
    from { opacity: 0; transform: translateX(40px); }
    to { opacity: 1; transform: translateX(0); }
}

/* Responsive básico */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .hero-features { align-items: center; }
    .hero-bottom-strip { flex-wrap: wrap; gap: 30px; }
    .top-bar { display: none; }
    .nav-links { display: none; } /* En un proyecto real aquí iría un menú hamburguesa */
}