/* ===== HERO BASE ===== */
#inicio {
    position: relative;
    height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    background-color: #000;
    padding: 0;
    margin: 0;
}

.hero {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
    text-align: center;
}

/* ===== SLIDER ===== */
.hero-slider {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.hero-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.5s ease-in-out, transform 8s linear;
    transform: scale(1.1);
}

.hero-slide.active {
    opacity: 1;
    transform: scale(1);
    z-index: 2;
}

/* ===== OVERLAY ===== */
.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 3;
    background: linear-gradient(
        to top,
        rgba(var(--marca-rgb), 0.55) 0%,
        rgba(var(--marca-rgb), 0.25) 50%,
        rgba(var(--marca-rgb), 0.1) 75%,
        transparent 100%
    );
    pointer-events: none;
}

/* ===== CONTENT ===== */
.hero-content {
    position: relative;
    z-index: 10;
    padding: 0 5%;
    width: 100%;
    max-width: 1100px;
}

.hero-content h1 {
    font-size: clamp(2.5rem, 8vw, 4.5rem);
    font-weight: 800;
    color: #fff;
    line-height: 1.1;
    margin-bottom: 20px;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.hero-content p {
    font-size: clamp(1rem, 2.5vw, 1.4rem);
    color: #fff;
    max-width: 750px;
    margin: 0 auto 40px;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.4);
    opacity: 0.95;
}

/* ===== BUTTON ===== */
.btn-hero {
    display: inline-block;
    background-color: var(--marca);
    color: #fff;
    padding: 18px 50px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
    box-shadow: 0 10px 25px rgba(var(--marca-rgb), 0.4);
    border: none;
}

.btn-hero:hover {
    transform: translateY(-3px) scale(1.03);
    filter: brightness(1.1);
    box-shadow: 0 15px 35px rgba(var(--marca-rgb), 0.6);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.2rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .btn-hero {
        padding: 14px 30px;
    }
}