:root {
    --bg-black: #0a0a0a;
    --text-white: #ffffff;
    --gold: #c5a059;
    --transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body { 
    background-color: var(--bg-black); 
    color: var(--text-white);
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
}

/* Navbar Dinámico */
.navbar {
    position: fixed;
    width: 100%;
    padding: 30px 50px;
    transition: var(--transition);
    z-index: 1000;
}

.navbar.scrolled {
    background: rgba(0,0,0,0.9);
    padding: 15px 50px;
    backdrop-filter: blur(10px);
}

/* Hero */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('../img/hero-v2.jpg') center/cover;
}

/* Efectos de animación */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: var(--transition);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.btn-primary {
    border: 1px solid var(--gold);
    color: var(--gold);
    padding: 15px 30px;
    text-decoration: none;
    transition: 0.3s;
}

.btn-primary:hover {
    background: var(--gold);
    color: white;
}
/* ============================
   MENÚ PROFESIONAL
============================ */

.navbar{
    position: fixed;
    top:0;
    left:0;
    width:100%;
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:25px 60px;
    z-index:1000;
}

.logo{
    font-size:30px;
    font-weight:700;
    letter-spacing:2px;
    color:#ffffff;
}

.nav-links{
    display:flex;
    list-style:none;
    gap:50px;
}

.nav-links li{
    list-style:none;
}

.nav-links a{
    color:#ffffff;
    text-decoration:none;
    font-size:22px;
    font-weight:600;
    letter-spacing:.5px;
    transition:.3s;
}

.nav-links a:hover{
    color:#c5a059;
}
/* ==========================
   HERO
========================== */

.hero-content{
    text-align:center;
    max-width:800px;
}

.hero-content h1{
    font-size:72px;
    font-weight:800;
    margin-bottom:20px;
    letter-spacing:3px;
}

.hero-content p{
    font-size:28px;
    color:#d8d8d8;
    margin-bottom:45px;
}

.btn-primary{
    display:inline-block;
    padding:18px 45px;
    font-size:20px;
    border-radius:8px;
    font-weight:bold;
}
/*=========================
LOGO
=========================*/

.logo img{
    width: 60px;
    height:60px;
    object-fit:contain;
    display:block;
}

.logo img:hover{
    transform:scale(1.05);
}

.navbar{
    position: fixed;
    top:0;
    left:0;
    width:100%;
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:25px 60px;
    z-index:1000;
}