.hero-banner {
    width: 100%;
    height: 40vh;
     margin-top: 40px; 
    background-image: url('../assets/img/fondos/fondo12.png');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.hero-banner::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.4);
}

.hero-text {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    padding: 0 20px;
}

#typing1 {
    font-family: 'Poppins', sans-serif;
    font-size: 2rem;
    font-weight: 600;
    color: #fff;
    border-right: none;
    white-space: pre-wrap; /* permite que el texto largo haga salto de línea */
    overflow: hidden;
}

/* Responsive: tablets */
@media (max-width: 1024px) {
    .hero-banner {
        height: 50vh;
    }
    #typping1 {
        font-size: 2rem;
    }
}

/* Responsive: móviles */
@media (max-width: 768px) {
    .hero-banner {
        height: 40vh;
    }
    #typping1 {
        font-size: 1.5rem;
    }
}

/* Responsive: móviles pequeños */
@media (max-width: 480px) {
    .hero-banner {
        height: 35vh;
    }
    #typping1 {
        font-size: 1.2rem;
    }
}