/* Paleta de Colores */
:root {
    --primary-blue: #0a192f;   /* Azul noche profundo */
    --secondary-blue: #112240; /* Azul para secciones */
    --gold-accent: #c5a059;    /* Dorado tipo oro (ajustable a tu logo) */
    --gold-hover: #e2c27d;     /* Dorado más brillante para efectos */
    --text-light: #e6f1ff;     /* Blanco roto para lectura */
    --text-dim: #8892b0;       /* Gris azulado para textos secundarios */
}

body {
    margin: 0;
    font-family: 'Montserrat', sans-serif; /* Elegante y moderna */
    background-color: var(--primary-blue);
    color: var(--text-light);
    line-height: 1.6;
}

h1, h2, h3 {
    font-family: 'Playfair Display', serif; /* Estilo clásico/lujoso */
    color: var(--gold-accent);
}

/* Header & Nav */
header {
    background: rgba(10, 25, 47, 0.95);
    padding: 20px 0;
    border-bottom: 1px solid rgba(197, 160, 89, 0.2);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-img {
    height: 50px; /* Ajusta según tu logo */
    width: auto;
}

.company-name {
    font-weight: 700;
    font-size: 1.2rem;
    letter-spacing: 2px;
    color: var(--gold-accent);
    text-transform: uppercase;
}

nav a {
    color: var(--text-light);
    text-decoration: none;
    margin-left: 25px;
    font-size: 0.9rem;
    text-transform: uppercase;
    transition: color 0.3s;
}

nav a:hover {
    color: var(--gold-accent);
}

/* Botón Dorado */
.btn-gold {
    background: transparent;
    border: 1px solid var(--gold-accent);
    color: var(--gold-accent);
    padding: 10px 20px;
    text-decoration: none;
    transition: all 0.3s;
}

.btn-gold:hover {
    background: var(--gold-accent);
    color: var(--primary-blue);
}