
/* Triangulo */
.section-1 {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 100vh;
    text-align: center;
    color: white;
}

.section-1 img {
    max-width: 65px;
}

.beat {
    animation: beat 1s infinite;
}

@keyframes beat {

    0%,
    100% {
        transform: scale(0.8);
    }

    25% {
        transform: scale(0.85);
    }

    50% {
        transform: scale(0.9);
    }

    75% {
        transform: scale(1);
    }
}

/* Sección 2 */
.section-2 {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 100vh;
    text-align: center;
    color: white;
    font-size: 3em;
    overflow: hidden;
    margin-bottom: 10%;
}

.section-2 span {
    transform: translateX(100%);
    opacity: 0;
    transition: transform 0.5s ease, opacity 0.5s ease;
}

.section-2 span.visible {
    transform: translateX(0);
    opacity: 1;
}

/*Section-3 */
.section-3 {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    text-align: center;
    color: white;
    box-sizing: border-box;
}

.logo-right {
    margin-left: auto;
}

.logo-right img {
    max-width: 172px;
}

.band-container {
    margin-top: 10%;
    position: relative;
    width: 100%;
    overflow: hidden;
    overflow-y: auto;
    white-space: nowrap;
    box-sizing: border-box;
}

.band {
    display: inline-block;
    white-space: nowrap;
    will-change: transform;
    animation: move-band 10s linear infinite;
}

.band p {
    font-size: 2em;
    display: inline-block;
    color: white;
    margin: 0;
}

@keyframes move-band {
    0% {
        transform: translateX(0%);
    }

    100% {
        transform: translateX(-50%);
    }
}

.img-solutions {
    width: 60%;
    position: relative;
}

.img-solutions img.img-rotate {
    width: 100%;
    animation: rotate 5s linear infinite;
}

.background-rotate {
    width: 100%;
    height: auto;
}

.overlay-content {
    width: 100%;
    overflow: hidden;
    position: absolute;
    top: 50%;
    left: 60%;
    transform: translate(-50%, -50%);
    text-align: center;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.section-3-animate {
    font-size: 3em;
}

.section-3-animate {
    overflow: hidden;
}

.section-3-animate span {
    transform: translateX(100%);
    opacity: 0;
    transition: transform 0.5s ease, opacity 0.5s ease;
}

.section-3-animate span.visible {
    transform: translateX(0);
    opacity: 1;
}

@media (max-width: 768px) {
    .section-2 {
        font-size: 2em;
        margin-bottom: 0%;
    }

    .section-3-animate {
        font-size: 2em;
    }

    .logo-right {
        margin-block-start: 3%;
    }
}

/*Section-6*/
.section-6 {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 30vh;
    text-align: center;
    color: white;
}

.section-6 img {
    width: 50px;
    height: 50px;
}

.section-6 a {
    color: #ed028c;
    font-size: 1em;
    text-decoration: none;
}

.section-6 a p {
    margin-block-start: 0;
}