/* Reseteo básico */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
}

body {
    background-color: #050505;
    color: #ffffff;
    overflow-x: hidden;
}

/* Variables de color */
:root {
    --primary-color: #e62429; /* Rojo estilo CDPR / Zorro */
    --text-light: #f4f4f4;
}

/* Navegación */
.navbar {
    position: absolute; /* Para que flote sobre la imagen */
    top: 0;
    width: 100%;
    padding: 25px 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 10;
}

.logo {
    font-weight: 900;
    font-size: 1.2rem;
    letter-spacing: 2px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-icon {
    font-size: 1.8rem;
    color: var(--primary-color);
}

.studio-text {
    font-weight: 400;
    color: #a0a0a0;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-light);
    font-weight: 700;
    font-size: 0.9rem;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--primary-color);
}

.nav-social {
    display: flex;
    align-items: center;
    gap: 20px;
}

.nav-social a {
    text-decoration: none;
    color: var(--text-light);
    font-weight: 700;
    font-size: 0.9rem;
}

.support-btn {
    background-color: var(--primary-color);
    padding: 8px 15px;
    border-radius: 4px;
    transition: background-color 0.3s;
}

.support-btn:hover {
    background-color: #c11b22;
}

/* Hero Section (Fondo inmersivo) */
.hero {
    position: relative;
    height: 100vh;
    width: 100%;
    /* AQUÍ PONES LA RUTA DE TU IMAGEN DE FONDO */
    background-image: url('https://images.unsplash.com/photo-1542751371-adc38448a05e?q=80&w=2070&auto=format&fit=crop'); 
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.8) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.hero-logo h1 {
    font-size: 4rem;
    margin-bottom: 10px;
}

.hero h2 {
    font-size: 2.5rem;
    font-weight: 900;
    letter-spacing: 4px;
    line-height: 1.3;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.8);
}

.scroll-arrow {
    margin-top: 40px;
    display: inline-block;
    width: 40px;
    height: 40px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    text-decoration: none;
    line-height: 40px;
    font-weight: bold;
    font-size: 1.2rem;
    transition: transform 0.3s;
}

.scroll-arrow:hover {
    transform: translateY(5px);
}