/*@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;1,100;1,300;1,400;1,500&display=swap');*/
@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');
@import url('https://fonts.googleapis.com/css2?family=Caveat:wght@400..700&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{
    /*Página Principal*/
    --principal: #0038A7;
    /*--secundario: #E67817;*/
    --secundario : #ee7103;

    --verde: #01b318;
    --vermelho: #d60000;
}

@keyframes fadeIn {
    0% { opacity: 0; }
    100% { opacity: 1; }
  }
  
  


/*=====Cores Js======*/

.color-green{
    color: var(--verde);
    font-size: 1.15rem;
    font-weight: 600;
}

.color-red{
    color: var(--vermelho);
    font-size: 1.15rem;
    font-weight: 600;
}

*{
    /*font-family: 'Roboto', sans-serif;*/
    font-family: 'Poppins', sans-serif;
    text-decoration: none;
    outline: none;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    list-style: none;
}

*::selection{
    background: var(--principal);
    color: #fff;
}

html{
    font-size: 62.5%;
    overflow-x: hidden;
    margin: 0;
    height: 100%;
}

/*Inicio Titulos*/

.heading{
    font-size: 4rem;
    color: var(--principal);
    text-align: center;
    padding: 0 1rem;
    padding-top: 6rem;
    letter-spacing: .2rem;
    font-weight: 500;
}

.title{
    padding: 0 1rem;
    font-size: 2rem;
    text-align: center;
    font-weight: 400;
    color: var(--secundario);
    margin-top: 15px;
}

body{
    height: 100%;
    margin: 0;
    overflow-x: clip;
}

/*Fim Titulos*/

/*Inicio Cabeçalho*/

header{
    width: 96%;
    background: #fff;
    position: fixed;
    top: 2rem;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 2rem;
    z-index: 1000;
    transition: .2s;
    opacity: 0.85;
}

.header-active{
    top: 0;
    width: 100%;
    border-radius: 0;
    box-shadow: 0 .1rem .3rem rgba(0, 0, 0, .3);
}

header .navbar ul{
    display: flex;
    align-items: center;
    justify-content: space-between;  
    list-style: none; 
}

header .navbar ul li{
    margin:0 1rem;
}

header .navbar ul li a{
    font-size: 2rem;
    color: var(--principal);
    transition: .2s;
}

header .navbar ul li .active,
header .navbar ul li a:hover{
    color: var(--secundario);
}


header .logo{
    font-size: 2.5rem;
    color: var(--secundario);
    text-transform: uppercase;
}

header .logo img{
    max-height: 8rem;
    width: auto;
    vertical-align: middle;
}

header .fa-bars{
    font-size: 3rem;
    color: var(--principal);
    cursor: pointer;
    display: none;
    transition: .2s;
}

header .fa-times{
    transform: rotate(180deg);
    color: var(--secundario);
}
/*Fim Cabeçalho*/

/* Inicio Secção "Home"*/
.home {
    min-height: 100vh;
    position: relative;
    overflow: hidden;
    z-index: 0;
}

.home video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    object-fit: cover;
    filter: grayscale(75%);
}

.home .content {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-flow: column;
    text-align: center;
    position: relative;
    z-index: 1;
    color: #fff;
    padding: 0 1rem;

}

.home .content h1 {
    font-size: 5rem;
    text-shadow: 0 .3rem .5rem rgba(0, 0, 0, .3);
    margin-top: 5rem;
    z-index: 2;
    animation: fadeIn 4s;
    animation-delay: .3s;
}

.home .content img{
    margin-top: 250px;
    z-index: 2;
    height: 15%;
    width: 15%;
    animation: fadeIn 4s;
}

/* Fim Secção "Home"*/

/*Início "Section" - About*/


.about .section-container{
    max-width: 1200px;
    margin: auto;
    padding: 5rem 1rem;
}


.about .section-header{
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--secundario);
    padding-bottom: 5px;
    padding-top: 10px;
}

