.h1-title {
    position: relative;
    overflow: hidden;
    border-right: .15em solid orange; /* Simula el cursor de escritura */
    white-space: nowrap; /* Evita el salto de línea */
    margin: 0;
    padding: 0;
    animation: typing 4s steps(40, end) forwards, fall 1.5s ease forwards, blinkCursor 1s infinite;
}

@keyframes typing {
    from {
        width: 0;
    }
    to {
        width: 100%;
    }
}

@keyframes fall {
    from {
        transform: translateY(-100%);
    }
    to {
        transform: translateY(0);
    }
}

@keyframes blinkCursor {
    0% {
        border-color: orange;
    }
    50% {
        border-color: transparent;
    }
    100% {
        border-color: orange;
    }
}
/* Estilo para la sección info*/
.hidden {
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease, visibility 0.5s;
}

.section-container {
    padding: 100px 50px; 
    text-align: center;
    background-color: rgba(235, 226, 226, 0.9); 
    /* background-image: url('assets/images/fondo-bombon.webp'); */
    background-size: cover; 
    background-position: center; 
    height: 70vh; 
    display: flex; 
    justify-content: center;
    align-items: center;
}

/* Estilo para el texto dentro de la sección */
.section-text {
    max-width: 600px; 
    margin: 0 auto;
    z-index: 1;
}

.section-content {
    opacity: 1; 
    animation: fadeIn 1s forwards; 
}

.section-content p {
    color: #555; 
    font-size: 2.5rem; 
    line-height: 1.6; 
    margin-bottom: 20px; 
}

/* Animación de entrada */
@keyframes fadeIn {
    0% {
        opacity: 0;
        transform: scale(0.1);
    }
    70% {
        opacity: 1;
        transform: scale(1.2);
    }
    100% {
        transform: scale(1);
    }
}

@keyframes fadeIn {
    0% {
        opacity: 0;
        transform: scale(0.1);
    }
    70% {
        opacity: 1;
        transform: scale(1.2);
    }
    100% {
        transform: scale(1);
    }
}

/* animacion de alianzas */

.brand-img {
    transition: transform 0.3s ease; /* Transición suave */
}

.brand-img:hover {
    transform: scale(1.4); /* Aumenta el tamaño de la imagen al 110% */
}
