@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

:root {
    --marinho: #1E2036;
    --lilas: #4F5269;
    --azulclaro: #007AFF;
    --azulescuro: #0059BA;
    --verde: #13C296;
    --cinzinha: #E2E8F0;

}


* {
    /* outline: 1px solid red; */
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Poppins;
}

.black-text {
    color: black;
    font-weight: 400;
    text-decoration: none;
}

.blue-text {
    color: var(--azulclaro);
    font-weight: 400;
    text-decoration: none;
}

.white-text {
    color: rgb(255, 255, 255);
    font-weight: 400;
    text-decoration: none;
}

.blue-button {
    display: flex;
    width: max-content;
    min-width: 222px;
    height: 58px;
    justify-content: center;
    align-items: center;
    border-radius: 12px;
    background-color: var(--azulclaro);
    color: white;
    font-weight: 700;
    font-family: Poppins;
    font-size: 18px;
    text-decoration: none;
    padding: 20px;
    transition: 0.5s;
}

.blue-button:hover {
    background-color: #dbedff;
    color: #007AFF;
}

.gradient-text {
    background-image: linear-gradient(to right, var(--marinho), var(--lilas));
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
}

.row {
    display: flex;
    flex-direction: row;
}

.column {
    display: flex;
    flex-direction: column;
}

body {
    background-color: #F3F7FA;
    overflow-x: hidden;
}

.ham-container {
    display: none;
    background-color: var(--cinzinha);
    width: 100%;
    height: 100px;
    top: 0;
}

.ham-nav {
    height: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-around;
}

.ham-nav .menu-img {
    width: 30px;
    height: 30px;
    cursor: pointer;
}

.ham-content {
    max-height: 0;
    overflow: hidden;
    background-color: var(--cinzinha);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    transition: max-height 0.5s ease-out;
}

.active {
    max-height: 400px;
    transition: max-height 0.5s ease-out;
}

.ham-content a {
    cursor: pointer;
    text-align: center;
    width: 100%;
    font-size: 20px;
    font-weight: 600;
    padding: 20px;
    border-radius: 0;
}

header {
    width: 100%;
    height: 170px;
    top: 0;
}

header nav {
    padding: 0px 20px 0px 20px;
    height: 100%;
    display: grid;
    grid-template-columns: auto 12% 331px auto;
    align-items: center;
    justify-items: center;
    gap: 5px;
    flex-wrap: wrap;
}

.nav-logo {
    width: 230px;
}

header nav .black-text {
    cursor: pointer;
    font-size: 23px;
}

header nav .blue-text {
    text-decoration: underline;
    font-size: 23px;
}

header nav .blue-button {
    width: 222px;
}

.top-main {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0px 30px 0px 30px;
    gap: 40px;
}

.top-main .gradient-text {
    font-size: clamp(34px, 6vw, 96px);
    max-width: 980px;
    line-height: 115px;
    text-align: center;
}


.top-main .black-text {
    font-size: 23px;
    max-width: 950px;
    text-align: center;
}

.top-main img {
    width: 950px;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    max-width: 90%;
}

main {
    display: flex;
    width: 100%;
    flex-direction: column;
    align-items: center;
    background-color: white;
    padding: 20px;
    padding-bottom: 40px;
}

.main-1st {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    width: 100%;
    gap: 70px;
    margin-top: 100px;
    justify-content: center;
    align-items: center;
}

.main-1st img {
    display: flex;
    height: 575px;
}

.main-1st .column {
    width: 700px;
    gap: 15px;
}

.main-1st .gradient-text {
    width: 600px;
    font-size: 64px;
    line-height: 76.8px;
}

.main-1st .black-text {
    font-size: 24px;
    line-height: 38.8px;
}

.main-2nd {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    width: 90%;
    gap: 20px;
    margin-top: 100px;
    justify-content: center;
    align-items: center;
}

.main-2nd .card {
    display: flex;
    background-color: white;
    flex-direction: column;
    width: 350px;
    height: 350px;
    border-radius: 43px;
    padding: 30px;
    box-shadow: rgba(0, 122, 255, 0.15) 0px 4px 15px;
}

.main-2nd .card img {
    width: 93px;
    height: 93px;
}

.main-2nd .card h1 {
    font-size: 32px;
    font-weight: 600;
}

.main-2nd .card p {
    font-size: 20px;
}

.main-2nd .card-blue {
    display: flex;
    background-color: var(--azulclaro);
    flex-direction: row;
    width: 712px;
    height: 350px;
    border-radius: 43px;
    padding: 30px;
    overflow: hidden;
    box-shadow: rgba(0, 122, 255, 0.15) 0px 4px 15px;
}

