@import url("https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;500;700;800&display=swap");
:root {
    --blackOpacity: rgb(26, 27, 26, 0.9);
    --white: #ffffff;
    --corPrincipal: #f2eedc;
    --corBeje: #f1e9d4;
    --corVariacao1: #e45e38;
    --corTexto: #63625a;
    --corHover: #e45e38;
    --corTitle: #1d1d1b;
    --cinzaclaro: #f2f3f7;
    --textoBlog: #6c757d;
}

body {
    margin: 0;
}

h1,
h2,
h3,
h4,
h5 {
    color: var(--corTitle) !important;
    font-family: "Open Sans", sans-serif !important;
    font-display: swap;
    font-weight: 800 !important;
    text-transform: uppercase;
}

p {
    font-family: "Open Sans", sans-serif !important;
    font-display: swap;
    font-weight: 300 !important;
}

h6 {
    font-weight: 500;
    color: var(--corTitle) !important;
}

.card-title {
    color: var(--corTitle) !important;
    font-family: "Open Sans", sans-serif !important;
    font-display: swap !important;
    font-weight: 800 !important;
    text-transform: none !important;
}

small {
    font-style: italic !important;
    font-family: "Open Sans", sans-serif !important;
    color: #a3aeb8 !important;
    font-weight: 500 !important;
}

a {
    color: var(--corTitle) !important;
    font-family: "Open Sans", sans-serif !important;
}

a:hover {
    text-decoration: none !important;
    color: var(--corHover) !important;
}

h1 {
    font-size: 2em;
    margin: 0.67em 0;
}

img {
    border-style: none;
}

canvas {
    display: inline-block;
}

html {
    box-sizing: border-box;
    scroll-behavior: smooth;
    /*scroll suave*/
}

*,
*:before,
*:after {
    box-sizing: inherit;
}

body {
    background: #f2eedc;
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
}

table {
    background-color: transparent !important;
    width: 100% !important;
    margin-bottom: 15px !important;
    font-size: 0.9em !important;
    border-spacing: 0 !important;
    border-collapse: collapse !important;
    font-family: "Open Sans", sans-serif !important;
}

table tbody>tr:nth-child(odd)>td,
table tbody>tr:nth-child(odd)>th {
    background-color: #eee;
}

table td,
table th {
    padding: 15px;
    line-height: 1.5;
    text-align: left;
    vertical-align: top;
    border: 1px solid #ccc;
}

.nav-tabs a {
    font-weight: 700 !important;
    font-family: "Open Sans", sans-serif !important;
}


/* ini: Preloader */

#preloader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--corPrincipal);
    z-index: 999;
}

#preloader .inner {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.bolas>div {
    display: inline-block;
    background-color: var(--corVariacao1);
    width: 25px;
    height: 25px;
    border-radius: 100%;
    margin: 3px;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    animation-name: animarBola;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
}

.bolas>div:nth-child(1) {
    animation-duration: 0.75s;
    animation-delay: 0;
}

.bolas>div:nth-child(2) {
    animation-duration: 0.75s;
    animation-delay: 0.12s;
}

.bolas>div:nth-child(3) {
    animation-duration: 0.75s;
    animation-delay: 0.24s;
}

@keyframes animarBola {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1);
        opacity: 1;
    }
    16% {
        -webkit-transform: scale(0.1);
        transform: scale(0.1);
        opacity: 0.7;
    }
    33% {
        -webkit-transform: scale(1);
        transform: scale(1);
        opacity: 1;
    }
}


/* end: Preloader */


/*Cookies*/

.cookieConsentContainer {
    z-index: 999;
    width: 350px;
    min-height: 20px;
    box-sizing: border-box;
    padding: 30px 30px 30px 30px;
    background: #232323;
    overflow: hidden;
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: none;
}

.cookieConsentContainer .cookieTitle a {
    font-family: OpenSans, arial, sans-serif;
    color: #fff;
    font-size: 22px;
    line-height: 20px;
    display: block;
}

.cookieConsentContainer .cookieDesc p {
    margin: 0;
    padding: 0;
    font-family: OpenSans, arial, sans-serif;
    color: #fff;
    font-size: 13px;
    line-height: 20px;
    display: block;
    margin-top: 10px;
}

