/* --- SECCIÓN HERO --- */
.hero {
    position: relative;
    height: 100vh;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.hero::before,
.hero::after {
    content: '';
    position: absolute;
    left: 0;
    width: 100%;
    height: 40vh;
    z-index: 60;
    pointer-events: none;
}

.hero::before {
    top: 0;
    background: linear-gradient(to bottom, var(--bg-color), transparent);
}

.hero::after {
    bottom: 0;
    background: linear-gradient(to top, var(--bg-color), transparent);
}

.hero-content {
    position: relative;
    z-index: 70;
    text-align: center;
    pointer-events: none;
}

.hero h1 {
    font-size: clamp(2.5rem, 8vw, 5rem);
    font-weight: 100;
    letter-spacing: -0.02em;
    line-height: clamp(1, 2vw, 1.2);
    margin-bottom: 20px;
    text-transform: uppercase;
    text-shadow: 0 0 40px rgba(0, 0, 0, 1);
}

.hero p {
    font-family: 'Share Tech Mono', monospace;
    font-size: 0.9rem;
    letter-spacing: 10px;
    color: var(--dim-white);
    text-transform: uppercase;
}

/* --- HERO RESPONSIVE --- */
@media (max-width: 992px) {
    .hero {
        height: 70svh;
    }

    .hero::before,
    .hero::after {
        height: 25vh;
    }

    .hero-content {
        padding: 0 30px;
    }

    .hero p {
        font-size: 0.75rem;
        letter-spacing: 6px;
    }
}

@media (max-width: 576px) {
    .hero-content {
        padding: 0 20px;
    }

    .hero h1 {
        font-size: clamp(1.8rem, 10vw, 3rem);
        margin-bottom: 15px;
    }

    .hero p {
        font-size: 0.65rem;
        letter-spacing: 4px;
        line-height: 1.8;
    }
}