.main-2nd .card-blue .column {
    justify-content: space-between;
}

.main-2nd .card-blue .white-text {
    font-size: 32px;
    line-height: 38px;
}

.main-2nd .card-blue .blue-button {
    font-size: 18px;
    background-color: var(--verde);
}

.main-2nd .card-blue .blue-button:hover {
    background-color: white;
    color: var(--verde);
}

.main-2nd .card-blue img {
    height: 341px;
}

.main-3rd {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap-reverse;
    width: 100%;
    gap: 70px;
    margin-top: 100px;
    justify-content: center;
    align-items: center;
}

.main-3rd .column {
    width: 700px;
    gap: 20px;
}

.main-3rd .gradient-text {
    width: 700px;
    font-size: 64px;
    line-height: 76.8px;
}

.main-3rd .black-text {
    width: 590px;
    font-size: 20px;
    line-height: 32px;
}

.main-3rd .black-text blu {
    color: var(--azulclaro);
    font-weight: 600;
}

.main-3rd img {
    display: flex;
    height: 710px;
}

.main-4th {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    width: 100%;
    gap: 70px;
    margin-top: 100px;
    justify-content: center;
    align-items: center;
}

.main-4th .column {
    width: 700px;
    gap: 20px;
}

.main-4th .gradient-text {
    width: 700px;
    font-size: 64px;
    line-height: 76.8px;
}

.main-4th .black-text {
    width: 590px;
    font-size: 20px;
    line-height: 32px;
}

.main-4th .black-text blu {
    color: var(--azulclaro);
    font-weight: 600;
}

.main-4th img {
    display: flex;
    height: 710px;
}

.main-5th {
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 10px;
    margin-top: 100px;
    justify-content: center;
    align-items: center;
}

.main-5th .gradient-text {
    font-size: 64px;
    line-height: 76.8px;
}

.main-5th .row {
    flex-wrap: wrap;
    justify-content: center;
    gap: 80px;
    padding: 70px;
}

.main-5th .funct {
    display: flex;
    flex-direction: row;
    width: 605px;
    gap: 15px;
}

.main-5th .funct img {
    width: 60px;
    height: 60px;
}

.main-5th .funct .column {
    gap: 15px;
    margin-top: 5px;
}

.main-5th .funct h1 {
    font-size: 36px;
    font-weight: 700;
    line-height: 43.2px;
}

.main-5th .funct p {
    font-size: 20px;
    font-weight: 400;
    line-height: 28px;
}

.main-6th {
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 10px;
    margin-top: 100px;
    justify-content: center;
    align-items: center;
}

.main-6th .gradient-text {
    font-size: 64px;
    line-height: 76.8px;
}

.main-6th .tipo {
    display: flex;
    flex-direction: row;
    gap: 10px;
    margin: 35px;
}

.main-6th .tipo .switch {
    display: flex;
    flex-direction: row;
    background-color: var(--cinzinha);
    border-radius: 50px;
    width: 44px;
    height: 24px;
    padding: 4px;
    align-items: center;
    transition: 0.5s;
    cursor: pointer;
}


.main-6th .tipo .switch .switch-ball {
    background-color: white;
    border-radius: 50%;
    width: 18px;
    height: 18px;
    transition: 0.3s;

}

.main-6th .tipo .switch.active .switch-ball {
    transform: translateX(18px);
}

.main-6th .tipo .switch.active {
    background-color: var(--azulclaro);
}



.main-6th .row {
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
}

.main-6th .plano {
    display: flex;
    flex-direction: column;
    width: 470px;
    height: 810px;
    background-color: white;
    box-shadow: rgba(0, 122, 255, 0.15) 0px 4px 15px;
    border-radius: 40px;
    padding: 30px;
    gap: 15px;
    padding-bottom: 15px;
    z-index: 2;
}

.main-6th .plano h1 {
    font-weight: 600;
    font-size: 32px;
    line-height: 26px;
}

.main-6th .plano p {
    font-weight: 400;
    font-size: 20px;
    line-height: 28px;
}

.main-6th .plano .custo {
    display: flex;
    flex-direction: row;
    align-items: end;
}

.main-6th .plano .custo .preco {
    font-weight: 600;
    font-size: 64px;
    line-height: 90px;
}

.main-6th .plano .custo .duracao {
    font-weight: 300;
    line-height: 60px;
}

.main-6th .plano .beneficios {
    display: flex;
    flex-direction: row;
    gap: 10px;
}

.main-6th .plano .beneficios img {
    width: 24px;
    height: 24px;
}


.main-6th .plano .blue-button {
    margin-top: auto;
    align-self: center;
    width: 95%;
}

