/* HERO SECTION - INDEX */
#hero-main {
    position: relative;
    height: 85vh; 
    min-height: 550px;
    background: url('../images/index/taller-principal-.webp') no-repeat center center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    overflow: hidden;
    padding: 0 20px;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(3, 7, 18, 0.85), rgba(3, 7, 18, 0.6));
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    width: 100%;
}

.hero-badge {
    background-color: var(--primary-orange);
    color: white;
    padding: 6px 18px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 1.5px;
    display: inline-block;
    margin-bottom: 25px;
    box-shadow: 0 4px 15px rgba(255, 140, 0, 0.3);
}

#hero-main h1 {
    font-size: clamp(2.2rem, 6vw, 4.5rem);
    color: white;
    line-height: 1.1;
    margin-bottom: 25px;
    font-weight: 800;
}

#hero-main p {
    font-size: clamp(1rem, 2vw, 1.3rem);
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.hero-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: center;
}

/* Botones del Hero */
.hero-actions .btn-primary, 
.hero-actions .btn-outline {
    padding: 16px 35px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    min-width: 200px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
}

.hero-actions .btn-primary {
    background: var(--primary-orange);
    color: white !important;
    border: none;
    box-shadow: 0 10px 25px rgba(255, 140, 0, 0.3);
}

.hero-actions .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(255, 140, 0, 0.5);
}

.hero-actions .btn-outline {
    border: 2px solid white;
    color: white !important;
    background: transparent;
}

.hero-actions .btn-outline:hover {
    background-color: white;
    color: var(--dark-gray) !important;
    transform: translateY(-3px);
}

@media screen and (max-width: 768px) {
    #hero-main { height: 90vh; }
    .hero-actions {
        flex-direction: column;
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }
    .hero-actions .btn-primary, 
    .hero-actions .btn-outline {
        width: 100%;
        min-width: unset;
    }
}
