.h-container {
    min-height: 100vh;
    overflow: hidden;
}

.sect-1 {
    width: 100%;
    min-height: 100vh;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(180deg, #1DBB87 0%, #6394BF 100%);
    overflow: hidden;
}

.c-main {
    width: 100%;
    max-width: 860px;
    margin: 4rem 2rem 9rem;
    text-align: center;
    z-index: 2;
}

.c-main h1 {
    width: 100%;
    font-size: 2.6rem;
    color: #fff;
  }
  
  @media(max-width: 860px) {
    .c-main h1 {
        font-size: 2rem;
    } 
  }
.c-main p {
    padding-top: 1rem;
    font-size: 1.2rem;
    font-weight: bold;
    color: var(--light-900);
}

.c-main img {
    width: 100%;
    max-width: 160px;
}

.c-main .animation-text {
    //opacity: 0;
    animation: animated-text 4s ease-in;
}

.sect-1 .wave {
    z-index: 2;
}

.wave {
    position: absolute;
    overflow: hidden;
    bottom: -10px;
    left: 0;
    width: 100%;
}

.wave img {
    min-width: 1224px;
    width: 100%
}

.sect-all {
    width: 100%;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--dark-900);
}
.sec-2-1 {
    background: var(--dark-800);
}

.apresentation {
    width: 100%;
    max-width: 720px;
    margin: 4rem 2rem 7rem;
}

.apresentation .text-center {
    text-align: center;
    line-height: 24px;
    margin-bottom: 10rem;
    font-size: 1.2rem;
}

.timelines {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10rem;
    margin-bottom: 2rem;
}

.timelines .timeline {
    display: flex;
    align-items: center;
    gap: 1rem;
    transform: translateX(400%);
    transition: transform 0.5s ease;
}

.timelines .timeline:nth-of-type(even) {
    transform: translateX(-400%);
}
.timelines .timeline.show {
    transform: translateX(0);
}

.timelines .timeline .line-image {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.timelines .timeline .line-image img {
    width: 180px;
}

.timelines .timeline .line-image span {
    display: block;
    width: 8px;
    height: 120px;
    background: var(--dark-700);
    border-radius: 4px;
}

.timelines .timeline .line-text {
    margin: 2rem 0;
    line-height: 24px;
}

.timelines .timeline .line-text h3 {
    padding: 1rem 0;
}

.sect-3 {
    background: var(--dark-700);  
}

.sect-3 .text-final {
    text-align: center;
    line-height: 24px;
}

.sect-3 .text-final h2 {
    margin: 1rem 0;
}

@keyframes animated-text {
    0% {
        opacity: 0;
        transform: translateY(40px);
    }
    80% {
        opacity: 0;
        transform: translateY(40px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 890px) { 
    .timeline {
        flex-direction: column;
    }

    .timeline .line-image span {
        display: none !important;
    }
}