.main-6th .plano .nota {
    font-weight: 400;
    font-size: 16px;
    color: var(--lilas);
    align-self: center;
    margin-top: -10px;
    transition: 0.3s;
}

.main-6th .lines {
    position: absolute;
    z-index: 1;
    margin-top: 450px;

}

.main-6th .lines img {
    max-width: 1920px;
    width: 100%;
}

.main-7th {
    display: flex;
    flex-direction: row;
    width: 100%;
    gap: 10px;
    margin-top: 100px;
    justify-content: space-between;
    align-items: center;
}

.main-7th {
    display: flex;
    flex-direction: row;
    width: 100%;
    gap: 10px;
    margin-top: 100px;
    justify-content: space-between;
    align-items: center;
    z-index: 1;
    padding-left: 170px;
    padding-right: 170px;
    flex-wrap: wrap;
}

.main-7th .fonte {
    display: flex;
    flex-direction: row;
    gap: 30px;
    align-items: center;
}

.main-7th img {
    height: 57px;
}

footer {
    position: relative;
    bottom: 0;
    width: 100%;
    height: 45px;
    background-color: var(--azulescuro);
    color: white;
    font-size: 16px;
    font-weight: 400;
    display: flex;
    justify-content: center;
    align-items: center;
}

@media screen and (max-width: 1160px) {
    .main-7th {
        justify-content: center;
        gap: 50px;
    }

}

@media screen and (max-width: 1024px) {

    .ham-container {
        display: block;
    }

    header {
        display: none;
    }

    .top-main .gradient-text {
        line-height: 10vw;
        margin-top: 50px;
    }

}

@media screen and (max-width: 768px) {



    .fonte {
        flex-wrap: wrap;
        justify-content: center;
    }



    .main-5th .funct h1 {
        font-size: clamp(24px, 6vw, 96px);
        /* Tamanho mínimo: 24px, tamanho máximo: 96px, intermediário: 6vw */
    }

    .main-2nd .card h1 {
        font-size: clamp(24px, 6vw, 96px);
        /* Tamanho mínimo: 24px, tamanho máximo: 96px, intermediário: 6vw */
        font-weight: 600;
    }

    .blue-button {
        width: 100%;
        height: auto;
        text-align: center;
    }

    .main-1st img {
        height: auto;
        width: 100%;
    }

    .main-1st .gradient-text {
        width: 100%;
        text-align: center;
        font-size: clamp(35px, 6vw, 96px);
    }

    .main-1st .column {
        width: 100%;
    }


    .main-2nd .card-blue img {
        display: none;
    }

    .main-2nd .card-blue {
        height: auto;
        width: 100%;
    }

    .main-2nd .card-blue .column {
        width: 100%;
        gap: 30px;
    }

    .main-2nd .card-blue .column .blue-button { 
        width: 100%;
        min-width: 0;
    }

    .main-2nd .card-blue .white-text {
        font-size: clamp(25px, 6vw, 96px)
    }

    .main-3rd img {
        height: auto;
        width: 100%;
    }

    .main-3rd .column {
        width: 100%;
    }

    .main-3rd .column .gradient-text {
        font-size: clamp(35px, 6vw, 96px);
    }

    .main-3rd .gradient-text {
        width: 100%;
        text-align: center;
        font-size: clamp(35px, 6vw, 96px);
    }

    .main-3rd .black-text {
        width: 100%;
    }

    .main-3rd .column h1 {
        font-size: clamp(45px, 6vw, 96px);
        line-height: 50px;
    }

    .main-4th .column {
        width: 100%;
    }

    .main-4th .black-text {
        width: 100%;
    }

    .main-4th .gradient-text {
        width: 100%;
    }

    .main-4th img {
        height: auto;
        width: 100%;
    }

    .main-5th .row {
        padding: 0;
        margin-top: 50px;
    }

    .main-5th .gradient-text {
        text-align: center;
    }

    .main-5th .funct {
        width: 100%;
    }

    .main-6th .plano {
        height: auto;
        width: 100%;
    }

    .main-6th .row {
        gap: 20px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .main-6th .gradient-text {
        text-align: center;
    }

    .main-7th {
        padding-left: 10%;
        padding-right: 10%;
    }

    .main-6th .plano .custo .preco {
        font-size: clamp(34px, 6vw, 96px);
    }

    .main-6th .plano .custo .duracao {
        font-size: clamp(5px, 6vw, 96px);
        line-height: 90px;
    }

    .main-6th .plano .nota {
        text-align: center;
    }

    .main-2nd .card {
        justify-content: space-around;
        align-items: center;
        text-align: center;
        height: auto;
        gap: 10px
    }

    footer {
        text-align: center;
    }


}