/* 
Theme Name: cms
*/

@import url('https://fonts.googleapis.com/css2?family=Playfair:ital,opsz,wght@0,5..1200,300..900;1,5..1200,300..900&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');

/* RESET BÁSICO */
:root{
    --azul: #226985;
    --verde: #12D232;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body{
    overflow-x: hidden;
}

img {
    max-width: 100%;
    display: block;
}

section {
    padding: 80px 0;
}

h1, h2, h3 {
    font-weight: 800;
    font-family: 'Playfair', serif;
    color: var(--azul);
}

h1 {
    font-size: 40px;
}

h2 {
    font-size: 40px;
}
h3 {
    font-size: 32px;
}

p,li{
    font-size: 18px;
    line-height: 1.6;
    font-family: 'Poppins', sans-serif;
}
a{
    font-size: 18px;
    font-family: 'Poppins', sans-serif;
}

.container{
    max-width: 1150px;
}

header .container,
.solucoes > .container{
    max-width: 1320px;
}

.politicas-content li{
    margin-bottom: 15px;
}


/* ========================= */
/* HEADER */
/* ========================= */

.header {
    position: sticky;
    top: 0;
    padding: 15px 0;
    z-index: 999;
    box-shadow: 0 2px 4px rgba(0,0,0,0.25);
}

.menu {
    display: flex;
    gap: 20px;
    list-style: none;
    margin-bottom: 0;
    align-items: center;
    height: 100%;
    justify-content: space-around;
}

.menu a {
    text-decoration: none;
    color: var(--azul);
    font-weight: 500;
}