.cookieConsentContainer .cookieDesc a {
    font-family: OpenSans, arial, sans-serif;
    color: #fff;
    text-decoration: underline;
}

.cookieConsentContainer .cookieButton a {
    display: inline-block;
    font-family: OpenSans, arial, sans-serif;
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    margin-top: 14px;
    background: #000;
    box-sizing: border-box;
    padding: 15px 24px;
    text-align: center;
    transition: background 0.3s;
}

.cookieConsentContainer .cookieButton a:hover {
    cursor: pointer;
    background: #3e9b67;
}

@media (max-width: 980px) {
    .cookieConsentContainer {
        bottom: 0 !important;
        left: 0 !important;
        width: 100% !important;
    }
}


/*end: Cookies*/


/*Nav*/

header {
    z-index: 999 !important;
}

#FaixaNav {
    width: 100vw;
    height: 8px;
    background-color: var(--corVariacao1);
    position: fixed;
    z-index: 999;
}

nav {
    height: 80px !important;
}

.navbar {
    transition: all 0.4s;
    background-color: var(--corPrincipal) !important;
    margin-top: 8px !important;
}

.navbar .nav-link {
    font-family: "Open Sans", sans-serif;
    font-weight: 700;
    font-display: swap;
    color: var(--corTitle);
    padding: 10px 20px !important;
    font-size: 0.9rem !important;
}

.shadow {
    box-shadow: 0 10px 30px 0 rgba(67, 80, 98, 0.24), 0 2px 4px 0 rgba(67, 80, 98, 0.1) !important;
}

.navbar .nav-link:hover {
    color: var(--corHover) !important;
    background-color: var(--corBeje);
}

.navbar-toggler {
    outline: none !important;
    color: var(--corVariacao1) !important;
    transition: filter 0.2s;
    margin-right: 0% !important;
}

.navbar-toggler .fa {
    width: 50px !important;
    padding: 10% 5% !important;
    margin-top: 5%;
    margin-bottom: 5%;
    border-radius: 15%;
    border: 2px solid var(--white);
}

.navbar-toggler .fa:hover {
    border: 2px solid var(--white);
    filter: brightness(0.98);
}

.navbar-toggler:hover,
.navbar-toggler:focus {
    color: var(--white) !important;
}

.dropdown-menu {
    background-color: var(--corVariacao1) !important;
}

.dropdown-divider {
    margin-left: 5% !important;
    border-top: 2px solid var(--white) !important;
    width: 90% !important;
}

.dropdown-item {
    font-family: "Open Sans", sans-serif;
    color: var(--white) !important;
    text-align: left !important;
    font-size: 15px;
    font-weight: 700 !important;
}

.dropdown-item:hover,
.dropdown-item:focus {
    color: var(--corVariacao1) !important;
    background-color: var(--corBeje) !important;
    text-decoration: none;
}

a .dropdown-item {
    color: var(--corHover) !important;
}

.navbar.active {
    background: var(--blackOpacity);
    box-shadow: 1px 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar.active .nav-link {
    color: var(--corTitle);
}

.navbar.active .nav-link:hover,
.navbar.active .nav-link:focus {
    color: var(--white);
    text-decoration: none;
}

.navbar.active .navbar-brand {
    color: #555;
}

.logoNav {
    height: auto;
    width: 350px;
    margin-left: auto;
    margin-right: auto;
}

.fas,
.fa-chevron-down {
    color: var(--corVariacao1) !important;
    font-size: 14px;
}


/*Icone do dropdown nav (mudar)*/

.dropdown-toggle::after {
    border: none !important;
    /* font-size: 14px; */
    color: var(--corVariacao1) !important;
    padding-left: 5px;
    font: normal normal normal 14px FontAwesome;
    content: "\f078" !important;
    vertical-align: 0 !important;
}

li.nav-item.show a.dropdown-toggle::after {
    content: "\f077" !important;
}


/* //Icone do dropdown nav (mudar)*/


/*Fim NavBar*/


/*Banner*/

#banner {
    background: url("../images/Banner.png") no-repeat center center fixed;
    /* height: 800px!important;     */
    height: 675px;
}


/*Botões*/

.btn {
    border-radius: 50px !important;
    font-family: "Open Sans", sans-serif !important;
    font-display: swap;
    font-weight: 800 !important;
    font-size: 0.8rem !important;
    text-align: center !important;
    padding-left: 20px !important;
    padding-right: 20px !important;
}