.about .section-subheader{
    position: relative;
    isolation: isolate;
    margin-bottom: 1rem;
    padding-left: 1rem;
    padding-left: 20px;
    font-size: 18px;
    font-weight: 600;
    color: var(--secundario);
}

/*.about .section-subheader::after{
    position: absolute;
    content: "";
    left: 0px;
    top: 50%;
    transform: translateY(-50%);
    height: 45px;
    aspect-ratio: 1;
    background-color: var(--principal);
    z-index: -1;
    opacity: 0;
}*/

.about .about-container{
    padding-block: 0;
}

.about .about-grid{
    padding: 2rem;
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 4rem;
    align-items: center;
    background-color: #f9f9f9;
    transform: translateY(-5rem);
    border-radius: 10px;
}

.about .about-content .section-header{
    margin-bottom: 1rem;
}

.about .about-content .para{
    font-size: 16px;
    color: #222;
    padding-bottom: 15px;
    font-weight: 600;
}

.about .about-list{
    display: grid;
    gap: 2rem;
}

.about .about-item{
    display: flex;
    align-items: center;
    gap: 2rem;
}

.about .about-item span{
    padding: 13px 20px;
    font-size: 2.5rem;
    color: var(--secundario);
    background-color: var(--principal);
    border-radius: 5px ;
}

.about .about-item h4{
    font-size: 1.5rem;
    font-weight: 600;
}

/*Fim "Section" - About*/

/* Início Secção "Portofolio"*/

.portofolio{
    background: #f9f9f9;
}

.portofolio .card-container{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    padding: 2rem 0;
}

.portofolio .card-container .projetos-card{
    padding: 2rem;
    margin: 2rem;
    background: #fff;
    text-align: center;
    width: 35rem;
    box-shadow: 0 .3rem .5rem rgba(0, 0, 0, .3);
}

.portofolio .card-container .projetos-card img{
    height: 30rem;
    width: 100%;
    object-fit: cover;
    filter: grayscale();
    transition: .2s;
}

.portofolio .card-container .projetos-card:hover img{
    filter: grayscale(0);
}


.portofolio .card-container .projetos-card button{
    height: 3.5rem;
    width: 28rem;
    background: var(--secundario);
    color: #fff;
    border: none;
    border-radius: 5rem;
    box-shadow: 0 .3rem 1rem rgba(0, 0, 0, .3);
    cursor: pointer;
    font-size: 2rem;
    transition: .2s;
    margin-top: 20px;
}


.portofolio .card-container .projetos-card button:hover{
    letter-spacing: .2rem;
    opacity: .8;
}

/* Fim Secção "Portofolio"*/

/* Início Secção "Serviços"*/

