/* ---- Geral ---- */
:root {
    --dark-blue: #000359; 
    --yellow: #D4AF36;
    --medium-gray: #EEEEEE;
    --black: #000000;
    --white: #FFFFFF;
}
html {
    scroll-behavior: smooth;
}
body {
    margin: 0;
    padding: 0;
    font-family: "Lato", serif;
    font-size: 14px;
    color: var(--black);
}
p{
    margin: 0; padding: 0;
}

b, strong {
    font-weight: bold;
}
    h1, h2, h3, h4, h5, h6{
    margin: 0;
    padding: 0;
}
.btn{
    background: var(--dark-blue);
    padding: 10px 15px;
    color: #fff;
}
.btn::before {
    content: '';
    background: url('../img/btn-icon.svg') no-repeat;
    background-position: 0px 2px;
    display: inline-block;
    width: 20px;
    height: 20px;
    margin-right: 5px;
}
.btn:hover{
    background: var(--yellow);
    color: var(--white);
}
.btn:focus{
    background: var(--dark-blue) !important;
    color: var(--white) !important;
}

.btni{
    background: var(--white);
    padding: 10px 15px;
    color: var(--dark-blue);
    width: fit-content;
}
.btni::before {
    content: '';
    background: url('../img/btni-icon.svg') no-repeat;
    background-position: 0px 2px;
    display: inline-block;
    width: 20px;
    height: 20px;
    margin-right: 5px;
}
.btni:hover{
    background: var(--yellow);
    color: var(--dark-blue);
}
.btni:focus{
    background: var(--dark-blue) !important;
    color: var(--white) !important;
}
/*Footer */
footer{
    background: #ccc;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    padding: 25px;
    color: var(--dark-blue);
}
footer img{
    max-width: 100px;
}

.forms{
    background-color: var(--white);
    padding: 20px;
    border-radius: 12px;
    border: 1px solid #CCCCCC;
}
.forms h3{
    font-weight: 400;
    color: var(--dark-blue);
}
.forms .btn{
    background: var(--dark-blue);
    padding: 10px 15px;
    color: #fff;
    margin-top: 20px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}
.forms .btn::before {
    content: '';
    background: url('../img/btn-icon.svg') no-repeat;
    width: 20px;
    height: 20px;
    margin-right: 5px;
}
.forms .btn:hover{
    background: var(--yellow);
    color: var(--white);
}
.forms input[type="text"],
.forms input[type="email"]{
    width: 100%;
    border: 1px solid #ccc;
    background: var(--medium-gray);
    padding: 10px;
    border-radius: 6px;
    color: #555555;
}
.forms input::placeholder{
    color: #555555;
}
.forms select{
    width: 100%;
    border: 1px solid #ccc;
    background: var(--medium-gray);
    padding: 10px;
    border-radius: 6px;
    color: #555555;
}
.forms .wpcf7 form .wpcf7-response-output{
    margin: 0;
}
.forms .wpcf7-spinner{
    display: none;
}
.forms input:focus, .forms select:focus{
    box-shadow: none!important;
    outline: none!important;   
    border: 1px solid #9F9F9F;
}
.wpcf7-response-output{
    margin-top: 10px !important;
    border-radius: 6px;
}

/* Top Section */
.top-bar{
    background: var(--dark-blue);
    display: flex;
    justify-content: center;
    padding: 10px;
}
.top-bar img{
    max-width: 220px;
}
.hero{
    background: var(--medium-gray);
    border-bottom-left-radius: 100px;
    padding: 80px 0;
}
.hero .content-hero{
    top: 50%;
    position: relative;
    transform: translateY(-50%);
}
.hero h1{
    font-size: 40px;
    font-weight: 300;
    color: var(--dark-blue);
}
.hero h3{
    font-size: 26px;
    font-weight: 300;
    color: var(--black);
}

.problem{
    padding-top: 4%;
}
.problem h2{
    font-weight: 600;
    padding-bottom: 5.5%;
}
.problem .text{
    font-size: 38px;
    font-weight: 300;
}
.problem .text p{
    margin-bottom: 50px;
}
.problem .text span{
    font-weight: bold;
    color: var(--dark-blue);
    font-size: 64px;
}
.how-entrance-works h2{
    padding-bottom: 7%;
}
.how-entrance-works .box{
    background: var(--dark-blue);
    border-radius: 22px;
    padding: 100px 45px;
    display: flex;
    flex-direction: column;
    min-height: 100%;
}
.how-entrance-works .box h2{
    color: var(--white);
}
.how-entrance-works .box h3{
    color: var(--yellow);
}
.how-entrance-works .box .item{
    color: var(--white);
    display: flex;
    padding: 20px 0;
    align-items: center;
}
.how-entrance-works .box .item::before{
    content: '';
    width: 10px;
    min-height: 100px;
    max-height: 100%;
    border-radius: 3px;
    background: var(--yellow);
    position: relative;
    margin-right: 20px;
    display: block;
}

.future-of-hiring{
    background: var(--medium-gray);
    border-top-left-radius: 100px;
    border-bottom-right-radius: 100px;
    padding: 80px 0;
    margin-top: 5%;
}
.future-of-hiring .itens{
    margin-top: 40px;
}
.future-of-hiring .itens .flex-itens{
    display: flex;
    margin-bottom: 30px;
    align-items: center;
}
.future-of-hiring .itens h4{
    color: var(--dark-blue);
    font-weight: bold;
}
.cta{
    margin: 5% 0;
}
.destacar-select {
    border: 1px solid #002d44 !important;
    background-color: #e8faff;
    transition: all 0.3s ease;
  }

@media (max-width:1440px){
    .problem .text p span{
        font-size: 50px;
    }
    .problem .text p{
        font-size: 30px;
        margin-bottom: 20px;
    }
}

@media (max-width:1366px){
    .content-hero h1{
        font-size: 35px;
    }
    .future-of-hiring h2{
        font-size: 30px;
    }
    .future-of-hiring .itens .flex-itens{
        margin-bottom: 6px;
    }
    .future-of-hiring .flex-itens img{
        scale: 0.8;
    }
}

@media (max-width: 768px){
    .hero{
        border-bottom-left-radius: 50px;
    }
    .content-hero h1{
        margin-top: 30px;
    }
    .problem {
        padding-top: 8%;
    }
    .problem h2 {
        padding-bottom: 8%;
    }
    .forms{
        margin-top: 5%;
    }
    .how-entrance-works .box{
        padding: 40px;
        min-height: auto;
        margin-bottom: 30px;
    }
    .future-of-hiring{
        border-top-left-radius: 50px;
        border-bottom-right-radius: 50px; 
    }
    .future-of-hiring img{
        margin-top: 50px;;
    }    
}
@media (max-width: 576px){
    .forms input{
        margin-bottom: 15px;
    }
    .cta{
        padding: 12px;
    }
    .btn{
        width: 100%;
    }
    .btn:first-child{
        margin-bottom: 10px;
    }
    .future-of-hiring .itens{
        margin-bottom: 50px;
    }
    .future-of-hiring img {
        margin-top: 20px;
    }
    .future-of-hiring .flex-itens img{
        scale: 1;
    }
}