/* .btn-success {
    border: solid 2px var(--corVariacao1) !important;
    color: var(--white) !important;
}

.btn-success:hover {
    border: solid 2px var(--corVariacao1) !important;
    background-color: transparent !important;
    color: var(--corVariacao1) !important;
}

.btn-outline-success {
    border: solid 2px var(--corVariacao1) !important;
    background-color: transparent !important;
    color: var(--corVariacao1) !important;
}

.btn-outline-success:hover {
    border: solid 2px var(--corVariacao1) !important;
    background-color: var(--corVariacao1) !important;
    color: var(--white) !important;
} */

.btn-form {
    border: solid 2px var(--corVariacao1) !important;
    background-color: var(--corVariacao1) !important;
    color: var(--white) !important;
    border-radius: 10px !important;
    width: 200px;
}

.btn-form:hover {
    background-color: var(--white) !important;
    color: var(--corVariacao1) !important;
}

.botao-prod {
    border: solid 2px var(--corVariacao1) !important;
    background-color: var(--corVariacao1) !important;
    color: var(--white) !important;
    border-radius: 10px !important;
    width: 200px;
    text-align: center;
    display: flex;
    justify-content: center;
}

.botao-prod:hover {
    background-color: var(--white) !important;
    color: var(--corVariacao1) !important;
}

.botao-blog {
    border: solid 2px var(--corVariacao1) !important;
    background-color: var(--corVariacao1) !important;
    color: var(--white) !important;
    border-radius: 10px !important;
    width: 200px;
    text-align: center;
    display: flex;
    justify-content: center;
}

.botao-blog:hover {
    background-color: var(--white) !important;
    color: var(--corVariacao1) !important;
}

.botao-fale-conosco {
    font-size: 16px !important;
    border: solid 2px var(--corVariacao1) !important;
    background-color: var(--corVariacao1) !important;
    color: var(--white) !important;
    border-radius: 10px !important;
    width: 400px;
    padding: 15px !important;
    text-align: center;
    display: flex;
    justify-content: center;
}

.botao-fale-conosco:hover {
    background-color: var(--white) !important;
    color: var(--corVariacao1) !important;
}

.btn-form-cta {
    border: solid 2px var(--corVariacao1) !important;
    background-color: var(--corVariacao1) !important;
    color: var(--white) !important;
    border-radius: 10px !important;
    width: 100%;
}

.btn-form-cta:hover {
    background-color: var(--white) !important;
    color: var(--corVariacao1) !important;
}

.btn:focus,
.btn.focus {
    outline: 1;
    box-shadow: none !important;
}


/*Fim Botões*/

#banner {
    z-index: 1;
}

