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

.t-container .sct-main {
    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: 640px;
    margin: 4rem 2rem 7rem;
    text-align: center;
    display: flex;
    align-items: center;
}

.c-main h1 {
    width: 100%;
    font-size: 2.6rem;
    color: #fff;
  }
  
  @media(max-width: 860px) {
    .c-main h1 {
        font-size: 2rem;
    } 
  }

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

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

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


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

.t-container .sect-all.sect-2 {
    background-color: var(--dark-800);
}

.t-container .sect-all.sect-3 {
    background-color: var(--dark-750);
}

.t-container .sect-all.sect-4 {
    background-color: var(--dark-700);
    margin-bottom: 3rem;
}

.t-container .apresentation-team {
    width: 100%;
    max-width: 960px;
    margin: 4rem 2rem 7rem;
}


.t-container .apresentation-title {
    text-align: center;
    color: #fff;
    margin-bottom: 3rem;
}

.t-container .team-group {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 2rem;
}

.t-container .sect-3 .team-group {
    grid-template-columns: 1fr 1fr;
}

.t-container .member-card {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
}

.t-container .member-card img {
    width: 240px;
}

.t-container .member-card .member-text {
    text-align: center;
}

.t-container .member-card .member-text p {
    font-size: 1.2rem;
    font-weight: bold;
}

.t-container .member-card .member-text span {
    color: var(--light-900);
}

.t-container .sponsorship {
    width: 100%;
    max-width: 960px;
    margin: 4rem 2rem;
}

.t-container .sponsorship-group {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.t-container .sponsorship-group  a {
    display: flex;
    justify-content: center;
}

.t-container .sponsorship-group  img {
    width: 100%;
    max-width: 380px;
}

@media(max-width: 890px) {
    .t-container .team-group {
        grid-template-columns: 1fr 1fr;
    }

    .t-container .sponsorship-group {
        grid-template-columns: 1fr;
    }
}

@media(max-width: 570px) {
    .t-container .team-group, 
    .t-container .sect-3 .team-group {
        grid-template-columns: 1fr;
    }
}