/* ----------------------------------------------------------
    Theme Name: CDC Theme
    Theme URI: https://marcasite.com.br
    Author: Henrique Quintino
    Author URI: https://www.linkedin.com/in/henrique-quintino/
    Description: Tema oficial da CDC criada pela Marcasite
    Requires at least: 6.4
    Tested up to: 6.4
    Requires PHP: 7.0
    Version: 1.0
    License: GNU General Public License v2 or later
    License URI: http://www.gnu.org/licenses/gpl-2.0.html
    ----------------------------------------------------------

/***************************************************************************
       Fonts
***************************************************************************/

@import url('https://fonts.googleapis.com/css2?family=DM+Serif+Display:ital@0;1&family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

/***************************************************************************
       Variáveis
***************************************************************************/

:root {
    --cor-branco: #ffffff;
    --cor-cinza: #6a6e71;
    --cor-azul: #05375d;
    --cor-azul-claro: #4478bd;

    --font-DMSerif: "DM Serif Display", serif;
    --font-Montserrat: "Montserrat", sans-serif;

    --font-extralight: 200;
    --font-light: 300;
    --font-regular: 400;
    --font-medium: 500;
    --font-semibold: 600;
    --font-bold: 700;
}

/***************************************************************************
        All
***************************************************************************/

.transition_on *,
.transition_on {
    transition: ease .5s all !important;
}

html,
body {
    margin: 0;
    overflow-x: clip;
}

* {
    margin: 0;
    box-shadow: 0 0 0 0;
    border: 0 none;
    outline: 0;
    font-family: var(--font-Montserrat);
}

a {
    text-decoration: none;
    color: var(--cor-branco);
}

a:hover {
    text-decoration: none;
    color: var(--cor-branco);
}

h2 {
    color: var(--cor-azul);
    font-size: 34px;
    font-weight: var(--font-bold);
    margin-bottom: 8px;
    font-family: var(--font-DMSerif);
}

h3 {
    color: var(--cor-azul-escuro);
    font-size: 28px;
    font-weight: var(--font-bold);
    font-family: var(--font-DMSerif);
}

p {
    font-size: 18px;
    color: var(--cor-cinza);
    font-weight: var(--font-light);
}

span {
    color: var(--cor-azul);
    font-size: 18px;
    font-weight: var(--font-semibold);
    text-shadow: 0.2px 0.2px 0.2px var(--cor-azul);
}

img {
    transition: all 0.3s ease-in-out;
    width: 100%;
}

header {
    position: absolute;
    width: 100%;
}

header .area-logo,
footer .area-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    box-shadow: 0px 0px 3.56px 0.44px rgba(0, 0, 0, 0.2);
    background-color: var(--cor-branco);
    top: -1px;
    width: 172px;
    height: 162px;
    border-bottom-left-radius: 50%;
    border-bottom-right-radius: 50%;
}

header .area-logo .logo,
footer .area-logo .logo {
    width: 118px;
    height: 117px;
}

.btn-verde,
.btn-azul {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-image: -moz-linear-gradient(90deg, rgb(37, 136, 60) 0%, rgb(117, 204, 36) 100%);
    background-image: -webkit-linear-gradient(90deg, rgb(37, 136, 60) 0%, rgb(117, 204, 36) 100%);
    background-image: -ms-linear-gradient(90deg, rgb(37, 136, 60) 0%, rgb(117, 204, 36) 100%);
    width: fit-content;
    padding: 0 30px;
    height: 53px;
    color: var(--cor-branco);
    font-weight: var(--font-regular);
    font-family: var(--font-DMSerif);
    text-decoration: none;
    font-size: 17px;
    line-height: 19px;
    transition: all 0.3s ease-in-out;
    border-radius: 27px;
}

.btn-verde:hover,
.btn-azul:hover {
    transform: scale(1.05);
}

.btn-azul {
    background-color: var(--cor-azul-claro);
    background-image: none;
}

section {
    padding-top: 100px;
    padding-bottom: 50px;
}

/***************************************************************************
        Banner Principal
***************************************************************************/

section.banner-principal {
    padding-top: 210px;
    background-image: url(img/banner-principal.webp);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 777px;
}

section.banner-principal.novo {
    background-image: url(img/banner-principal-novo.png);
    height: 331px;
}