.layer {
    background-color: rgba(248, 247, 216, 0.3);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.align-vertical {
    display: flex;
    vertical-align: middle;
    margin-top: 12px;
    align-items: center;
}

.site-header {
    padding: 24px 0;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1;
}

.header-links {
    display: inline-flex;
}

.has-animations.is-loaded .hero::before,
.has-animations.is-loaded .hero::after {
    -webkit-animation: heroFadeIn 0.6s ease forwards 0.45s;
    animation: heroFadeIn 0.6s ease forwards 0.45s;
}

.has-animations.is-loaded .site-header,
.has-animations.is-loaded .hero-particles-container,
.has-animations.is-loaded .hero .mockup-bg {
    -webkit-animation: heroFadeIn 0.6s ease forwards 0.45s;
    animation: heroFadeIn 0.6s ease forwards 0.45s;
}

.has-animations.is-loaded .hero-title {
    -webkit-animation: heroContent 0.6s cubic-bezier(0.215, 0.61, 0.355, 1) forwards 0.15s;
    animation: heroContent 0.6s cubic-bezier(0.215, 0.61, 0.355, 1) forwards 0.15s;
}

.has-animations.is-loaded .hero-paragraph {
    -webkit-animation: heroContent 0.6s cubic-bezier(0.215, 0.61, 0.355, 1) forwards 0.3s;
    animation: heroContent 0.6s cubic-bezier(0.215, 0.61, 0.355, 1) forwards 0.3s;
}

.has-animations.is-loaded .hero-cta {
    -webkit-animation: heroContent 0.6s cubic-bezier(0.215, 0.61, 0.355, 1) forwards 0.45s;
    animation: heroContent 0.6s cubic-bezier(0.215, 0.61, 0.355, 1) forwards 0.45s;
}

.has-animations.is-loaded .hero .device-mockup {
    -webkit-animation: heroMockup 0.6s ease forwards 0.6s;
    animation: heroMockup 0.6s ease forwards 0.6s;
}

@-webkit-keyframes heroBg {
    from {
        -webkit-transform: scaleY(0) scaleX(1.2) skewY(30deg);
        transform: scaleY(0) scaleX(1.2) skewY(30deg);
        opacity: 1;
    }
    to {
        -webkit-transform: scaleY(1) scaleX(1) skewY(0);
        transform: scaleY(1) scaleX(1) skewY(0);
        opacity: 1;
    }
}

@keyframes heroBg {
    from {
        -webkit-transform: scaleY(0) scaleX(1.2) skewY(30deg);
        transform: scaleY(0) scaleX(1.2) skewY(30deg);
        opacity: 1;
    }
    to {
        -webkit-transform: scaleY(1) scaleX(1) skewY(0);
        transform: scaleY(1) scaleX(1) skewY(0);
        opacity: 1;
    }
}

@-webkit-keyframes heroContent {
    from {
        -webkit-transform: translateY(40px) skewY(2deg);
        transform: translateY(40px) skewY(2deg);
        opacity: 0;
    }
    to {
        -webkit-transform: translateY(0) skewY(0);
        transform: translateY(0) skewY(0);
        opacity: 1;
    }
}

@keyframes heroContent {
    from {
        -webkit-transform: translateY(40px) skewY(2deg);
        transform: translateY(40px) skewY(2deg);
        opacity: 0;
    }
    to {
        -webkit-transform: translateY(0) skewY(0);
        transform: translateY(0) skewY(0);
        opacity: 1;
    }
}

@-webkit-keyframes heroMockup {
    from {
        -webkit-transform: translateY(80px);
        transform: translateY(80px);
        opacity: 0;
    }
    to {
        -webkit-transform: translateY(0);
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes heroMockup {
    from {
        -webkit-transform: translateY(80px);
        transform: translateY(80px);
        opacity: 0;
    }
    to {
        -webkit-transform: translateY(0);
        transform: translateY(0);
        opacity: 1;
    }
}

@-webkit-keyframes heroFadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes heroFadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.is-boxed {
    background: #fff;
}

.body-wrap {
    background: #fff;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

main {
    flex: 1 0 auto;
}


/* Quem somos */

.texto-sobre {
    padding: 20px 200px;
    color: var(--white);
}

.texto-sobre p {
    font-family: "Open Sans", sans-serif;
    font-weight: 500 !important;
    padding: 10px 0 0 0;
}

.quemsomos {
    background-color: var(--corVariacao1);
}

.grid div img {
    width: 100%;
    padding: 0;
    margin: 0;
}

.grid {
    display: grid;
    /* grid-template-columns: repeat(1fr, , 1fr)); */
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(3, 1fr);
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    /* justify-content: stretch!importa; */
}

.div1 {
    grid-area: 1 / 1 / 2 / 2;
}

.div2 {
    grid-area: 1 / 2 / 2 / 3;
}

.div3 {
    grid-area: 1 / 3 / 2 / 4;
}

.div4 {
    grid-area: 2 / 1 / 3 / 2;
}

.div5 {
    grid-area: 2 / 2 / 3 / 3;
}

.div6 {
    grid-area: 2 / 3 / 3 / 4;
}

.div7 {
    grid-area: 3 / 1 / 4 / 2;
}

.div8 {
    grid-area: 3 / 2 / 3 / 3;
}

.div9 {
    grid-area: 3 / 3 / 4 / 4;
}

.text-quem-somos {
    position: absolute;
    color: var(--textoBlog);
    text-align: center;
    top: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
}


/* Produtos */

#produtos {
    background-color: var(--corBeje);
}

#produtos h1 {
    font-size: 35px;
}

#produtos p {
    font-weight: 700;
    font-size: 20px;
    text-transform: none;
}

#produtos h5 {
    font-weight: bolder;
    font-size: 25px;
    text-transform: uppercase;
}

#produtos .lead {
    font-size: 1.25rem;
    font-weight: 500 !important;
    color: var(--corVariacao1) !important;
}

