:root {
    --accent: #660033;
    --dark: #000c14;
    --white: #ffffff;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--dark);
    color: var(--white);
    height: 100vh;
    overflow: hidden;
}

/* NAVBAR */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 100;
    background: rgba(0, 12, 20, 0.9); /* Más sólida */
    backdrop-filter: blur(20px);
    padding: 20px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 50px;
}

.logo { font-weight: 900; letter-spacing: 8px; font-size: 1.5rem; }

.nav-menu { display: flex; list-style: none; gap: 30px; }
.nav-menu li { font-size: 10px; font-weight: 700; letter-spacing: 2px; opacity: 0.6; }

/* HERO CONTAINER */
.hero {
    position: relative;
    height: 100vh;
    width: 100%;
    overflow: hidden;
}

.video-bg {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    z-index: -2;
}

.overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(
        circle, 
        rgba(0,12,20,0.5) 0%,   /* Un poco más oscuro en el centro */
        rgba(0,12,20,0.98) 100% /* Casi negro total en los bordes */
    );
    z-index: 0;
}

/* WRAPPER */
.main-wrapper {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding-top: 120px;
    position: relative;
    z-index: 10;
}

/* CONTENIDO */
.content {
    text-align: center;
    padding: 0 20px;
    margin-top: auto;
    margin-bottom: auto;
}

.badge {
    display: inline-block;
    padding: 6px 14px;
    border: 1px solid var(--accent);
    color: var(--accent);
    font-size: 9px;
    font-weight: 900;
    letter-spacing: 3px;
    border-radius: 50px;
    margin-bottom: 25px;
    background: rgba(0, 0, 0, 0.4); /* Fondo un poco más oscuro para el botón */
    
    /* Agregamos la sombra blanca para que resalte sobre el video */
    box-shadow: 0px 0px 10px rgba(255, 255, 255, 0.2); 
    text-shadow: 0px 0px 8px rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(5px); /* Desenfoque extra solo tras el botón */
}

.tagline {
    font-size: 10px;
    letter-spacing: 8px;
    margin-bottom: 10px;
    opacity: 0.7;
}

.main-title {
    font-size: clamp(1.8rem, 6vw, 3.8rem);
    font-weight: 900;
    font-style: italic;
    letter-spacing: -2px;
    line-height: 1.1;
    margin-bottom: 25px;
    text-transform: uppercase;
}

.accent-text { 
    color: var(--accent); 
    /* Sombra blanca sutil para separar el color oscuro del fondo */
    text-shadow: 
        0px 0px 10px rgba(255, 255, 255, 0.4), 
        0px 0px 2px rgba(255, 255, 255, 0.2);
    filter: drop-shadow(0px 0px 1px rgba(255, 255, 255, 0.5));
} 


.subtitle {
    font-size: clamp(13px, 2vw, 15px);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
    opacity: 0.8;
    letter-spacing: 0.5px;
}

/* FOOTER */
.footer-landing {
    padding: 40px 50px;
    background: linear-gradient(to top, var(--dark) 80%, transparent);
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto 20px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    padding-bottom: 15px;
}

.logo-footer { font-weight: 900; letter-spacing: 4px; }

.social-links a {
    color: white;
    text-decoration: none;
    font-size: 9px;
    font-weight: 700;
    margin-left: 25px;
    letter-spacing: 2px;
}

.footer-info { text-align: center; font-size: 11px; margin-bottom: 15px; opacity: 0.5; }

.footer-bottom {
    display: flex;
    justify-content: space-between;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 2px;
    opacity: 0.3;
    max-width: 1400px;
    margin: 0 auto;
}

/* WHATSAPP */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 100;
    width: 60px; height: 60px;
    background: #25d366;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 10px 20px rgba(0,0,0,0.4);
}

.whatsapp-icon { width: 32px; }

/* RESPONSIVE */
@media (max-width: 768px) {
    body { overflow-y: auto; height: auto; }
    .hero { height: auto; min-height: 100vh; }
    .nav-menu { display: none; }
    .main-wrapper { padding-top: 100px; }
    .content { padding: 40px 20px; }
    .footer-top, .footer-bottom { flex-direction: column; gap: 15px; text-align: center; }
    .social-links a { margin: 0 10px; }
}