*{
    margin: 0;
    box-sizing: border-box;
    padding: 0;
    scroll-behavior: smooth;
    font-family: 'Poppins';
}

li{list-style-type:none;}
a{text-decoration: none;}
:root{
    --white: #fff;
    --gray100: #6F6A6A;
    --primary: #004169;
    --primary200: #012033;

    --darkPrimary: #1B1B1B;
    --darkSecondary: #232323;
}

.button_primary, .button_secondary{
    display: flex;
    align-items: center;
    gap: 12px;
    background: #4FCE5D;
    border-radius: 6px;
    font-style: normal;
    font-weight: 500;
    font-size: 18px;
    line-height: 22px;
    color: var(--white);
    width: 100%;
    max-width: 240px;
    padding: 8px 24px;
    text-transform: uppercase;
    justify-content: center;
}

.button_secondary{
    background: var(--primary200);
}


#progress-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    z-index: 9999;
}

#progress-bar {
    width: 0%;
    height: 2px;
    background: var(--primary);
    transition: width 0.1s linear;
}

.fade-in {
    opacity: 0;
    transition: opacity 1s ease-out, transform 1s ease-out;
}

.fade-bottom {
    transform: translateY(40px);
}

.fade-left {
    transform: translateX(-50px);
}

.fade-right {
    transform: translateX(50px);
}

.visible {
    opacity: 1;
    transform: translate(0);
}

.container{
    width: 100%;
    max-width: 1224px;
    margin: 0 auto;
    padding: 0 20px;
}