.card-img-overlay {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    /* padding: 1.35rem; */
    border-radius: 15px !important;
}


/* .card-produtos {
    background-image: url(/dist/images/blog1.png);
    background-position: cover;
} */


/*Parceiros*/

.carousel {
    width: 500px;
    margin: 2em auto;
}

.slick-next:before,
.slick-prev:before {
    font-family: slick;
    font-size: 20px;
    line-height: 1;
    opacity: 0.75;
    color: var(--corVariacao1) !important;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}


/* .slick-next {
    right: 5px!important;
}

.slick-prev {
    right: 5px!important;
} */


/* Blog */

#blog {
    background-color: var(--cinzaclaro);
}

#blog p {
    color: var(--corTexto) !important;
}

.card {
    /* position: relative;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    min-width: 0;
    word-wrap: break-word;
    background-color: #fff;
    background-clip: border-box; */
    border: none !important;
    border-radius: 15px !important;
    box-shadow: 0 0 10px 0 rgba(100, 100, 100, 0.26);
}

#blog .lead {
    font-size: 1.25rem;
    font-weight: 500 !important;
    color: var(--corVariacao1) !important;
}

#blog h1 {
    color: var(--corTitle) !important;
}


/* CTA */

.form-input-cta {
    border-radius: 10px !important;
}

.box-input {
    background-color: var(--corBeje) !important;
    width: 100% !important;
    height: 100% !important;
    border-radius: 10px !important;
    margin-top: 12px;
    /* margin-bottom: 30px; */
    justify-content: center;
    display: flex;
    position: absolute;
    z-index: 800;
}

.block-white {
    background-color: #ffffff;
    border-radius: 5px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0px 10px;
    width: 80%;
}

.far .fa-envelope {
    position: absolute !important;
    pointer-events: none;
    padding-left: 900px !important;
}

.left-inner-addon {
    color: var(--corVariacao1);
    padding: 10px 10px;
}


/* .fas .fa-arrow-right i {
    width: 30px!important;
} */


/* mapa e formulario */

#formulario {
    background-color: var(--corBeje) !important;
    padding-bottom: 50px;
    padding-top: 50px;
}

.mapa {
    overflow: hidden;
    padding-bottom: 56.25%;
    position: relative;
    height: 0;
}

.mapa iframe {
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    position: absolute;
}

.box {
    background-color: var(--cinzaclaro);
    width: 80%;
    height: 80%;
    border-radius: 10px;
    padding-top: 30px;
    margin-left: 12%;
    padding-bottom: 30px;
    justify-content: center;
    display: flex;
    box-shadow: 0 0 10px 0 rgba(100, 100, 100, 0.26);
}

#title-form h5 {
    color: var(--corVariacao1) !important;
}

.form-control {
    font-size: 1rem;
    line-height: 1.5;
    color: #495057;
    background-color: #fff;
    background-clip: padding-box;
    border: none !important;
    border-radius: 10px !important;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.btn-outline-primary {
    color: var(--corVariacao1) !important;
    border-color: var(--corVariacao1) !important;
}


/*Rodapé*/

.footer {
    position: relative;
    margin-top: 0px;
    padding-top: 0px;
    background: var(--corPrincipal);
}

.footer-copyright {
    padding: 20px;
    display: flex;
    justify-content: center;
    align-content: center;
}

.footer .footer-contact,
.footer .footer-link,
.footer {
    position: relative;
    margin-bottom: 0px;
    color: var(--corTexto);
}

.footer .footer-contact h2,
.footer .footer-link h2,
.footer h2 {
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--corVariacao1) !important;
}

.footer .footer-link a {
    display: block;
    margin-bottom: 10px;
    color: var(--corTexto);
    transition: 0.3s;
    font-family: "Open Sans", sans-serif !important;
    font-display: swap;
    font-weight: bolder;
    text-decoration: none;
}

.footer .footer-link a::before {
    position: relative;
    /* content: "\f105";
    font-family: "Font Awesome 5 Free"; */
    font-weight: 900;
    margin-right: 10px;
}

.footer .footer-link a:hover {
    color: var(--corHover);
    letter-spacing: 1px;
}


/* .footer .footer-contact p i {
    width: 25px;
} */

.footer .footer-social {
    position: relative;
    margin-top: 20px;
    display: flex;
}

