:root {
    --primary: #bc002d; /* Rojo Japonés */
    --dark: #0a0a0a;
    --light: #f4f4f4;
    --grey: #222;
    --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--dark);
    color: var(--light);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2 {
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Header & Nav */
header {
    position: fixed;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    transition: var(--transition);
}

header.scrolled {
    background: rgba(10, 10, 10, 0.95);
    padding: 10px 0;
    border-bottom: 1px solid var(--grey);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 5%;
}

.logo {
    font-size: 1.8rem;
    font-weight: 700;
}

.logo span {
    color: var(--primary);
    margin-left: 10px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
}

.nav-links a {
    color: var(--light);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 400;
    transition: var(--primary);
}

.nav-links a:hover {
    color: var(--primary);
}

.btn-alt {
    border: 1px solid var(--primary);
    padding: 8px 20px;
    border-radius: 2px;
}

/* Sections Base */
.full-screen {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
    background-attachment: fixed; /* Parallax básico */
    position: relative;
    padding: 0 10%;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
}

.side-gradient { background: linear-gradient(to right, rgba(0,0,0,0.9), transparent); }
.side-gradient-right { background: linear-gradient(to left, rgba(0,0,0,0.9), transparent); text-align: right; }

.content {
    position: relative;
    z-index: 2;
    max-width: 700px;
}

.content h1 { font-size: 4rem; line-height: 1; margin-bottom: 20px; }
.content h2 { font-size: 3.5rem; color: var(--primary); }
.highlight { color: var(--primary); }

/* Buttons */
.cta-button, .whatsapp-btn {
    display: inline-block;
    padding: 15px 40px;
    background: var(--primary);
    color: white;
    text-decoration: none;
    text-transform: uppercase;
    font-weight: bold;
    margin-top: 20px;
    transition: var(--transition);
}

/* Botón de WhatsApp con esquinas redondeadas y transparencia */
.whatsapp-btn { 
    /* El color #06402B en RGBA con 80% de opacidad */
    background: rgba(6, 64, 43, 0.3); 
    
    /* --- Eje de Alineación --- */
    display: inline-flex;    /* Activa Flexbox para elementos en línea */
    align-items: center;     /* Centra verticalmente el texto y el icono */
    justify-content: center;  /* Centra horizontalmente desde el medio */
    gap: 12px;               /* Espacio exacto entre el icono y el texto */
    /* ------------------------- */
    
    /* Efecto de desenfoque de fondo (opcional, muy moderno) */
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    
    border: 1px solid rgba(255, 255, 255, 0.1); /* Sutil borde para definirlo mejor */
    border-radius: 50px; 
    padding: 15px 40px;
    display: inline-block;
    color: white;
    text-decoration: none;
    text-transform: uppercase;
    font-weight: bold;
    margin-top: 20px;
    transition: var(--transition);
}

/* Ajuste del Hover para que recupere opacidad al pasar el mouse */
.whatsapp-btn:hover {
    background: rgba(6, 64, 43, 1); /* Se vuelve sólido al interactuar */
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.3);
}

/* Aplicamos lo mismo al botón de Hero para consistencia */
.cta-button {
    border-radius: 50px; 
}

/* Efectos de Hover optimizados */
.cta-button:hover, .whatsapp-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
    filter: brightness(1.1); /* Ligero brillo al pasar el mouse */
}

/* Animations */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Footer */
footer {
    padding: 50px 0;
    text-align: center;
    background: var(--dark);
    border-top: 1px solid var(--grey);
}

.social-links { margin-bottom: 20px; }
.social-links a {
    color: var(--light);
    margin: 0 15px;
    text-decoration: none;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .nav-links { display: none; } /* Deberías implementar un menú móvil aquí */
    .content h1 { font-size: 2.5rem; }
    .content h2 { font-size: 2.2rem; }
    .full-screen { background-attachment: scroll; } /* Mejor performance en móvil */
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        right: -100%; /* Oculto por defecto */
        top: 0;
        height: 100vh;
        width: 70%;
        background: rgba(10, 10, 10, 0.98);
        flex-direction: column;
        justify-content: center;
        transition: var(--transition);
        backdrop-filter: blur(10px);
    }

    .nav-links.nav-active {
        right: 0; /* Se desliza desde la derecha */
    }

    .burger {
        display: block;
        cursor: pointer;
        z-index: 1001;
    }

    .burger div {
        width: 25px;
        height: 3px;
        background-color: var(--light);
        margin: 5px;
        transition: all 0.3s ease;
    }

    /* Animación X de la hamburguesa */
    .toggle .line1 { transform: rotate(-45deg) translate(-5px, 6px); }
    .toggle .line2 { opacity: 0; }
    .toggle .line3 { transform: rotate(45deg) translate(-5px, -6px); }
}