.banner-principal span {
    background-image: -moz-linear-gradient(90deg, rgb(37, 136, 60) 0%, rgb(117, 204, 36) 100%);
    background-image: -webkit-linear-gradient(90deg, rgb(37, 136, 60) 0%, rgb(117, 204, 36) 100%);
    background-image: -ms-linear-gradient(90deg, rgb(37, 136, 60) 0%, rgb(117, 204, 36) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 26px;
    text-transform: uppercase;
    font-family: var(--font-DMSerif);
    font-weight: var(--font-regular);
    text-shadow: none;
}

.banner-principal h2,
.banner-principal p {
    color: var(--cor-branco);
}

.banner-principal h2 {
    font-size: 42px;
    font-weight: var(--font-regular);
    line-height: 45px;
    margin-bottom: 20px;
}

.banner-principal p {
    font-size: 22px;
    line-height: 24px;
    max-width: 545px;
    font-weight: var(--font-extralight);
}

.banner-principal .area-btns {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 20px;
}

.banner-principal .area-btns .btn-verde,
.banner-principal .area-btns .btn-azul {
    min-width: 245px;
    padding: 0 10px;
}

/***************************************************************************
        Quem Somos
***************************************************************************/

.quem-somos p,
.credito p {
    max-width: 550px;
}

.quem-somos .nossa-missao {
    display: flex;
    align-items: center;
    gap: 15px;
    margin: 20px 0;
}

.quem-somos .nossa-missao img {
    width: 67px;
    height: 67px;
    object-fit: contain;
}

.quem-somos .nossa-missao .item {
    display: flex;
    flex-direction: column;
    max-width: 450px;
    text-align: left;
}

.quem-somos .nossa-missao .item p {
    margin-bottom: 0;
}

.quem-somos .nossa-missao .item span,
.inventario .card span {
    color: var(--cor-azul-claro);
    text-shadow: none;
}

/***************************************************************************
        Nossos Serviços
***************************************************************************/

section.nossos-servicos {
    margin-bottom: 100px;
}

.nossos-servicos .card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    border-radius: 19px;
    box-shadow: 0px 0px 3px 0px rgba(0, 0, 0, 0.21);
    padding: 55px 25px;
    border: 0;
    position: relative;
    height: 100%;
}

.nossos-servicos .card .box-circle,
.nossos-servicos .card .box-circle .circle {
    display: flex;
    align-items: center;
    justify-content: center;
}

.nossos-servicos .card .box-circle {
    width: 100%;
    position: absolute;
    top: -32px;
}

.nossos-servicos .card .box-circle .circle {
    width: 71px;
    height: 71px;
    border-radius: 50%;
    background-image: -moz-linear-gradient(90deg, rgb(37, 136, 60) 0%, rgb(117, 204, 36) 100%);
    background-image: -webkit-linear-gradient(90deg, rgb(37, 136, 60) 0%, rgb(117, 204, 36) 100%);
    background-image: -ms-linear-gradient(90deg, rgb(37, 136, 60) 0%, rgb(117, 204, 36) 100%);
    color: var(--cor-branco);
    font-family: var(--font-DMSerif);
    font-weight: var(--font-regular);
    font-size: 35px;
}

.nossos-servicos .card span {
    font-size: 16px;
    max-width: 200px;
    line-height: 20px;
    margin-bottom: 5px;
}

.nossos-servicos .card p {
    font-size: 15px;
    margin-bottom: 0;
}

/***************************************************************************
        Crédito
***************************************************************************/

section.credito {
    background-image: url(img/banner-credito.webp);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    min-height: 651px;
    padding-top: 120px;
    padding-bottom: 160px;
}

.credito ul {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding-left: 0;
    list-style: none;
    margin: 30px 0;
}

.credito ul li {
    display: flex;
    align-items: baseline;
    gap: 7px;
    font-size: 16px;
    color: var(--cor-cinza);
    font-weight: var(--font-light);
    max-width: 530px;
    text-align: left;
}

.credito ul li img {
    width: 19px;
    height: 17px;
    object-fit: contain;
}

.credito .thumb {
    object-fit: cover;
    border-radius: 16px;
}

/***************************************************************************
        Pilares
***************************************************************************/