.footer .footer-social a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #202c45;
    background: transparent;
    border: 0.7px solid var(--corTexto);
    border-radius: 40px;
    margin-right: 5px;
    transition: 0.5s;
    font-size: 20px !important;
}

.footer .footer-social a:last-child {
    margin: 0;
}

.footer .footer-social a:hover {
    color: var(--corVariacao1);
    background-color: transparent !important;
    border: 0.6px solid var(--corVariacao1);
    width: 50px !important;
    height: 50px !important;
    font-size: 25px !important;
}

.footer .copyright {
    text-align: center;
    /* padding-top: 15px; */
    padding-bottom: 10px;
    color: var(--corTexto);
    transition: 0.3s;
    font-family: "Open Sans", sans-serif !important;
    font-weight: bolder;
    border-top: 0.1em solid #c7c7c9 !important;
}

.footer .copyright p {
    margin: 0;
    color: var(--corTexto);
}

.footer .copyright p a {
    color: var(--corTexto);
    font-weight: 700;
    letter-spacing: 1px;
}

.footer .copyright p a:hover {
    color: #ffffff;
}

.logotipo img {
    width: 80%;
    vertical-align: middle;
}

.logotipo {
    width: 100%;
    text-align: center;
    font-size: 1.7em;
}


/*barra de cookies*/

.adopt-logo.svelte-oa5gdx span.svelte-oa5gdx {
    display: none;
}


/* Página de Pordutos */

.breadcrumb {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    padding: 0.75rem 1rem;
    margin-bottom: 1rem;
    list-style: none;
    background-color: white !important;
    border-radius: 0.25rem;
}

.breadcrumb-item a {
    color: var(--corVariacao1) !important;
}

.breadcrumb-item.active {
    color: var(--corVariacao1) !important;
}

.breadcrumb-item+.breadcrumb-item::before {
    padding-right: 3.5rem !important;
    color: var(--corVariacao1) !important;
    content: "/";
    padding-right: 0.2rem !important;
}


/**Animação Collapse seta esquerda**/

.arrow_box_right {
    position: relative;
    background: var(--white);
    border: 0px solid var(--gray);
    border-left: none !important;
    box-shadow: 0 0 10px 0 rgba(100, 100, 100, 0.26);
    border-right: none !important;
}

.arrow_box_right:after,
.arrow_box_right:before {
    bottom: 100%;
    left: 20%;
    border: solid transparent;
    content: " ";
    height: 0;
    width: 0;
    position: absolute;
    pointer-events: none;
}

.arrow_box_right:after {
    border-color: rgba(136, 183, 213, 0);
    border-bottom-color: rgb(52, 58, 64, 0.1);
    box-shadow: 0 0 10px 0 rgba(100, 100, 100, 0.26);
    border-width: 30px;
    margin-left: -30px;
}

.arrow_box_right:before {
    border-color: rgba(194, 225, 245, 0);
    border-bottom-color: transparent;
    border-width: 36px;
    margin-left: -36px;
}


/**Animação Collapse seta centro**/

.arrow_box_center {
    position: relative;
    background: var(--white);
    border: 0px solid var(--gray);
    border-left: none !important;
    box-shadow: 0 0 10px 0 rgba(100, 100, 100, 0.26);
    border-right: none !important;
}

.arrow_box_center:after,
.arrow_box_center:before {
    bottom: 100%;
    left: 50%;
    border: solid transparent;
    content: " ";
    height: 0;
    width: 0;
    position: absolute;
    pointer-events: none;
}

.arrow_box_center:after {
    border-color: rgba(136, 183, 213, 0);
    border-bottom-color: rgb(52, 58, 64, 0.1);
    box-shadow: 0 0 10px 0 rgba(100, 100, 100, 0.26);
    border-width: 30px;
    margin-left: -30px;
}

.arrow_box_center:before {
    border-color: rgba(194, 225, 245, 0);
    border-bottom-color: transparent;
    border-width: 36px;
    margin-left: -36px;
}


/**Animação Collapse seta direita**/

.arrow_box_left {
    position: relative;
    background: var(--white);
    border: 0px solid var(--gray);
    border-left: none !important;
    box-shadow: 0 0 10px 0 rgba(100, 100, 100, 0.26);
    border-right: none !important;
}