.container.content{
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* header */


header {
    position: fixed;
    width: 100%;
    top: -150px; /* começa fora da tela */
    left: 0;
    color: white;
    padding: 20px;
    text-align: center;
    transition: top 0.4s ease; /* animação */
    z-index: 999;

}

/* classe que faz o header aparecer */
header.show {
    top: 10px;

}

header .content{
    padding: 20px;
    background: var(--primary);
    border-radius: 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}


header .content .buttons{
    display: flex;
    align-items: center;
    gap: 32px;
}



/* section hero */

section.hero{
    background-image: url('../images/hero.png');
    padding: 90px 0 0;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

section.hero .text{
    width: 100%;
    max-width: 555px;
    padding: 0 0 48px;
}

section.hero .text .logo{
    width: 100%;
    max-width: 180px;
}

section.hero .text h1{
    font-style: normal;
    font-weight: 600;
    font-size: 42px;
    line-height: 52px;
    color: var(--white);
    margin: 16px 0 24px;
}


section.hero .text p{
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 28px;
    color: var(--white);
    margin: 0 0 48px;
}

section.hero .text .buttons{
    display: flex;
    align-items: center;
    gap: 32px;
    justify-content: start;
}


section.hero .form_content{
    background: var(--white);
    padding: 50px 42px;
    width: 100%;
    max-width: 456px;
    box-shadow: 0px 4px 4px rgba(0, 65, 105, 0.51);
    border-radius: 8px;
    position: relative;
    top: 40px;
}

section.hero .form_content h3{
    font-style: normal;
    font-weight: 600;
    font-size: 24px;
    line-height: 32px;
    text-align: center;
    color: var(--primary);
    margin: 0 0 24px;
}

section.hero .form_content form,
section.hero .form_content form p{
    display: flex;
    flex-direction: column;
    gap: 16px;
}

section.hero .form_content form p br{
	display:none;
}

section.hero .form_content form input,
section.hero .form_content form select{
    width: 100%;
    height: 42px;
    outline: none;
    border: 1px solid rgba(111, 106, 106, 0.42);
    border-radius: 4px;
    padding-left: 10px;
}
section.hero .form_content form input[type="submit"]{
    background: var(--primary);
    border-radius: 4px;
    font-style: normal;
    font-weight: 600;
    font-size: 16px;
    line-height: 24px;
    text-transform: uppercase;
    text-align: center;
    color: var(--white);
    margin: 8px 0 0;
    padding: 0;
    cursor: pointer;
}

/* beneftis */

section.benefits{
    padding: 128px 0;
}

section.benefits h2{
    margin: 8px auto 32px;
    font-style: normal;
    font-weight: 600;
    text-align: center;
    color: var(--primary200);
    width: 100%;
    max-width: 500px;
    font-style: normal;
    font-weight: 600;
    font-size: 36px;
    line-height: 44px;


}

section.benefits .content{
    display: flex;
    justify-content: space-between;
    gap:24px;
}

section.benefits .content .box_benefit{
    flex: 1;
    position: relative;
    background: var(--white);
    border-radius: 8px;
    padding: 0 0 32px;
    width: 100%;
    flex: 1;
    min-height: 280px;
box-shadow: 0px 4px 4px rgba(63, 63, 63, 0.05);

}

section.benefits .content .box_benefit .text{
    padding: 0 10px;
}

section.benefits .content .box_benefit .text h4{
    font-style: normal;
    font-weight: 600;
    font-size: 18px;
    line-height: 30px;
    color: var(--darkSecondary);
    margin: 12px 0 8px;
}

section.benefits .content .box_benefit .text p{
    font-style: normal;
    font-weight: 500;
    font-size: 14px;
    line-height: 18px;
    color: var(--gray100);
}

section.benefits .content .box_benefit .text a{
    display: flex;
    align-items: center;
    gap: 4px;
    color: var(--primary200);
    font-size: 14px;
    line-height: 14px;
    position: absolute;
    bottom: 12px;
    left: 14px;
    font-weight: 600;
}

section.benefits .content .box_benefit .text a svg path{
    fill: var(--primary);
}

@media (max-width:768px){
    section.benefits .content{
        flex-wrap: wrap;
        gap: 0;
    }
    section.benefits .content .box_benefit{
        max-width: 48%;
        flex: auto;
    }
}

@media (max-width:480px){
    section.benefits .content{
        gap: 16px;
    }
    section.benefits .content .box_benefit{
        max-width: 100%;
    }
}


/* secction steps */

section.steps{
    padding: 80px 0;
}

section.steps .container.content{
    justify-content: center;
    gap: 48px;
}

section.steps .banner{
    width: 100%;
    max-width: 600px;
}

section.steps .text{
    width: 100%;
    max-width: 422px;
}

section.steps .text h2{
    font-style: normal;
    font-weight: 600;
    font-size: 28px;
    line-height: 36px;
    color: var(--primary200);
    margin: 0 0 36px;
    width: 100%;
}

section.steps .text .button_primary{
    max-width: 100%;
}

section.steps .text .steps{
    display: flex;
    flex-direction: column;
    gap: 68px;
    margin: 0 0 42px;
}

section.steps .text .steps span{
    display: flex;
    align-items: center;
    gap: 16px;
}

section.steps .text .steps span .number{
    width: 48px;
    height: 48px;
    background: var(--primary200);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-style: normal;
    font-weight: 600;
    font-size: 32px;
    line-height: 32px;
    color: var(--white);
    position: relative;
    z-index: 2;
}

section.steps .text .steps span .number::after{
    content: '';
    width: 2px;
    height: 88px;
    position: absolute;
    z-index: 1;
    top: 37px;
    left: calc(50% - 1px);
    background: var(--primary200);

}

section.steps .text .steps span:last-child .number::after{
    display: none;
}

section.steps .text .steps span p{
    font-style: normal;
    font-weight: 500;
    font-size: 18px;
    line-height: 27px;
    color: #6F6A6A;
    width: 100%;
}¨

section.steps .text .steps span p strong{
    color: var(--primary);
}
/* section advantages */

section.advantages{
background: linear-gradient(180deg, #012033 0%, rgba(0, 65, 105, 0.98) 100%);
padding: 90px 0 0;
}

section.advantages .list {
    width: 100%;
    max-width: 340px;
    display: flex;
    align-items: center;
    flex-direction: column;
}

section.advantages .list h2{
    font-style: normal;
    font-weight: 600;
    font-size: 36px;
    line-height: 44px;
    text-align: center;
    color: var(--white);
    margin: 0 0 36px;
}

section.advantages .list ul{
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin: 0 0 42px;
    align-items: center;
}

section.advantages .list ul li{
    display: flex;
    align-items: center;
    gap: 4px;
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 20px;
    color: var(--white);
}

section.advantages .list ul li svg{
    width: 100%;
    max-width: 40px;
}

section.advantages .list .button_primary{
    max-width: 100%;
    font-size: 14px;
    padding: 8px;
}

section.advantages .banner{
    width: 100%;
    max-width: 360px;
}

section.advantages .cards{
    width: 100%;
    max-width: 360px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

section.advantages .cards .logo{
    margin: 0 0 42px;
}

section.advantages .cards .card_single{
    background: rgba(255, 255, 255, 0.92);
    border-radius: 6px;
    padding: 9px 18px;
    margin: 0 0 32px;
    display: flex;
    justify-content: center;
    gap: 12px;
    width: 100%;
    max-width: 234px;
    position: relative;
    align-items: center;
}

section.advantages .cards .card_single:first-child{
    left: -40px;
}

section.advantages .cards .card_single:nth-child(3){
    left: -40px;
}

section.advantages .cards .card_single:nth-child(4){
    right: -40px;
}

section.advantages .cards .card_single:last-child{
    margin: 0;
    left: -40px;
}

/* section about */

section.about{
    padding: 80px 0;
}

section.about .text{
   width: 100%;
   max-width: 550px; 
}

section.about .text h2{
    font-style: normal;
    font-weight: 600;
    font-size: 24px;
    line-height: 32px;
    color: var(--primary200);
    margin: 0 0 24px;
}

section.about .text p{
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: #4F4F4F;    
     margin: 0 0 16px;
}
section.about .text p:last-child{
    margin: 0;
}

section.about .banner{
    width: 100%;
    max-width: 460px;
}

/* section number */


section.numbers .content{
    max-width: 854px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

section.numbers .content .number{
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: center;
}

section.numbers .content .number h2{
    font-style: normal;
    font-weight: 500;
    font-size: 62px;
    line-height: 62px;
    display: flex;
}

section.numbers .content .number h2 .number{
    color: var(--primary);
}

section.numbers .content .number h2 span{
    color: var(--primary);
}

section.numbers .content .number p{
    font-style: normal;
    font-weight: 400;
    font-size: 24px;
    line-height: 36px;
    color: var(--gray300);
}

@media (max-width:768px){
    section.numbers .content{
        flex-direction: column;
        gap: 12px;
    }

    section.numbers .content svg{
        transform: rotate(270deg);
        height: 50px;
    }
}

@media (max-width:480px){
    section.numbers .content .number h2{
        font-size: 48px;
        line-height: 48px;
    }
}

/* section cta */


section.cta{
    padding: 128px 0px;
}

section.cta .content{
    background: linear-gradient(90deg, #181C2B 0%, #004169 100%);
    border-radius: 12px;
    padding: 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-radius: 12px;
}

section.cta .content .text{
    width: 100%;
    max-width: 488px;
    display: flex;
    flex-direction: column;
}

section.cta .content .text h2{
    font-style: normal;
    font-weight: 500;
    font-size: 32px;
    line-height: 48px;
    color: var(--white);
    max-width: 420px;
}

section.cta .content .text h2 strong{
     color: var(--white);
}

section.cta .content .text p{
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 24px;
    color: var(--white);
    margin: 16px 0 24px;
}

section.cta .content .text h6{
    font-style: normal;
    font-weight: 500;
    font-size: 20px;
    line-height: 24px;
    color: var(--white);
    max-width: 420px;
    margin: 0 0 42px;
}

section.cta .content .text a{
    border-radius: 4px;
    color: var(--white);
    font-style: normal;
    font-weight: 600;
    font-size: 18px;
    line-height: 27px;
    text-transform: uppercase;
    width: fit-content;
    padding: 8px 24px;
    background: var(--primary);
}

section.cta .content .banner{
    width: 100%;
    max-width: 520px;
    border-radius: 8px;
    height: 314px;
}

section.cta .content .banner img{
    border-radius: 8px;
    height: 100%;
    object-fit: cover;
}

@media (max-width:768px){
    section.cta{
        padding: 64px 20px;
    }
    section.cta .content{
        flex-direction: column;
        gap: 24px;
    }

    section.cta .content .text a{
        padding: 12px 24px;
    }
}

@media (max-width:480px){
    section.cta .content {
        padding: 20px;
    }
    section.cta .content .text h2{
        font-size: 24px;
        line-height: 32px;
    }
    section.cta .content .text p{
        font-size: 14px;
        line-height: 24px;
    }
    section.cta .content .text a{
        font-size: 12px;
        line-height: 12px;
    }
}



/* faq */

section.faq{
    padding: 0 0 80px;
}

section.faq h6{
    font-style: normal;
    font-weight: 600;
    font-size: 14px;
    line-height: 21px;
    text-align: center;
    color: var(--primary);
}

section.faq h2{
    margin: 8px auto 32px;
    font-style: normal;
    font-weight: 600;
    font-size: 36px;
    line-height: 42px;
    text-align: center;
    color: var(--primary200);
    width: 100%;
    max-width: 610px;
}

section.faq .faq_content{
    display: flex;
    flex-direction: column;
    gap: 24px;
}

section.faq .faq_content .faq_single{
    background-color: var(--primary);
    padding: 16px 24px;
    border-radius: 12px;
    cursor: pointer;
}

section.faq .faq_content .faq_single .question{
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-style: normal;
    font-weight: 500;
    font-size: 20px;
    line-height: 30px;
    color: var(--white);
}

section.faq .faq_content .faq_single .question svg{
    transition: all 0.3s;
    width: 24px;
    height: 24px;

}

section.faq .faq_content .faq_single .question svg path{
        fill: var(--white);
}

section.faq .faq_content .faq_single.active .question svg{
    transform: rotate(180deg);
}

section.faq .faq_content .faq_single p{
    display: none;
    align-items: center;
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: var(--white);
    margin: 16px 0 0;
    padding: 0 0 0 8px;
}

section.faq .faq_content .faq_single.active p{
    display: block;
}



footer{
    background-color: var(--darkPrimary);
    padding: 20px 0;
}

footer .content{
    display: flex;
    align-items: center;
    justify-content: space-between;
}

footer .content p{
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 14px;
    color: var(--white);
}

footer .content p strong a{
    color: var(--white);
    font-weight: bold;
}

@media (max-width:768px){
    footer .content{
        flex-direction: column;
        text-align: center;
        gap: 24px;
    }
    footer .content p{
        max-width: 240px;
        line-height: 24px;
    }
}

.hidden-fields-container{
	display:none;
}