/* =========================================================
   DOBLE-CE | HERO (#inicio)
   ========================================================= */

#inicio {
    /* background:
        linear-gradient(160deg, rgba(44, 21, 7, 0.82) 0%, rgba(44, 21, 7, 0.55) 60%, rgba(187, 129, 56, 0.30) 100%),
        url('https://images.unsplash.com/photo-1596040033229-a9821ebd058d?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80') center/cover no-repeat; */
    background:
        linear-gradient(160deg, rgb(0 0 0) 0%, rgb(7 7 7 / 25%) 60%, rgb(0 0 0 / 0%) 100%),
         url(../img/hero-img.webp) center / cover no-repeat;
    min-height: 93vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 80px 8vw;
    position: relative;
    overflow: hidden;
}

#inicio::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='30' cy='30' r='1' fill='rgba(248,202,113,0.08)'/%3E%3C/svg%3E") repeat;
    pointer-events: none;
}

#inicio::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, var(--color3), var(--color2), var(--color1));
}

.hero-eyebrow {
    font-weight: 700;
    display: inline-block;
    font-family: var(--font-body);
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--color2);
    border: 2px solid rgba(248, 202, 113, 0.45);
    padding: 6px 16px;
    border-radius: 2px;
    margin-bottom: 22px;
    animation: fadeSlideUp 0.8s ease both;
}

#inicio h1 {
    font-family: var(--font-display);
    font-size: clamp(2.8rem, 6vw, 5rem);
    font-weight: 900;
    line-height: 1.08;
    color: #fffef5;
    margin-bottom: 8px;
    max-width: 700px;
    animation: fadeSlideUp 0.9s 0.1s ease both;
}

#inicio h1 em {
    color: var(--color2);
    font-style: italic;
}

#inicio p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.84);
    margin-bottom: 36px;
    max-width: 520px;
    line-height: 1.7;
    font-weight: 300;
    animation: fadeSlideUp 1s 0.2s ease both;
}

@keyframes fadeSlideUp {
    from {
        opacity: 0;
        transform: translateY(22px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-actions {
    display: flex;
    gap: 16px;
    align-items: center;
    flex-wrap: wrap;
    animation: fadeSlideUp 1s 0.3s ease both;
}

/* --- Botones globales (usados en hero y otras secciones) --- */
.btn-principal {
    background-color: var(--color2);
    color: var(--color5);
    text-decoration: none;
    padding: 14px 32px;
    border-radius: var(--radius);
    font-size: 0.92rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border: 2px solid transparent;
    cursor: pointer;
    display: inline-block;
    transition: background 0.25s, transform 0.2s, box-shadow 0.25s;
    font-family: var(--font-body);
}

.btn-principal:hover {
    background-color: var(--color3);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(200, 150, 10, 0.30);
}

.btn-principal:active {
    transform: translateY(0);
}

.btn-secundario {
    color: var(--color2);
    text-decoration: none;
    font-size: 0.88rem;
    font-weight: 400;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border-bottom: 1px solid rgba(248, 202, 113, 0.55);
    padding-bottom: 2px;
    transition: color 0.25s, border-color 0.25s;
}

.btn-secundario:hover {
    color: white;
    border-color: white;
}

/* =========================================================
   RESPONSIVE — HERO
   ========================================================= */
@media (max-width: 600px) {
    #inicio {
        align-items: center;
        text-align: center;
        padding: 60px 24px;
        min-height: 93vh;
    }

    .hero-actions {
        justify-content: center;
    }
}