.pilares p {
    max-width: 890px;
}

.pilares .card {
    width: 100%;
    background: linear-gradient(to bottom, #6ec020e8, #54ab2be1, #257e36);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 45px 20px;
    height: 100%;
    border-radius: 19px;
    border: 0;
    position: relative;
    overflow: hidden;
}

.pilares .card .icone {
    width: fit-content;
    height: 80px;
    object-fit: contain;
    margin-bottom: 20px;
}

.pilares .card .img-banner {
    width: 100%;
    max-width: 100%;
    height: inherit;
    position: absolute;
    margin: 0;
    border: 0;
    border-radius: 19px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    z-index: -1;
    right: 0;
    top: 0;
}

.pilares .card h4,
.pilares .card p {
    color: var(--cor-branco);
}

.pilares .card h4 {
    font-size: 20px;
    font-weight: var(--font-semibold);
    margin-bottom: 4px;
}

.pilares .card p {
    font-size: 16px;
    line-height: 20px;
    max-width: 200px;
    margin-bottom: 0;
}

/***************************************************************************
        Inventário
***************************************************************************/

.inventario h2 {
    max-width: 530px;
}

.inventario p {
    max-width: 550px;
}

.inventario .card {
    display: flex;
    flex-direction: column;
    padding: 30px;
    border: 0;
    border-radius: 8px;
    box-shadow: 0px 0px 3px 0px rgba(0, 0, 0, 0.21);
    height: 100%;
}

.inventario .card span {
    margin-bottom: 5px;
}

.inventario .card p {
    font-size: 16px;
    max-width: 100%;
    margin-bottom: 0;
}

/***************************************************************************
        Ebook
***************************************************************************/

.ebook .card-form {
    background-color: initial;
    box-shadow: none;
    border-radius: 0;
	margin-top: 0;
	padding: 0;
}

.ebook .card-form h3 {
	max-width: 390px;
}

.ebook img {
	max-height: 586px;
}

/***************************************************************************
        Footer
***************************************************************************/

footer {
    padding: 60px 0 20px 0;
    background-image: url(img/banner-footer.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    min-height: 476px;
    margin-top: 250px;
    position: relative;
}

footer h2,
footer span,
footer p {
    color: var(--cor-branco);
}

footer a {
    max-width: fit-content;
}

footer .area-logo {
    box-shadow: none;
}

footer .down {
    padding-top: 150px;
}

footer .down p {
    max-width: 345px;
}

footer .down .btn-verde {
    width: fit-content;
}

.card-form,
.card-form form {
    width: 100%;
}

.card-form {
    position: relative;
    padding: 30px;
    box-shadow: 0px 0px 3px 0px rgba(0, 0, 0, 0.21);
    background-color: var(--cor-branco);
    border-radius: 19px;
    height: auto;
    margin-top: -200px;
}

.card-form h3 {
    font-size: 30px;
    margin-bottom: 15px;
    color: var(--cor-azul);
    font-weight: var(--font-semibold);
}

.card-form form input,
.card-form form input,
footer .card-form form textarea {
    width: 100%;
    height: 45px;
    padding: 15px 25px;
    border-radius: 20px;
    background-color: #f6f6f6;
}

footer .card-form form textarea {
    height: 113px;
    resize: none;
}

.card-form form input::placeholder,
.card-form form input::placeholder,
footer .card-form form textarea::placeholder {
    color: var(--cor-cinza);
    font-weight: var(--font-medium);
    opacity: 0.7;
}

footer .card-form form .btn-verde {
    position: absolute;
    left: 0;
    bottom: 0;
    border-radius: 0 0 16px 16px;
    height: 60px;
}

.card-form form .btn-verde:hover {
    transform: none;
}

.card-form .wpcf7-response-output {
    margin-top: -30px;
    margin-bottom: 45px;
}

footer .linha-branca {
    width: 100%;
    height: 1px;
    margin: 10px 0;
    background: var(--cor-branco);
    border: 0;
    opacity: 0.4;
}

footer .logo-marcasite {
    width: 220px;
    height: 18px;
    object-fit: contain;
}

/***************************************************************************
        Responsivo
***************************************************************************/

@media (max-width: 1199px) {
    .banner-principal h2 {
        font-size: 37px;
    }
}

@media (min-width: 992px) and (max-width: 1199px) {
    .quem-somos .thumb {
        height: 100%;
        object-fit: contain;
    }
}

@media (min-width: 992px) {
    .mobile {
        display: none;
    }
}

@media (max-width: 991px) {
    .mobile {
        display: block;
    }

    .desktop {
        display: none !important;
    }

    section.banner-principal {
        padding-top: 220px;
        padding-bottom: 60px;
        height: 100%;
    }

    .banner-principal h2,
    .banner-principal p {
        max-width: 100%;
    }

    .quem-somos .col-lg-6,
    .credito .col-lg-6,
    .inventario .col-lg-6,
    .inventario .col-12 {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
    }

    .banner-principal .area-btns {
        justify-content: center;
    }

    section.credito {
        background-image: none;
        min-height: 100%;
        background-color: #f7fafa;
        padding: 100px 0;
    }

    footer {
        margin-top: 120px;
    }

    footer .card-form {
        margin-top: 0;
    }
}

@media (max-width: 767px) {
    .banner-principal h2 {
        font-size: 31px;
        line-height: 35px;
    }
}

@media (max-width: 567px) {
    .banner-principal .area-btns {
        flex-direction: column;
        align-items: center;
    }

    .inventario .card {
        padding: 30px 15px;
    }
}

@media (max-width: 467px) {
    .banner-principal p {
        font-size: 18px;
    }
}

@media (max-width: 400px) {
    .banner-principal h2 {
        font-size: 24px;
        line-height: 28px;
    }

    footer .card-form {
        padding: 30px 15px;
    }
}

@media (max-width: 380px) {}

.btn-topo {
    position: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    bottom: 70px;
    left: 12px;
    background-image: -moz-linear-gradient(90deg, rgb(37, 136, 60) 0%, rgb(117, 204, 36) 100%);
    background-image: -webkit-linear-gradient(90deg, rgb(37, 136, 60) 0%, rgb(117, 204, 36) 100%);
    background-image: -ms-linear-gradient(90deg, rgb(37, 136, 60) 0%, rgb(117, 204, 36) 100%);
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    cursor: pointer;
    box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.2);
    z-index: 99;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
}

#btnTopo.show {
    opacity: 1;
}