.arrow_box_left:after,
.arrow_box_left:before {
    bottom: 100%;
    left: 80%;
    border: solid transparent;
    content: " ";
    height: 0;
    width: 0;
    position: absolute;
    pointer-events: none;
}

.arrow_box_left:after {
    border-color: rgba(136, 183, 213, 0);
    border-bottom-color: rgb(52, 58, 64, 0.1);
    box-shadow: 0 0 10px 0 rgba(100, 100, 100, 0.26);
    border-width: 30px;
    margin-left: -30px;
}

.arrow_box_left:before {
    border-color: rgba(194, 225, 245, 0);
    border-bottom-color: transparent;
    border-width: 36px;
    margin-left: -36px;
}


/* Blog Pagina */

.img-fluid {
    border-radius: 8px;
}

#posts {
    background-color: var(--cinzaclaro);
}


/*Posts e política de privacidade*/

#posts ul li {
    font-family: "Open Sans", sans-serif !important;
    font-display: swap;
    font-weight: 300 !important;
}


/* 

.img-card-blog-p {
    margin: 20px;
    display: flex;
    align-items: flex-end;
} */

.img-card-blog-g {
    padding: 10px 20px 20px 20px;
}

.text-card-blog-g {
    padding-top: 20px;
    padding-left: 20px;
    font-family: "Open Sans", sans-serif !important;
    font-weight: 700 !important;
}

.imagem-post {
    grid-area: imagem-post;
}

.valvulas {
    grid-area: valvulas;
}

.conexoes {
    grid-area: conexoes;
}

.filtros {
    grid-area: filtros;
}

.newsletter {
    grid-area: newsletter;
}

.post1 {
    grid-area: post1;
}

.post2 {
    grid-area: post2;
}

p.a {
    text-align-last: right !important;
}


/* Blog Publicacao */


/* .img-publi img {
    border-radius: 15px 15px 15px 15px!important;
} */

.page-link {
    background-color: transparent!important;
}

#banner-blog {
    width: 100vw;
    height: 55vh;
    background-color: var(--corVariacao1);
    vertical-align: 0 !important;
}

#banner-blog h2 {
    color: white !important;
    position: relative;
    padding-top: 13% !important;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: "Open Sans", sans-serif !important;
    font-size: 35px;
    font-weight: bolder;
}

#banner-blog p {
    color: white !important;
    position: relative;
    font-size: 1.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: "Open Sans", sans-serif !important;
    font-display: swap;
    font-size: 25px;
    font-weight: regular;
}

.bread-laranja a {
    color: var(--white) !important;
}

#publicacao {
    background-color: var(--cinzaclaro);
}

.capitalize {
    text-transform: capitalize !important;
}

.uppercase {
    text-transform: uppercase !important;
}


/*Responsivo*/

@media screen and (min-width: 1280px) {
    .img-banner-responsivo {
        display: none !important;
    }
}

@media screen and (min-width: 1800px) {
    p,
    .card-text,
    .footer-copyright,
    a,
    .dropdown-item {
        font-size: 20px;
    }
    h3 {
        font-size: 3rem !important;
    }
    .navbar .nav-link,
    .btn {
        font-size: 20px !important;
    }
    .img-banner-responsivo {
        display: none;
    }
}

@media (max-width: 992px) {
    .card-content:after,
    .card-content2:after {
        bottom: -20px;
        left: 0;
        transform: rotate(0deg);
    }
    nav {
        height: 100px !important;
    }
    .navbar-collapse {
        background: var(--corVariacao1) !important;
        text-align: center;
        /* padding: 10px 40px 40px 40px !important; */
        margin-top: 7px !important;
        margin-left: -20px !important;
        margin-right: -20px !important;
        box-shadow: 1px 2px 0px rgba(0, 0, 0, 0.1);
    }
    .navbar .nav-link {
        color: var(--white) !important;
    }
    .nav-link:hover {
        color: var(--corBeje) !important;
        width: 100% !important;
    }
    .dropdown-menu {
        border: none !important;
    }
    .dropdown-item {
        text-align: center !important;
    }
    .dropdown-divider {
        border-top: none !important;
    }
    #banner-blog h2 {
        padding-top: 20% !important;
    }
    /*quem somos*/
    .texto-sobre {
        padding: 100px 200px;
        color: var(--white);
    }
}

