#hero {
    position: relative;
    width: 100%;
    height: 500px;
    background-image: url('https://images.unsplash.com/photo-1550985543-f47f38aee65d?q=80&w=2070&auto=format&fit=crop');
    /* Guitarra eléctrica de fondo */
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    
    align-items: center;
    overflow: hidden;
    margin-top: 20px;
    background: linear-gradient(135deg, #FF6B35, #FFA500);
}

.hero-content {
    text-align: center;
    width: 100%;
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-content h1 {
    font-family: 'Arial Black', sans-serif;
    font-size: 4rem;
    color: #FFD700;
    /* Amarillo */
    text-transform: uppercase;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    margin-bottom: 20px;
    /* Espacio antes de la parte blanca */
    position: relative;
    z-index: 3;
}

.hero-divider {
    background: white;
    width: 80%;
    /* No ocupa todo el ancho */
    padding: 30px 20px;
    /* Forma de trapecio: base ancha abajo, estrecha arriba */
    clip-path: polygon(10% 0, 90% 0, 100% 100%, 0% 100%);
    position: relative;
    margin-bottom: 0;
    /* Pegado al fondo si se quiere, o flotando */
}

.hero-subtitle {
    font-family: 'Arial Black', sans-serif;
    font-size: 3.5rem;
    color: #F44336;
    /* Morado */
    text-transform: uppercase;
    margin: 0;
    letter-spacing: 2px;
}

.hero-subtitle-reflection {
    font-family: 'Arial Black', sans-serif;
    font-size: 3.5rem;
    color: #F44336;
    /* Morado */
    text-transform: uppercase;
    margin: 0;
    letter-spacing: 2px;
    transform: scaleY(-1);
    opacity: 0.2;
    position: absolute;
    top: 60px;
    /* Ajustar posición del reflejo */
    left: 0;
    right: 0;
    pointer-events: none;
}

.hero-features {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 50px;
    /* Espacio tras el título/reflejo */
}

.feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #333;
    font-weight: bold;
    font-size: 0.8rem;
    text-transform: uppercase;
}

.feature-item i {
    font-size: 1.8rem;
    color: #FFD700;
    margin-bottom: 8px;
    filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.7));
    transition: transform 0.3s ease, filter 0.3s ease;
}

.feature-item:hover i {
    transform: scale(1.15);
    filter: drop-shadow(3px 3px 6px rgba(0, 0, 0, 0.8));
}

/* Responsive */
@media (max-width: 768px) {
    .hero-divider {
        width: 95%;
        clip-path: polygon(5% 0, 95% 0, 100% 100%, 0% 100%);
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-subtitle,
    .hero-subtitle-reflection {
        font-size: 2rem;
    }

    .hero-features {
        flex-wrap: wrap;
        gap: 15px;
    }
}