.btn-topo.disabled {
    cursor: default;
    pointer-events: none;
    opacity: 0;
}

.btn-topo img {
    width: 17px;
    height: 15px;
    transform: rotate(-90deg);
}

.wpcf7-not-valid-tip {
    display: flex;
    font-size: 16px !important;
    background-image: none !important;
    margin-top: 8px;
    margin-bottom: 10px;
    -webkit-background-clip: unset !important;
    -webkit-text-fill-color: #dc3232 !important;
    text-shadow: none;
}

.wpcf7-form-control-wrap,
.wpcf7-list-item-label {
    font-size: 16px !important;
    line-height: normal !important;
}

.wpcf7-list-item-label {
    font-size: 13px !important;
    position: relative;
}

.wpcf7-list-item {
    display: flex !important;
    margin: 0 !important;
}

.wpcf7-list-item input {
    height: 13px !important;
    box-shadow: none !important;
}

.wpcf7-list-item.first.last {
    position: absolute;
}

.wpcf7-list-item.first.last input {
    width: 18px;
    height: 18px;
    margin-right: 10px;
}

.rodape-form p {
    display: flex;
    margin: 0;
    width: 100%;
    margin-bottom: 10px;
}

.rodape-form p label {
    font-size: 15px;
    margin-left: 15px;
    margin-bottom: -15px;
    margin-top: -4px;
    opacity: 1;
    color: var(--cor-cinza);
}

.rodape-form p label a {
    color: var(--cor-cinza) !important;
    text-decoration: underline !important;
}

.rodape-form p label a:hover {
    color: var(--cor-cinza) !important;
}

.whatsapp img {
    position: fixed;
    z-index: 8;
    bottom: 86px;
    right: 8px;
    width: 50px;
    height: 50px;
    opacity: 0.7;
    transition: ease .8s all;
}

.whatsapp a:hover img {
    opacity: 1;
    filter: drop-shadow(0px 0px 6px black);
}