/* ==========================================
   RESETEO UNIVERSAL Y FONDO OSCURO CONTINUO
   ========================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #050505; /* Fondo negro profundo continuo */
    color: #ffffff;
    font-family: 'Montserrat', sans-serif; 
}

/* ==========================================
   HERO PRINCIPAL (full-bleed con imagen)
   ========================================== */
.hero-full {
    position: relative;
    width: 100%;
    height: 78vh;
    min-height: 480px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-top: -86px; /* el header se superpone encima */
}

.hero-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 25%;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.35) 45%, rgba(0,0,0,0.85) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 0 20px;
    max-width: 640px;
}

.hero-logo {
    width: 72px;
    height: 72px;
    object-fit: contain;
    border-radius: 50%;
    margin-bottom: 18px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.5);
}

.hero-titulo {
    font-size: 2.6rem;
    line-height: 1.15;
    margin-bottom: 12px;
    color: #ffffff;
}

.hero-subtitulo {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.05rem;
    color: #dddddd;
    margin-bottom: 28px;
}

.hero-cta {
    display: inline-block;
    padding: 14px 36px;
    border: 1px solid #ffffff;
    color: #ffffff;
    text-decoration: none;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 4px;
    transition: 0.3s;
}

.hero-cta:hover {
    background-color: #ffffff;
    color: #000000;
}

/* ==========================================
   HEADER Y NAVEGACIÓN (superpuesto al hero)
   ========================================== */
.header {
    position: relative;
    z-index: 10;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 50px;
    background: linear-gradient(180deg, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0) 100%);
    border-bottom: none !important;
    box-shadow: none !important;
}

.logo-texto {
    font-family: 'Anton', sans-serif;
    color: #ffffff;
}

.nav-links { 
    list-style: none; 
    display: flex; 
    gap: 30px; 
}

.nav-links a { 
    text-decoration: none; 
    color: #ffffff; 
    font-weight: bold; 
    transition: color 0.3s ease; 
}

.nav-links a:hover { 
    color: #888888; 
}

.btn-carrito { 
    background: none; 
    border: none; 
    color: #ffffff; 
    font-size: 1.1rem; 
    cursor: pointer; 
    transition: transform 0.2s, color 0.2s; 
    display: flex; 
    align-items: center; 
    gap: 8px; 
}

.btn-carrito:hover { 
    transform: scale(1.1); 
    color: #cccccc; 
}

.menu-toggle { 
    display: none; 
    background: transparent; 
    border: none; 
    color: #ffffff; 
    font-size: 2rem; 
    cursor: pointer; 
}

/* ==========================================
   FOOTER
   ========================================== */
footer { 
    background-color: #000000; 
    color: #ffffff; 
    padding: 40px 20px 20px; 
    text-align: center; 
    margin-top: auto; 
}

.contenedor-footer { 
    max-width: 900px; 
    margin: 0 auto 30px; 
    display: flex; 
    justify-content: space-between; 
    gap: 20px; 
    flex-wrap: wrap; 
}

.footer-columna { 
    flex: 1; 
    min-width: 250px; 
    text-align: left; 
}

.footer-columna h3 { 
    font-size: 1.2rem; 
    margin-bottom: 15px; 
}

.footer-columna p { 
    font-size: 0.9rem; 
    color: #cccccc; 
    line-height: 1.5; 
}

.marca-container { 
    display: flex; 
    align-items: center; 
    gap: 15px; 
    margin-bottom: 15px; 
}

.logo-footer { 
    width: 50px; 
    filter: grayscale(100%) brightness(200%); 
    transition: 0.3s; 
}

.logo-footer:hover { 
    filter: none; 
}

.enlaces-contacto { 
    display: flex; 
    flex-direction: column; 
    gap: 10px; 
}

.enlace-icono { 
    text-decoration: none; 
    color: #ffffff; 
    display: inline-flex; 
    align-items: center; 
    gap: 8px; 
    font-size: 0.95rem; 
    transition: 0.3s; 
}

.enlace-icono:hover { 
    transform: translateX(5px); 
}

.enlace-icono.insta:hover { color: #E1306C; }
.enlace-icono.whats:hover { color: #25D366; }

.barra-inferior { 
    border-top: 1px solid #333333; 
    padding-top: 20px; 
    font-size: 0.8rem; 
    color: #888888; 
    display: flex; 
    flex-direction: column; 
    gap: 5px; 
}

.firma-dev strong { 
    color: #ffffff; 
}

/* ==========================================
   MEDIA QUERIES (MÓVILES)
   ========================================== */
@media (max-width: 768px) {
    .header { padding: 15px 20px; }
    .menu-toggle { display: block; order: -1; }

    .hero-full { height: 65vh; min-height: 420px; margin-top: -66px; }
    .hero-titulo { font-size: 1.9rem; }
    .hero-subtitulo { font-size: 0.95rem; }
    .hero-logo { width: 60px; height: 60px; }

    .nav-links {
        position: fixed; 
        top: 70px; 
        left: -100%; 
        width: 100%; 
        background-color: #111111; 
        flex-direction: column; 
        align-items: center; 
        padding: 20px 0; 
        transition: left 0.4s ease; 
        border-bottom: 1px solid #333333; 
        z-index: 98; 
    }
    .nav-links.activo { left: 0; }
}

@media (max-width: 600px) {
    .contenedor-footer, .footer-columna { text-align: center; }
    .enlaces-contacto, .marca-container { align-items: center; justify-content: center; }
}