.cta {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cta .btnDefault:hover{
    display: inline-block;
    background: linear-gradient(to right, #226985, #3898BE);
    color: white;
    border-color: #226985;
}


/* ========================= */
/* BOTÃO */
/* ========================= */

.btnDefault {
    display: inline-block;
    padding: 12px 24px;
    background: transparent;
    color: var(--azul);
    text-decoration: none;
    transition: 0.3s;
    border: 3px solid var(--azul);
    border-radius: 5px;
}

.btnDefault:hover {
    background-color: var(--verde);
    color: white;
    border-color: var(--verde);
}

/* ========================= */
/* HERO */
/* ========================= */

.hero {
    min-height: 640px;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
    color: #fff;
    position: relative;
}

.hero h1 {
    margin-bottom: 30px;
    color: white;
}

.hero p {
    color: white;
    margin-bottom: 20px;
}

.hero .btnDefault {
    color: white;
    border: 3px solid white;
}
.hero .btnDefault:hover {
    border: 3px solid var(--verde);
}


.hero-wave {
    position: absolute;
    bottom: -55px;
    left: 0;
    width: 100%;
    text-align: center;
    z-index: 2;
}

.hero-wave svg {
    display: block;
    margin: 0 auto;
}


/* ========================= */
/* SOLUÇÕES */
/* ========================= */


section.solucoes{
    background-image: url('assets/img/bg-solucoes.png');
    background-size: cover;
    background-position: center bottom;
    padding-bottom: 0;
}

section.solucoes h2 br{
    display: none;
}

/* quando vira slider */
.row-solucoes.slick-initialized {
    display: block;
}

.row-solucoes.slick-initialized .col-lg-3{
    margin: 0 15px 10px;
}

.row-solucoes.slick-initialized .slick-prev {
    left: -40px;
}

.card-solucoes {
    position: relative;
    border: none;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 0 10px rgb(0 0 0 / .2);
    text-align: center;
    min-height: 500px;
}
.row-solucoes {
    min-height: 590px;
}

.card-solucoes::before,.card-solucoes::after {
    content: "";
    position: absolute;
    top: 0;
    width: 2px;
    height: 100%;
    pointer-events: none
}

.card-solucoes::before {
    left: 0;
    background: linear-gradient(to bottom,transparent 0%,#188DC3 50%,transparent 100%)
}

.card-solucoes::after {
    right: 0;
    background: linear-gradient(to bottom,transparent 0%,#69B8DC 50%,transparent 100%)
}

.card-solucoes .info {
    padding: 25px 20px;
}

.card-solucoes h3 {
    font-family: 'Poppins', sans-serif;
    margin-bottom: 10px;
    font-size: 20px;
    font-weight: bold;
    color: var(--azul);
    min-height: 50px;
}

.card-solucoes p{
    font-size: 16px;
    margin-bottom: 0;
}


.card-solucoes .btnDefault{
    display: none;
    background: linear-gradient(to right, #226985, #3898BE);
    border: transparent;
    margin-top: 20px;
}
.card-solucoes:hover .btnDefault {
    display: inline-block;
    background: linear-gradient(to right, #226985, #3898BE);
    color: white;
    border: transparent;
}






/* ========================= */
/* SOBRE */
/* ========================= */

.sobre img{
    margin: 0 auto;
}
.sobre h4 {
    color: var(--azul);
    font-size: 25px;
    font-weight: 800;
}

/* ========================= */
/* CURRÍCULO */
/* ========================= */

section.curriculo {
    background-image: url('assets/img/bg-curriculo.png');
    background-size: cover;
    background-position: center;
}
.curriculo-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px 20px;
    border: 1px solid #2b6c7a;
    border-radius: 120px;
    background: #fff;
}

.curriculo-item .icone {
    background: var(--azul);
    border-radius: 50%;
    padding: 3px;
    display: flex;
    flex: 0 0 44px;
    align-items: center;
    justify-content: center;
}
.curriculo-item img {
    object-fit: contain;
}
.curriculo-item p{
    margin-bottom: 0;
}
.curriculo-item p strong{
    color: var(--azul);
}
.curriculo-grid {
    margin-bottom: 30px;
}

section.curriculo .btnDefault:hover {
    background: linear-gradient(to right, #226985, #3898BE); 
    color: white; 
    border-color: #226985;
}

/* ========================= */
/* INSTAGRAM */
/* ========================= */

.instagram {
    text-align: center;
    margin-top: 5rem;
}

#sb_instagram #sbi_load .sbi_follow_btn a{
    padding: 12px 20px !important;
    background: transparent !important; 
    color: var(--azul)  !important; 
    border: 3px solid var(--azul) !important;
    font-family: 'Poppins', sans-serif !important;
    font-size: 18px !important;
    margin-top: 1.5rem !important;
}

#sb_instagram #sbi_load .sbi_follow_btn a:hover{
    background: var(--azul) !important; 
    color: white !important; 
    border: 3px solid var(--azul) !important;
}


/* ========================= */
/* DIFERENCIAIS */
/* ========================= */

.diferenciais {
    background-size: cover;
    background-position: center;
    color: #fff;
}
section.diferenciais h2{
    color: white;
}

.card-diferenciais {
    display: flex;
    align-items: center;
    gap: 20px;
    background: #ffffffbf;
    margin-bottom: 40px;
    border-radius: 15px;
    padding: 16px;
    box-shadow: 0 0 10px rgb(0 0 0 / .2);
    transition: 0.3s;
}

.card-diferenciais:hover{
    background: #ffffff;
    transition: 0.3s;
}

.card-diferenciais .icone {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5px;
    background-color: var(--azul);
    border-radius: 5px;
    flex: 0 0 65px;
    height: 65px;
}

.card-diferenciais p{
    color: var(--azul);
    font-size: 18px;
    margin-bottom: 0;
}



/* ========================= */
/* RESULTADOS */
/* ========================= */

section.resultados {
    background-image: url('assets/img/bg-resultados.png');
    background-size: cover;
    background-position: center;
}
.slider-resultados .slide {
    padding: 10px;
    opacity: 0.5;
    transform: scale(0.75);
    transition: 0.3s;
}

.slider-resultados .slide :is(img, video) {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.slider-resultados .slick-center {
    opacity: 1;
    transform: scale(1);
}

.resultado-descricao {
    text-align: center;
    margin-top: 20px;
    color: var(--azul);
    font-size: 18px;
}

.slick-prev:before, .slick-next:before {
    color: var(--azul);
    font-size: 40px;
}

/* PLAY ICON */
.slide a::after {
    content: '▶';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    
    background: white;
    color: black;
    
    width: 60px;
    height: 60px;
    
    display: flex;
    align-items: center;
    justify-content: center;
    
    border-radius: 50%;
    font-size: 20px;
}

.fancybox__content :focus:not(.carousel__button.is-close) {
    outline: none !important;
}


.feedbacks {
    margin-top: 6rem;
}





/* ========================= */
/* FAQ */
/* ========================= */

section.faq {
    background: #f5f5f5;
}
section.faq .accordion-item {
    border: none;
    background: transparent;
}
section.faq button.accordion-button {
    font-size: 18px;
    font-family: 'Poppins', sans-serif;
}
section.faq button.accordion-button.collapsed{
    margin-bottom: 30px;
    background: white;
    border-bottom: 1px solid var(--azul);
    color: var(--azul);
}

section.faq button.accordion-button:not(.collapsed) {
    background: var(--azul);
    color: white;
    border-bottom: 1px solid white;
}

.accordion-button:focus {
    box-shadow: unset;
}

.accordion-item:first-of-type>.accordion-header .accordion-button {
    border-top-left-radius: 0 !important;
    border-top-right-radius: 0 !important;
}

.accordion-item:last-of-type>.accordion-header .accordion-button.collapsed {
    border-bottom-right-radius: 0 !important;
    border-bottom-left-radius: 0 !important;
}

section.faq .accordion-collapse {
    margin-top: 30px;
    background: white;
    padding: 30px;
    border-radius: 15px;
}

section.faq  .accordion-body {
    padding: 0;
}

section.faq  .accordion-body p{
    margin-bottom: 0;
    color: var(--azul);
}

.accordion-button:not(.collapsed)::after {
    filter: brightness(0) saturate(100%) invert(93%) sepia(92%) saturate(24%) hue-rotate(244deg) brightness(106%) contrast(100%);
}



/* ========================= */
/* RODAPÉ */
/* ========================= */

.footer-top {
    background-image: url('assets/img/bg-footer.png');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 60px 0;
}
.footer-top h2{
    color: white;
}

.footer-top .btnDefault {
    color: white;
    border: 3px solid white;
}
.footer-top .btnDefault:hover {
    border: 3px solid var(--verde);
}


.footer-top .form input:not([type="submit"]) {
    padding: 15px 30px;
    border: none;
    width: 100%;
    background-color: transparent;
    border-bottom: 2px solid white;
    margin-bottom: 30px;
    font-size: 18px;
    color: white;
    box-shadow: none;
    outline: none;
}
.footer-top .form input:not([type="submit"])::placeholder {
    color: white;
    font-size: 18px;
}
input.wpcf7-not-valid{
    border-color: red !important;
}
.wpcf7-not-valid-tip,
.wpcf7-spinner{
    display: none !important;
}

.wpcf7-form.submitting input[type="submit"] {
    pointer-events: none;
    cursor: not-allowed;
    opacity: 0.6;
}




.footer-top .form .btnDefault {
    color: white;
    border: 3px solid white;
}
.footer-top .form .btnDefault:hover {
    border: 3px solid var(--verde);
}

.footer-top .col-lg-6{
    border-right: 2px solid white;
}

.footer-top .localizacao a{
	color: #fff;
	text-decoration: none;
}



.footer-bottom {
    background: white;
    padding: 25px 0;
}
ul.menu-politicas {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    margin: 0;
    gap: 15px;
}
ul.menu-politicas li {
    list-style: none;
}
.footer-bottom :is(a,p) {
    font-size: 16px;
    color: var(--azul);
    text-decoration: none;
    margin-bottom: 0;
    display: flex;
    align-items: center;
    gap: 5px;
}





.wpcf7 input[type="submit"]:disabled {
    cursor: not-allowed;
    opacity: 0.6;
}

/* opcional - efeito de loading */
.wpcf7 input[type="submit"].is-loading {
    position: relative;
}

/* opcional - spinner simples */
.wpcf7 input[type="submit"].is-loading::after {
    content: '';
    width: 14px;
    height: 14px;
    border: 2px solid white;
    border-top-color: transparent;
    border-radius: 50%;
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    animation: spin 0.6s linear infinite;
}

@keyframes spin {
    to { transform: translateY(-50%) rotate(360deg); }
}

.grecaptcha-badge {
    visibility: hidden;
}


.mapa{
	padding: 0
}
.mapa iframe {
    padding: 0;
    border: 0;
    aspect-ratio: 16 /4;
}




/* ========================= */
/* RESPONSIVO */
/* ========================= */

@media(max-width: 1600px){

    a,p{
        font-size: 16px;
    }
    .btnDefault {
        padding: 10px 20px;
    }
    #sb_instagram #sbi_load .sbi_follow_btn a{
        padding: 10px 20px;
        font-size: 16px !important;
    }

    header .container, .solucoes > .container {
        max-width: 1150px;
    }
    .container {
        max-width: 1050px;
    }

    .hero {
        min-height: 540px;
    }
    h1 {
        font-size: 32px;
    }
    h2 {
        font-size: 32px;
    }    
    .card-solucoes h3 {
        font-size: 18px;
    }
    .card-solucoes p {
        font-size: 14px;
    }
    .sobre h4 {
        font-size: 22px;
    }
    .card-diferenciais p {
        font-size: 16px;
    }
    section.faq button.accordion-button {
        font-size: 16px;
    }
    .footer-bottom :is(a,p) {
        font-size: 14px;
    }
    .slider-resultados {
        width: 80%;
        margin: 0 auto;
    }
    .card-solucoes {
        min-height: 460px;
    }
    .row-solucoes {
        min-height: 530px;
    }






}

@media(max-width: 1440px){

    section {
        padding: 60px 0;
    }
    header .container, .solucoes > .container {
        max-width: 1050px;
    }
    .container {
        max-width: 900px;
    }
    a, p {
        font-size: 14px;
    }
    #sb_instagram #sbi_load .sbi_follow_btn a {
        font-size: 14px !important;
    }
    .hero {
        min-height: 500px;
    }
    h1 {
        font-size: 30px;
    }
    h2 {
        font-size: 30px;
    }
    .card-solucoes .info {
        padding: 20px 15px;
    }
    .card-solucoes h3 {
        font-size: 16px;
    }
    .card-solucoes p {
        font-size: 13px;
    }
    .card-diferenciais p {
        font-size: 14px;
    }
    .card-diferenciais .icone {
        flex: 0 0 50px;
        height: 50px;
    }
    section.faq button.accordion-button {
        font-size: 14px;
    }
    .footer-bottom :is(a,p) {
        font-size: 12px;
    }
    .footer-bottom {
        padding: 15px 0;
    }

    .card-solucoes {
        min-height: 430px;
    }
    .row-solucoes {
        min-height: 500px;
    }


}

@media(max-width: 1024px){
     header .container, .solucoes > .container {
        max-width: 100%;
    }
    .container {
        max-width: 100%;
    }
    .menu {
        padding-left: 0;
    }
    .footer-top .form input:not([type="submit"]) {
        padding: 13px 25px;
        font-size: 14px;
    }

    .slider-resultados {
        width: 85%;
        margin: 0 auto;
    }

    .footer-top .form input:not([type="submit"])::placeholder {
        font-size: 14px;
    }

    .btnDefault {
        padding: 10px 15px;
    }

    #sb_instagram #sbi_load .sbi_follow_btn a {
        padding: 10px 15px !important;
    }

    .card-solucoes {
        min-height: 430px;
    }


}

@media(max-width: 768px){
   
    .header .col-lg-7,
    .header .col-lg-3{
        display: none;
    }

    .logo {
        display: flex;
        align-items: center;
        justify-content: center;
    }
	.logo img{
		width: 200px;
	}

    .card-solucoes .img img {
        width: 100%;
    }
    .footer-bottom :is(a,p) {
        text-align: center;
    }
    .footer-top {
        text-align: center;
    }
    .footer-top .col-lg-6 {
         position: relative;
        border-right: 0;
        padding-bottom: 50px;
    }

    /* linha custom */
    .footer-top .col-lg-6::after {
        content: "";
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);

        width: 80%;
        height: 2px;
        background: white;
    }
    .footer-top .col-lg-6::after {
        width: 80%;
    }
    .d-flex.align-items-center.gap-3.mb-5 {
        justify-content: center;
    }
    .footer-top .col-lg-5{
        padding-top: 50px;
    }

    .footer-bottom :is(a,p) {
        justify-content: center;
    }


    #sobre p br{
        display: none;
    }
    .curriculo-item {
        height: 100%;
    }


     .footer-top .d-flex.align-items-center.gap-3.mb-5 p{
        text-align: left;
    }
    .footer-top .form {
        padding: 0 8%;
    }
    .footer-bottom :is(a,p) {
        display: inline-block;
    }

    section.politicas-content :is(h1, h2, h3, p, li) {
        text-align: left;
    }

    .card-solucoes {
        min-height: 470px;
    }
    section.solucoes .col-md-6{
        margin-bottom: 50px;
    }
    .card-solucoes .btnDefault {
        display: inline-block;
        background: linear-gradient(to right, #226985, #3898BE);
        color: white;
        border: transparent;
    }

    .row-solucoes.slick-initialized .slick-list.draggable {
        width: 80%;
        display: block;
        margin: 0 auto;
    }
    .row-solucoes.slick-initialized .col-lg-3 {
        margin: 0 10px 10px;
    }
    .row-solucoes.slick-initialized .slick-prev {
        left: 35px;
    }
    .row-solucoes.slick-initialized .slick-next {
        right: 35px;
    }
	.mapa iframe {
		aspect-ratio: 16 /6;
	}

	
}

@media(max-width: 576px) {

    
    h1 {
        font-size: 40px;
    }
    h2 {
        font-size: 40px;
        text-align: center;
    }

    section {
        padding: 60px 0;
    }
    .hero {
        align-items: flex-start;
        min-height: 1200px;
         text-align: center;
    }
    .btnDefault{
        background-color: var(--verde);
        color: white;
        border-color: var(--verde);
    }
    .hero .btnDefault {
        border: 3px solid var(--verde);
    }

    a, p {
        font-size: 18px;
        text-align: center;
    }
    #sb_instagram #sbi_load .sbi_follow_btn a {
        font-size: 18px !important;
    }

    p br{
        display: none;
    }

    
    section.solucoes h2 br{
        display: block;
    }
    .card-solucoes h3 {
        font-size: 20px;
        min-height: auto;
    }
    .card-solucoes p {
        font-size: 16px;
    }
    .card-solucoes .btnDefault {
        display: inline-block;
        background: linear-gradient(to right, #226985, #3898BE);
        color: white;
        border: transparent;
    }
    .sobre h4 {
        text-align: center;
    }
    .curriculo-item p {
        text-align: left;
    }

    .card-diferenciais {
        align-items: center;
        flex-direction: column;
        justify-content: center;
    }
    .card-diferenciais {
        background: #ffffff;
    }
    .card-diferenciais .icone {
        flex: 0 0 65px;
        height: 65px;
        width: 65px;
        padding: 5px;
    }
    .card-diferenciais p {
        font-size: 18px;
    }
    section.faq button.accordion-button {
        font-size: 18px;
    }
    .footer-top h2 br{
        display: none;
    }
    .footer-top .btnDefault {
        border: 3px solid var(--verde);
    }

    .footer-top .form .btnDefault {
        background-color: transparent;
        color: white;
        border: 3px solid white;
    }

    .slider-resultados {
        width: 80%;
        margin: 0 auto;
    }
    .slider-resultados .slide {
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .slick-prev:before, .slick-next:before {
        font-size: 30px;
    }
    section#diferenciais .col-md-12 {
        padding: 0 10%;
    }
    .row-solucoes:not(.slick-initialized) {
        padding: 0 10%;
    }

    .row-solucoes.slick-initialized .slick-list.draggable {
        width: 85%;
    }
    .row-solucoes.slick-initialized .col-lg-3 {
        margin: 0 10px 10px;
    }
    .row-solucoes.slick-initialized .slick-next {
        right: 15px;
    }
    .row-solucoes.slick-initialized .slick-prev {
        left: 5px;
    }
	.footer-top .localizacao svg{
		width: 64px;
	}
	.mapa iframe {
		aspect-ratio: 16 /9;
	}


}

@media(max-width: 390px){

    .hero {
        min-height: 1050px;
    }
    h1 {
        font-size: 36px;
    }
    h2 {
        font-size: 36px;
    }
    a, p {
        font-size: 16px;
        text-align: center;
    }
    #sb_instagram #sbi_load .sbi_follow_btn a {
        font-size: 16px !important;
    }
    .card-diferenciais p {
        font-size: 16px;
    }
    section.faq button.accordion-button {
        font-size: 16px;
    }

}

@media(max-width: 360px){

    .hero {
        min-height: 980px;
    }
    h1 {
        font-size: 32px;
    }
    h2 {
        font-size: 32px;
    }
    a, p {
        font-size: 14px;
        text-align: center;
    }
     #sb_instagram #sbi_load .sbi_follow_btn a {
        font-size: 14px !important;
    }
    .card-diferenciais p {
        font-size: 14px;
    }
    section.faq button.accordion-button {
        font-size: 14px;
    }

}

@media(max-width: 320px){

    .hero {
        min-height: 900px;
    }
    h1 {
        font-size: 28px;
    }
    h2 {
        font-size: 28px;
    }
    a, p {
        font-size: 12px;
        text-align: center;
    }
     #sb_instagram #sbi_load .sbi_follow_btn a {
        font-size: 12px !important;
    }
    .card-diferenciais p {
        font-size: 12px;
    }
    section.faq button.accordion-button {
        font-size: 12px;
    }

}