@media only screen and (min-width: 769px) {
    .collapse-lg-none {
        display: none;
    }
}

@media only screen and (max-width: 768px) {
    .card-deck {
        display: block !important;
        width: 100% !important;
    }
    .collapse_md_none {
        display: none !important;
    }
    #banner-blog h2 {
        padding-top: 25% !important;
    }
    #banner-blog {
        height: 40vh;
    }
}

@media (max-width: 767px) {
    #banner p {
        font-size: 0.8rem;
    }
    .block-white {
        width: 60%;
    }
    .texto-sobre {
        padding: 100px 150px;
        color: var(--white);
    }
}

@media (min-width: 641px) {
    .hero {
        padding-top: 160px;
    }
    .hero::before,
    .hero::after {
        left: calc(50% - 720px);
        width: 1440px;
    }
    .hero::before {
        height: 318px;
        background-size: 1440px 318px;
    }
    .hero::after {
        height: 347px;
        background-size: 1440px 347px;
    }
    .hero-copy {
        margin-bottom: 88px;
    }
    .hero-paragraph,
    .hero-title {
        padding-left: 100px;
        padding-right: 72px;
        color: var(--white) !important;
    }
    .hero-title {
        padding-top: 35%;
    }
    .site-footer::before {
        top: -152px;
        left: calc(50% - 720px);
        width: 1440px;
        height: 582px;
        background-size: 1440px 582px;
    }
    .footer-copyright {
        flex: 50%;
    }
    .footer-copyright {
        justify-content: center;
    }
    .img-mecanismo,
    .img-formalizacao {
        width: 400px;
        height: 400px;
    }
    .img-banner {
        display: none !important;
    }
}

@media (max-width: 641px) {
    .hero-paragraph,
    .hero-title {
        color: var(--white) !important;
    }
    .text-banner {
        text-align: center;
    }
    .text-banner p {
        margin-top: 10%;
    }
    #banner p {
        font-size: 1rem;
        padding: 5px 10px;
    }
    .img-banner {
        display: none !important;
    }
    /*quem somos*/
    .texto-sobre {
        padding: 100px 60px;
        color: var(--white);
    }
}

@media (max-width: 596px) {
    .layerBlack {
        background-color: rgba(0, 0, 0, 0);
    }
    .align-vertical {
        margin-top: 5px;
    }
    .block-white {
        width: 100%;
        margin-bottom: 10px;
    }
    #banner-blog h2 {
        padding-top: 30% !important;
        font-size: 25px !important;
    }
}

@media only screen and (max-width: 576px) {
    .collapse_md_none {
        display: none !important;
    }
    #banner {
        background: url("../images/Banner_Mobile.png") no-repeat center center fixed;
        height: 675px !important;
        /* height: 675px; */
    }
    .mask-custom {
        backdrop-filter: blur(1px);
        background-color: rgba(0, 0, 0, 0.2);
    }
    .center {
        margin: 0 30px!important;
    }
}

@media (max-width: 450px) {
    .logoNav {
        height: auto;
        width: 200px;
        margin-left: auto;
        margin-right: auto;
    }
    nav {
        height: 60px !important;
    }
    #banner {
        background: url("../images/Banner_Mobile2.png") no-repeat center center fixed;
        height: 800px !important;
        /* height: 675px; */
    }
    .hero-title {
        font-size: 1.6rem;
        padding-top: 50% !important;
    }
    .hero-paragraph,
    .hero-title {
        margin-left: 25px;
    }
    #produtos h1 {
        font-size: 25px;
    }
    h1 {
        font-size: 1.7em !important;
    }
    h2 {
        font-size: 20px !important;
    }
    h3 {
        font-size: 18px !important;
    }
    h5 {
        font-size: 18px !important;
    }
    #banner-blog h2 {
        padding-top: 40% !important;
        font-size: 20px!important;
    }
    #banner-blog p {
        font-size: 18px;
    }
    .box {
        width: 95%;
        height: 95%;
        padding-top: 10px;
        margin-left: 2.5%;
    }
    /*quem somos*/
    .texto-sobre img {
        width: 80%;
        height: auto;
    }
    /*Rodapé*/
    .footer h2 {
        font-size: 17px !important;
    }
    .footer-copyright {
        text-align: center;
        margin-top: 20px;
    }
}