.servicos .wrapper{
    width: 100%;
    height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.servicos .wrapper .container-servicos{
    height: 400px;
    display: flex;
    flex-wrap: nowrap;
    justify-content: start;
}

.servicos .wrapper .container-servicos .card{
    width: 80px;
    max-width: 100%;
    background-size: cover;
    cursor: pointer;
    overflow: hidden;
    border-radius: 2rem;
    margin: 0 15px;
    display: flex;
    align-items: flex-end;
    transition: .6s cubic-bezier(.26, -0.03, 0, .99);
    transition: max-height 2s ease, max-width 2s ease; 
    box-shadow: 0px 10px 30px -5px rgba(0, 56, 167, .8);
}

.servicos .wrapper .container-servicos .card > .row{
    color: var(--principal);
    display: flex;
    flex-wrap: nowrap;
}

.servicos .wrapper .container-servicos .card > .row > .icon{
    background:var(--principal);
    /*color: var(--secundario);*/
    color: #fff;
    border-radius: 50%;
    width: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 15px;
}

.servicos .wrapper .container-servicos .card > .row > .description{
    display: flex;
    justify-content: center;
    flex-direction: column;
    overflow: hidden;
    height: 80px;
    width: 520px;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.3s ease, transform 0.3s ease;
    max-height: 1000px;
}

.servicos .wrapper .container-servicos .row .icon{
    font-size: 20px;
}

.servicos .wrapper .container-servicos .row .description{
    background-color: rgba(0, 56, 167, .8);
    border-radius: 0 0 2rem 2rem; 
    padding: 15px; 
    width: 100%;
    box-sizing: border-box;
    opacity: 0; 
    transform: translateY(30px); 
    transition: opacity 0.3s ease, transform 0.3s ease;
    min-height: 80px;
}

.servicos .wrapper .container-servicos .row  .description p{
    color: #fff;
    font-weight: 500;
    padding-top: 5px;
    font-size: 12px;
    margin: 0;
}

.servicos .wrapper .container-servicos .row  .description h4{
    text-transform: uppercase;
    font-size: 14px;
    color: #fff;

}

.servicos .wrapper .container-servicos .row  .description p::after,
.servicos .wrapper .container-servicos .row  .description h4::after {
    content: ""; 
    display: block; 
    position: absolute;
    bottom: 0; 
    left: 0; 
    width: 100%; 
    height: 2px; 
    background-color: var(--secundario); 
}

.servicos .wrapper .container-servicos input {
   display: none;
}

.servicos .wrapper .container-servicos input:checked + label{
    width: 100%;
    max-width: 100%;
}

.servicos .wrapper .container-servicos input:checked + label .description{
    opacity: 1 !important;
    transform: translateY(0) !important;
}

.servicos .wrapper .container-servicos input:checked + label {
    width: 600px;
}

.servicos .wrapper .container-servicos input:checked + label .text-container {
    opacity: 1 !important;
    transform: translateY(0) !important;
}

.servicos .wrapper .container-servicos .card[for="card1"]{
    background-image: url('../images/efc_servicos.jpg');
}

.servicos .wrapper .container-servicos .card[for="card2"]{
    background-image: url('../images/efc_servicos1.jpg');
}

.servicos .wrapper .container-servicos .card[for="card3"]{
    background-image: url('../images/efc_servicos2.jpg');
}

.servicos .wrapper .container-servicos .card[for="card4"]{
    background-image: url('../images/efc_servicos3.jpg');
}

.servicos .wrapper .container-servicos .card[for="card5"]{
    /*background-image: url('../images/efc_servico.jpg');*/
    background-image: url('../images/efc_servicos4.jpg');

}

.servicos .wrapper .container-servicos .card[for="card6"]{
    background-image: url('../images/efc_servicos5.jpg');
}

.servicos .wrapper .container-servicos .card[for="card7"]{
    background-image: url('../images/efc_servicos6.jpg');
}
/* Fim Secção "Serviços"*/



/*Início Secção "Recrutamento"*/

.recrutamento{
    background: url('../images/efc_recrutamento.jpg') no-repeat center;
    background-size: cover; 
    margin: 0 auto;
}

.recrutamento .form-wrapper{
    margin: 0 auto;
}

.recrutamento .form-body{
    height: 70vh;
    display:grid;
    place-items: center;
}

.recrutamento .form-body .form{
    width: 100%;
    max-width: 415px;
}

.recrutamento .form-body .form .body{
    box-shadow: 0px 5px 5px 2px rgba(0, 0, 0, 0.2);
    border-radius: 20px;
    height: 450px;
    overflow: hidden;
    background: #fff;
}

.recrutamento .form-body .form .body .pagination{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    padding: 15px 20px;
}

.recrutamento .form-body .form .body .pagination .number{
    width: 28px;
    height: 28px;
    text-align: center;
    line-height: 28px;
    border-radius: 50%;
    background: var(--secundario);
    color: #fff;
    font-size: 15px;
}

.recrutamento .form-body .form .body .pagination .bar{
    width: 25px;
    height: 4px;
    background: var(--secundario);
    border-radius: 5px;
}

.recrutamento .form-body .form .body .pagination .active ~ div {
    background: #ddd;
    color: #111;
}

.recrutamento .form-body .form .steps{
    width: 600%;
    display: flex;
    transition: all 300ms ease-in-out;
}

.recrutamento .form-body .form .steps .step{
    width: 98vw;
    max-width: 400px;
    padding: 5px 15px 15px;
    overflow: hidden;
}

.recrutamento .form-body.form .steps .step h4{
    margin-bottom: 5px;
}

.recrutamento .form-body .form .steps .step p{
    color: #555;
    max-width: 90%;
    font-size: 15px;
}

.recrutamento .form-body .form .steps .step .grid{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-top: 20px;
}


.recrutamento .form-body .form .steps .step .grid .col label{
    display: block;
    margin-bottom: 5px;
    font-weight: 500;
    font-size: 15px;
}

.recrutamento .form-body .form .steps .step .col textarea{
    width: 350px;
    height: 175px;
}

.recrutamento .form-body .form .steps .step .grid .col input,
.recrutamento .form-body .form .steps .step .grid .col select,
.recrutamento .form-body .form .steps .step .grid .col textarea{
    width: 100%;
    padding: 8px;
    border: 1px solid #bbb;
    font-size: 15px;
    border-radius: 8px;
}


.recrutamento .form-body .form .steps .step .grid .col .checkbox input{
    display: none;
}

.recrutamento .form-body .form .steps .step .grid .col .checkbox label{
    width: 100%;
    padding: 15px;
    border: 1px solid #bbb;
    border-radius: 5px;
    margin: 0;
    cursor: pointer;
}


.recrutamento .form-body .form .steps .step .grid .col .checkbox input:checked + label{
    background: var(--secundario);
    color: #fff;
}

.recrutamento .form-body .form .steps .step .col .consentimento{
    font-size: 10px;
}

.recrutamento .form-body .form .steps .step .confirmation,
.recrutamento .form-body .form .steps .step .inicio{
    display: grid;
    text-align: center;
    place-items: center;
    gap: 10px;
}

.recrutamento .form-body .form .steps .step .confirmation p{
    font-size: 13px;
}

.recrutamento .form-body .form .steps .step .inicio h2{
    padding-top: 50px;
    font-size: 18px;
}

.recrutamento .form-body .form .steps .step .inicio .image img{
    margin-top: 30px;
    width: 50%;
    height: 30%;
}

.recrutamento .form-body .form .steps .step .confirmation .subBtn{
    background: var(--secundario);
    color: #fff;
    padding: 10px 20px;
    border: none;
    outline: none;
    font-size: 15px;
    border-radius: 20px;
    cursor: pointer;
}

.recrutamento .form-body .form .footer{
    padding: 10px 0px;
    display: flex;
    justify-content: space-between;
    background: transparent;
}

.recrutamento .form-body .form .footer button{
    padding: 5px 10px;
    font-size: 15px;
    border: 1px solid #bbb;
    background: #fff;
    border-radius: 5px;
    cursor: pointer;
    outline: none;
}

/*Fim Secção "Recrutamento"*/

/*Início Secção "Certificações"*/

.certificacoes{
    background: #f9f9f9;
    height: 50vh;
}

.container-certificados{
    margin-top: 5;
    margin: 10px;
}

.certificados-slide{
    background-color: white;
    padding: 4;
}

.certificado{
    display: flex;
    align-items: center;
    justify-content:    center;
}

.certificado img{
    margin-top: 20px;
    margin-bottom: 10px;
}


.numero-certificado{
    font-weight: bold;
}

.entidade-cert{
    font-weight: 600;
}


/*.certificacoes .certificados {
    position: relative;
    overflow: hidden;
    padding: 60px 0;
    display: flex;
    justify-content: center;
    cursor: pointer;
}

.certificacoes .certificados .certificado{
    position: relative;
    margin: 0 20px;
    transition: 0.2s;
}

.certificacoes .certificados .certificado img {
    height: 100px;
    width: auto;
    margin:0 40px;
    transition: .2s;
}

.certificacoes .certificados .certificado .content{
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    position: absolute;
    background: rgba(255, 136, 0, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    flex-direction: column;
    opacity: 0;
    transition: 0.6s;
}

.certificacoes .certificados .certificado .content h1{
    color: #fff;
    font-weight: 700;
    margin-bottom: 20px;
}

.certificacoes .certificados .certificado .content p{
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 15px;
}

.certificacoes .certificados .certificado .content:hover{
    opacity: 1;
}

.certificacoes .certificado:hover .content .numero-alvara {
    display: block;
}*/

/*Fim Secção "Certificações"*/

/*Início Secção "Rodape"*/

.rodape{
    line-height: 1.5;
}

.footer{
    background: url('../images/efc_footer.jpg') no-repeat center center fixed;
    background-size: cover; 
    padding: 75px 0;
    margin-bottom: 10px;
    width: 100%;
    background-attachment: scroll;
}

.container{
    max-width: 1750px;
    margin: auto;
}

.container .row{
    display: flex;
    /*flex-wrap: wrap;   */
}

.container .row .footer-col{
    width: 60%;
    padding: 0 65px;
    box-sizing: border-box;
    flex-direction: column;
    display: flex;
}

.container .row .footer-col h4{
    font-size: 22px;
    color: #fff;
    text-transform: capitalize;
    margin-bottom: 30px;
    font-weight: 500;
    position: relative;
    text-align: left;
}

.container .row .footer-col h4::before{
    content: '';
    position: absolute;
    left: 0;
    bottom: -10px;
    background-color: var(--principal);
    height: 2px;
    box-sizing: border-box;
    width: 45px;
}

.container .row .footer-col ul{
    list-style:  none;
    text-align: left;
}

.container .row .footer-col ul li:not(:last-child){
    margin-bottom: 10px;
}

.container .row .footer-col ul li {
    font-size: 20px;
    color: #fff;
    text-decoration: none;
    font-weight: 300;
    display: block;
    transition: all 0.3s ease;
    font-weight: bolder;
}


.container .row .footer-col ul li a{
    font-size: 20px;
    color: #fff;
    text-decoration: none;
    font-weight: 300;
    display: block;
    transition: all 0.3s ease;
    font-weight: 500;
}

.container .row .footer-col ul li a:hover{
    padding-left: 10px;
}

.container .row .footer-col ul li i{
    font-size: 16px;
}

.container .row .footer-col ul li p{
    font-size: 10px;
    font-weight: 300;
}

.container .row .footer-col ul li span{
    font-size: 16px;
    font-weight: 400;
}

.container .row .footer-col .footer-form{
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.container .row .footer-col .footer-form .footer-input{
    padding: 20px 56px 20px 24px;
    border: 2px solid var(--principal);
    border: none;
    background: rgba(255, 255, 255, 0.8);
    color: #222;
    outline: none;
    width: 25rem;
}

.container .row .footer-col .footer-form .footer-text{
    padding: 20px 56px 20px 24px;
    border: 2px solid var(--principal);
    border: none;
    background: rgba(255, 255, 255, 0.8);
    color: #222;
    outline: none;
    width: 25rem;
}

.container .row .footer-col .footer-form button{
    height: 3.5rem;
    width: 25rem;
    background: var(--secundario);
    color: #fff;
    border: none;
    border-radius: 5rem;
    box-shadow: 0 .3rem 1rem rgba(0, 0, 0, .3);
    cursor: pointer;
    font-size: 1.75rem;
    transition: .2s;
}

.container .row .footer-col .footer-form button:hover{
    letter-spacing: .2rem;
    opacity: .8;
}

.rodape .credit{
    text-align: center;
    font-size: 2rem;
    border-top: .1rem solid #999;
    margin: 0 auto;
    margin-bottom: 2rem;
    color: #666;
    width: 90%;
    padding: 1rem 0;
}

.rodape .credit a{
    color: var(--principal);
    cursor: pointer;
}


.rodape .credit span{
    color: var(--principal);
}

.rodape .footer-col i{
    color: #fff;
    font-size: 4rem;
    margin: 0 .1rem;
    transition: .2s linear;
}

.rodape .footer-col i:hover{
    color: #fff;
    font-size: 4.5rem;
    margin: 0 .1rem;
    color: #0038A7;
}

.rodape .footer-col a img{
    height: 5rem;
    filter: grayscale(100%);
    transition: .3s;
}

.rodape .footer-col a img:hover{
    height: 5.2rem;
    filter: grayscale(0%);
}


/*=========Inicio PopUp Poltíca de Privacidade===========*/

/*Início Poup*/

.overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    justify-content: center;
    align-items: center;
}

.popup {
    background: #fff;
    padding: 20px;
    border-radius: 5px;
    width: 80%;
    max-width: 600px;
    text-align: left;
}

.close {
    position: absolute;
    top: 10px;
    right: 10px;
    cursor: pointer;
}
/* Fim Poup*/
/*Início Politica Privadidade*/

.rodape .overlay .popup .flex-align-justify{
    display: flex;
    align-items: center;
    justify-content: center;
}

.rodape .overlay .popup .wrapper {
    display: flex;
    align-items: justify;
}

.rodape .overlay .popup .wrapper .tc-wrap{
    width: 700px;
    max-width: 100%;
    height: 450px;
    background: #fff;
    display: flex;
    border-radius: 3px;
    overflow: hidden;
}

.rodape .overlay .popup .wrapper .tc-wrap .tabs-list{
    width: 200px;
    background: var(--secundario);
    height: 100%;
}

.rodape .overlay .popup .wrapper .tc-wrap .tabs-list ul{
    padding: 70px 20px;
    text-align: right;
}

.rodape .overlay .popup .wrapper .tc-wrap .tabs-list ul li{
    padding: 10px 0;
    position: relative;
    cursor: pointer;
    margin-bottom: 3px;
    font-weight: bold;
    transition: all 0.5s ease;
    font-size: 14px;
}

.rodape .overlay .popup .wrapper .tc-wrap .tabs-list ul li:before{
    content: '';
    position: absolute;
    top: 0;
    right: -20px;
    width: 2px;
    height: 100%;
    background: var(--principal);
    opacity: 0;
    transition: all 0.5s ease;
}

.rodape .overlay .popup .wrapper .tc-wrap .tabs-list ul li.active,
.rodape .overlay .popup .wrapper .tc-wrap .tabs-list ul li:hover{
    color: var(--principal);
}

.rodape .overlay .popup .wrapper .tc-wrap .tabs-list ul li.active::before{
    opacity: 1;
}


.rodape .overlay .popup .wrapper .tc-wrap .tabs-content{
    width: calc(100% - 200px);
    padding: 0 10px 0 20px;
    height: 100%;
    font-size: 14px;
}

.rodape .overlay .popup .wrapper .tc-wrap .tabs-content .tabs-head,
.rodape .overlay .popup .wrapper .tc-wrap .tabs-content .tabs-foot{
    color: var(--principal);
    padding: 25px 0;
    height: 70px;
}

.rodape .overlay .popup .wrapper .tc-wrap .tabs-content .tabs-head{
    text-align: center;
}

.rodape .overlay .popup .wrapper .tc-wrap .tabs-content .tabs-body{
    height: calc(100% - 140px);
    overflow: auto;
}

.rodape .overlay .popup .wrapper .tc-wrap .tabs-content .tabs-body .tab-item{
    display: block;
}

.rodape .overlay .popup .wrapper .tc-wrap .tabs-content .tabs-body .tab-item.active{
    display: block;
}


.rodape .overlay .popup .wrapper .tc-wrap .tabs-content .tabs-body .tab-item h3{
    padding-top: 10px;
    margin-bottom: 10px;
    color: var(--principal);
}

.rodape .overlay .popup .wrapper .tc-wrap .tabs-content .tabs-body .tab-item p{
    margin-bottom: 20px;
}

.rodape .overlay .popup .wrapper .tc-wrap .tabs-content .tabs-body .tab-item.active{
    display: block !important;
}

.rodape .overlay .popup .wrapper .tc-wrap .tabs-content .tabs-foot{
    font-weight: 500;
}

.rodape .overlay .popup .wrapper .tc-wrap .tabs-content .tabs-foot button{
    width: 125px;
    padding: 5px 10px;
    background: transparent;
    border: 1px solid;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.5s ease;
}

.rodape .overlay .popup .wrapper .tc-wrap .tabs-content .tabs-foot button.decline{
    margin-right: 15px;
    border-color: var(--secundario);
    color: var(--secundario);
}

.rodape .overlay .popup .wrapper .tc-wrap .tabs-content .tabs-foot button.agree{
    color: #fff;
    background: var(--principal);
    border-color: var(--principal);
}

.rodape .overlay .popup .wrapper .tc-wrap .tabs-content .tabs-foot button.decline:hover{
    background: var(--secundario);
    color: #fff;
}

.rodape .overlay .popup .wrapper .tc-wrap .tabs-content .tabs-foot button.agree:hover{
    background: rgba(0, 56, 167, .8);
    border-color: rgba(0, 56, 167, .8);
}



/*Fim Politica Privadidade*/



/*=========Fim PopUp Poltíca de Privacidade===========*/


/*Fim Secção "Footer"*/

/*Responsividade "Tablet"*/

@media (max-width:900px){
    html{
        font-size: 55%;
    }
    /*Inicio Responsividade Header*/

    header a{
        z-index: 999;
    }

    header .fa-bars{
        display: block;
    }

    header .navbar{
        position: fixed;
        top: -100rem;
        left: 0;
        width: 100%;
        background: #fff;
        border-radius: 1rem;
        opacity: 0;
        transition: .2s linear;
    }

    header .navbar ul{
        flex-flow: column;
        padding: 2rem 0;
    }

    header .navbar ul li{
        margin: 1rem 0;
        width: 100%;
        text-align: center;
    }

    header .navbar ul li a{
        font-size: 3rem;
        display: block;
    }

    header .nav-toggle{
        top: 5.7rem;
        opacity: 1;
    }

    /*Fim Resposividade Header*/


    /*Inicio Responsividade Home*/

    .home::before{
        display: none;
    }

    .home .content img{
        width: 300px;
    }

    /*Fim Resposividade Home*/
    
    .about .row{
        flex-flow: column-reverse;
    }
    /*Inicio Responsividade "Sobre Nós"*/

    .about .row .content{
        padding: 0 2.5rem;
    }

    .about .about-container .about-content{
        width: 650px;
    }

    .about .about-container .about-list{
        display: none;
    }
    /*Fim Responsividade "Sobre Nós"*/

    /*Inicio Responsividade "Servicos"*/
    .servicos{
        height: 1500px;
    }

    .servicos .wrapper .container-servicos {
        flex-wrap: wrap;
        justify-content: center;
    }

    .servicos .wrapper .container-servicos .row .icon{
        opacity: 0;
    }

    .servicos .wrapper .container-servicos .card {
        width: calc(70% - 30px); /* Subtrai a margem para garantir que haja espaço suficiente para todos os cartões */
        margin: 15px;
        height: 150px;
    }


    .servicos .wrapper .container-servicos .card > .row > .description {
        width: 100%; 
        padding: 0 15px;
        height: auto; 
        opacity: 1; 
        transform: none; 
    }
    /*Fim Responsividade "Serviços"*/

    /*Início Responsividade "Certificações"*/

    /*.certificacoes .certificados {
        flex-wrap: wrap;
        justify-content: center;
    }

    .certificacoes .certificados .certificado {
        flex-basis: 100%;
        margin-bottom: 20px;
    }

    .certificacoes .certificados .certificado img {
        height: 100px;
        width: auto;
        display: block;
        margin: 0 auto;
        transition: .2s;
    }*/
    

 
    /*Fim Responsividade "Certificações"*/
    
    /*Inicio Responsividade "Recrutamento"*/

    .recrutamento .container form{
        overflow-y: scroll;
    }

    .recrutamento .container form::-webkit-scrollbar{
        display: none;
    }

    .recrutamento .container form .field .input-field{
        width: calc(100% / 2 - 15px);
    }

    .recrutamento .container .row .footer-col{
        width: 50%;
        margin-bottom: 30px;
    }
    /*Fim Responsividade "Recrutamento"*/

    /*Inicio Responsividade "Rodapé"*/

    .footer{
        padding-bottom: 50px;
    }

    .container .row{
        flex-wrap: wrap;
    }

    
    .container .row .footer-col{
        width: 100%;
        margin-top: 50px; 
        padding: 0 15px;
    }

    .container .row .footer-col .h4-footer{
        margin-top: 50px;
    }

    .container .row .footer-col iframe{
        padding-right: 150px;
        height: 250px;
    }

    /*Fim Responsividade "Rodapé"*/
}

/* Responsividade para telas menores que 400px */
@media (max-width: 450px) {


    .container .row .footer-col ul iframe{
        width: 500px;
    }
    .recrutamento form{
        width: 100px;
    }

    .about .about-container .about-content{
        width: 300px;
    }

    .servicos .wrapper .container-servicos {
        flex-wrap: wrap;
        justify-content: center; /* Centraliza os cards na página */
        max-width: 300px;
    }

    .servicos .wrapper .container-servicos .card {
        width: calc(100% - 30px); /* Define a largura dos cards para 100% da largura da tela, com uma margem de 15px à esquerda e à direita */
        margin: 15px; /* Define uma margem de 15px entre os cards */
    }

    .servicos .wrapper .container-servicos .row  .description h4{
        font-size: 12px;
    }

    .servicos .wrapper .container-servicos .row  .description p{
        font-size: 10px;
    }

    .servicos .wrapper .container-servicos .card > .row {
        justify-content: center;
    }

    .servicos .wrapper .container-servicos .card > .row > .description {
        width: calc(100% - 30px); /* Define a largura do texto para 100% da largura do card, com uma margem de 15px à esquerda e à direita */
        padding: 15px; /* Adiciona um preenchimento interno de 15px */
        opacity: 1; /* Garante que o texto seja visível */
        transform: none; /* Remove a transformação */
    }

    .rodape .overlay .popup .wrapper .tc-wrap .tabs-list{
        width: 100px;
    }

    .rodape .overlay .popup .wrapper .tc-wrap .tabs-content{
        width: 50%;
    }
    .rodape .overlay .popup .wrapper .tc-wrap .tabs-content .tabs-body{
        width: 175px;
    }

    .rodape .overlay .popup .wrapper .tc-wrap .tabs-content{
        width: calc(100% - 100px);
    }

    .rodape .overlay .popup .wrapper .tc-wrap .tabs-content .tabs-foot{
        font-size: 8px;
    }

    .rodape .overlay .popup{
        padding: 0;
    }

    .rodape .overlay .popup .wrapper .tc-wrap .tabs-list ul li{
        font-size: 12px;
    }

    .container .row .footer-col .footer-form .footer-input,
.container .row .footer-col .footer-form .footer-text {
    width: 100%; /* Faça os campos de entrada ocuparem a largura total */
}

}

@media (max-width:390px){
    .recrutamento .form-body .form{
        max-width: 375px;
    }
}

@media (max-width:360px){
    .recrutamento .form-body .form{
        max-width: 345px;
    }
}

@media (max-width:320px){
    .recrutamento .form-body .form{
        max-width: 305px;
    }
}


