@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300..700;1,300..700&family=Manrope:wght@200..800&family=Sora:wght@100..800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Infant:ital,wght@0,300..700;1,300..700&display=swap');

/*   font-family: "Manrope", sans-serif;
 font-family: "Cormorant Garamond", serif;
 font-family: "Sora", sans-serif; */

:root {
    --main-color: #ff553b;
    --second-color: #020C13;
    --text-color: #F6F5F2;
    --texto-extra: #797979;
    --fundo: #EEEEEE;
    --fundo-second: #EDEDED;
    --font-family: "Manrope", sans-serif;
}

body {
    color: var(--text-color);
    font: 14px/1.5em var(--font-family);
    letter-spacing: normal;
}

/* Scroll suave para toda a página */
html {
    scroll-behavior: smooth;
}

a:not([href]):hover {
    cursor: pointer;
}

p {
    color: #625f5f;
}

.btn-default {
    padding: 0.5em 3em;
    display: inline-block;
    text-align: center;
    font-weight: 400;
    background-color: var(--second-color);
    border: 2px solid var(--second-color);
    color: #fff;
    border-radius: 30px;
    /* text-transform: uppercase; */
    font-size: 16px;
}

.btn-default.white {
    background-color: #fff;
    color: var(--main-color);
    border-color: var(--main-color);
}

.btn-default.white:hover {
    background-color: var(--second-color);
}

.btn-default:hover {
    background-color: rgba(6, 69, 51, 0.6);
    color: #fff;
}

ul {
    padding: 0;
    margin: 0;
}

ul li {
    list-style: none;
}

a {
    color: #00a9c6;
    -moz-transition: all 0.3s;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}

button {
    -moz-transition: all 0.3s;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}

a,
a:hover {
    text-decoration: none;
}

a:hover {
    color: #6d6f6a;
}

img {
    max-width: 100%;
}

h1,
h2,
h3,
h4 {
    margin: 0;
    line-height: 1em;
}

h1 {
    font: 14px/2em var(--font-family);
    margin: 0.25em 0;
    text-transform: uppercase;
}

h2 {
    font: 14px/2em var(--font-family);
    margin-bottom: 1.5em;
}

h3 {
    font: 14px/2em var(--font-family);
    margin: 2em 0 1em;
}

h4 {
    font: 14px/2em var(--font-family);
    margin-bottom: 1em;
}

h4 i {
    margin-right: 0.5em;
}

p {
    font-size: 14px;
    line-height: 1.7em;
    margin-bottom: 0.7em;
}

.mobile-none {
    display: block !important;
}

.mobile-only {
    display: none !important;
}

@media (min-width: 1904px) {
    .container {
        max-width: 1185px !important;
    }
}

small.pretitle {

    color: var(--main-color);
    font-size: 12px;
    font-weight: bold;
    letter-spacing: 11%;
    display: block;
    line-height: 23px;
    margin-bottom: 25px;
    text-transform: uppercase;
}

h2.heading {
    color: var(--second-color);
    font-family: "Cormorant Garamond", serif;
    font-size: 40px;
    font-weight: bold;
    display: block;
    margin-bottom: 30px;
    text-align: left;
    position: relative;
    padding-bottom: 0em;
    line-height: 40px;
    letter-spacing: 0%;
}


.spacer {
    padding: 4em 0;
}

.spacer.especial {
    padding: 3em 0;
}

#topo .svg-inline--fa {
    margin-right: 5px;
}

.default-button {
    line-height: normal;
    display: inline-block;
    border-radius: 999px;
    padding: 0;
    color: var(--fundo);
    background: rgba(0, 12, 32, 0.74);

    font-weight: normal;
    font-size: 13px;
    text-transform: none;
    text-align: center;
    transition: .5s cubic-bezier(.19, 1, .22, 1);
}

.default-button.extra {
    background: transparent;
    color: var(--second-color);

    border-top: 0;
    border-left: 0;
    font-size: 14px;
    border-radius: 0;
    border-right: 0;
    font-weight: bold;
    text-align: left;
    padding: 10px 0;
}

.default-button.extra b,
.default-button.extra strong {

    font-weight: bold;
    color: var(--third-color);
}

#metodo .default-button.extra b,
#metodo .default-button.extra strong {
    margin-left: 12px;
}

.default-button.extra:hover {
    background-color: transparent;
    color: var(--second-color);
    box-shadow: none;
}

.logo-principal a {
    display: inline-block;
}



.default-button span {
    margin-left: 20px;
    font-size: 18px;
    color: var(--main-color);
    font-weight: bold;
}

.default-button:hover span {}

.default-button.especial {
    background-color: transparent;
    border-color: var(--third-color);
    color: #000000;
    text-transform: uppercase;
    font-weight: 600;
    line-height: 26px;
    font-size: 13px;
    letter-spacing: 2%;
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.default-button.especial .arrow {
    width: 40px;
    /* comprimento da seta */
    height: 1px;
    background: var(--main-color);
    position: relative;
}

.default-button.especial .arrow::after {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    width: 5px;
    height: 5px;
    border-top: 1px solid var(--main-color);
    border-right: 1px solid var(--main-color);
    transform: translateY(-50%) rotate(45deg);
}

.default-button:hover {}



@keyframes gradientRotate {
    0% {
        border-image-source: linear-gradient(243.37deg, #2F3A45 0%, #C89B5E 100%);
    }

    25% {
        border-image-source: linear-gradient(153.37deg, #2F3A45 0%, #C89B5E 100%);
    }

    50% {
        border-image-source: linear-gradient(63.37deg, #2F3A45 0%, #C89B5E 100%);
    }

    75% {
        border-image-source: linear-gradient(333.37deg, #2F3A45 0%, #C89B5E 100%);
    }

    100% {
        border-image-source: linear-gradient(243.37deg, #2F3A45 0%, #C89B5E 100%);
    }
}

#home .absolute-center {
    position: absolute;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
    text-align: left;
    width: 100%;
}

#home .absolute-center .all {}

#home .absolute-center h1 {
    text-transform: none;
    text-align: left;
    color: var(--text-color);
    display: block;
    font-weight: normal;
    font-size: 55px;
    line-height: 64px;
    letter-spacing: 0%;
    margin: 0;
    position: relative;
    padding-bottom: 30px;
}

#home .absolute-center h1::before {
    content: none;
}

#home .absolute-center h1 span {
    color: var(--main-color);

    display: block;
}

#home .absolute-center .center {}

#home .absolute-center .bottom h2 {
    font-size: 14px;
    color: #fff;
    font-weight: normal;
    padding: .7em 2em;
    border: solid 1px #fff;
    line-height: normal;
    border-radius: 4px;
    display: inline;
}

#home .absolute-center ul {
    display: flex;
    flex-direction: row;
    margin-bottom: 20px;
    justify-content: left;
    align-items: center;

}

#home .absolute-center ul li {
    color: var(--main-color);
    font-size: 12px;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 5%;
}

#home .absolute-center ul li.especial {
    color: var(--main-color);
    margin: 0 15px;
}


#home {
    position: relative;
}

#home .carousel-inner {
    height: 100%;
}

label {
    color: var(--text-color);
}

footer {
    background-color: var(--second-color);
    border-top: 1px solid rgba(242, 182, 44, 0.5);
}

footer ul li a {
    font-size: 14px;
    display: block;
    padding-left: 10px;
    /* margin-top: 10px; */
    color: #EEE8E2;
}

span.small {
    margin-bottom: 10px;
    display: block;
}

footer .lista-footer {
    padding: 1em 0;
    border-bottom: 1px solid rgba(248, 248, 246, 0.18);
}

footer .subtitle-f {
    display: block;
    color: rgba(246, 245, 242, 0.5);
    font-size: 12px;
    padding: 1em 0;
}

footer .assign {
    color: rgba(255, 255, 255, 0.59);
    font-size: 10px;
}

footer span.title-list {
    font-size: 11px;
    text-transform: uppercase;
    color: var(--main-color);
    font-weight: bold;
    margin-bottom: 15px;
    display: block;
    letter-spacing: 10%;
}

.alert-warning {
    margin-bottom: 0px;
}

.logo {
    display: flex;
    justify-content: center;
}

.default-btn {
    background: var(--second-color);
    color: #fff;
    padding: 1em 2em;
    border-radius: 30px;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}

.default-btn:hover {
    background-color: var(--main-color);
    color: #fff;
}

.absolute-center-home {
    position: absolute;
    top: 65%;
    left: 50%;
    margin-right: -50%;
    transform: translate(-50%, -50%);
    width: 100%;
    text-align: start;
    display: flex;
    text-align: center;
    flex-direction: column;
    justify-content: flex-start;
}

.absolute-center-home h3 {
    font-weight: 700;
    color: var(--text-color-secondary);
    margin-top: 0;
    margin-bottom: 10px;
    text-align: start;
    text-transform: uppercase;
}

.absolute-center-home .row {
    display: flex;
    align-items: center;
}

.align-wpp {
    height: 100%;
    align-items: center;
}

.whatsappme {
    background: #25d366;
    position: fixed;
    right: 10px;
    bottom: 10px;
    color: #fff;
    padding: 15px;
    border-radius: 100%;
}

.whatsappme a {
    color: #fff;
}

.no-padding {
    padding: 0;
}

.form-control {
    border-radius: 3px;
    padding: 0.5em 0.75rem;
}

.align-center {
    align-items: center;
}

.absolute-footer {
    position: fixed;
    right: 10px;
    bottom: 20px;
    z-index: 2;
}

.has-sub {
    position: relative;
}

ul.sub-has {
    display: none;
    background: var(--main-color);
    position: absolute;
    left: 50%;
    border-radius: 0px 0px 12px 12px;
    padding: 7px 0px;
    margin-top: 0px;
    transform: translate(-50%, 0);
    border-top: 1px #fff solid;
}

.has-sub:hover ul.sub-has {
    display: block !important;
}

.coks-acepts {
    position: fixed;
    bottom: 15px;
    left: 15px;
    z-index: 1;
}

.coks-acepts .alert-warning {
    padding: 1rem 2rem;
    background-color: #fff;
}

.align-end {
    text-align: end;
}

.align-self-center {
    align-self: center;
}

.absolute-center-home {
    position: absolute;
    top: 55%;
    left: 50%;
    margin-right: -50%;
    transform: translate(-50%, -50%);
    width: 100%;
    text-align: center;
    display: flex;
    text-align: center;
    flex-direction: column;
    justify-content: center;
    z-index: 1;
}


.conteudo {
    padding-top: 7em;
    min-height: 90vh;
    padding-bottom: 4em;
}

.conteudo.serv {
    background-color: #F5F1EE;
}



.logo-top img {}

#home .absolute-center p {
    font-size: 14px;
    margin-top: 0;
    margin-bottom: 40px;
    text-align: left;
    font-weight: 500;
    line-height: 26px;
    color: var(--text-color);
}

#home .absolute-center p span {
    color: var(--main-color);
}

.assign a {
    color: #fff;
    font-size: 10px;
}

.justify-end {
    justify-self: right;
    justify-items: end;
}

.button-up {
    top: -80px;
    position: absolute;
}



.text-left {
    text-align: left;
}


footer img {
    max-width: 200px;
}

#typing {
    color: var(--main-color);
    font-weight: bold;
}

#typing::after {
    content: "|";
    margin-left: 3px;
    animation: blink 0.7s infinite;
}

@keyframes blink {
    0% {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

.img-destaque-banner {
    width: 100%;
    height: auto;
}

#app {
    position: relative;
}

header#topo {
    position: fixed;
    z-index: 3;
    width: 100%;
    padding: 1em 0;
    background: transparent;
    border-bottom: 0;

}



header#topo.interno {
    background-color: #000c20cf;
    border-bottom: 1px solid rgba(62, 44, 30, 0.04);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
}

header#topo.interno .menu ul li a {
    color: #fff;
}

header#topo.interno .menu ul li.especial.tel a {
    color: var(--second-color);
}

header#topo.interno .menu ul li.especial.tel a:hover {
    background-color: var(--main-color);
    color: #fff;
}

header#topo.interno .menu ul li.especial a:hover {
    background-color: #fff;
    color: var(--second-color);
}


header#topo .logo-principal .subtitle-logo {
    font-size: 16px;
    margin-left: 1em;
    color: #fff;
}

header#topo .logo-principal .subtitle-logo span {
    color: var(--main-color);
    font-weight: bold;
}

.container-fluid.especial {
    padding: 1em 3em;
}

.tags-banner {}

.tags-banner span {
    color: #fff;
    text-transform: uppercase;
    font-weight: 500;
    border: 1px solid var(--main-color);
    border-radius: 30px;
    padding: 0.5em 1em;
    margin: 0.5em;
}

#home .absolute-center h4 {
    color: #fff;
    font-size: 16px;
    font-weight: 500;
}

#home .buttons-banner {
    display: block;
}

.absolute-center-banner {
    position: absolute;
    bottom: 4%;
    z-index: 2;
    width: 1000px;
    max-width: 80%;
    place-self: center;
}

.search-container {
    position: relative;
    height: 45px;
    width: 45px;
    display: flex;
    align-items: center;
    transition: width 0.4s ease;
    overflow: hidden;
    background: var(--second-color);
    border-radius: 50px;
    border: 1px solid #1e2a28;
}

.search-container.active {
    width: 270px;
}

.search-container button {
    width: 45px;
    height: 45px;
    background: transparent;
    border: none;
    color: #fff;
    font-size: 18px;
    cursor: pointer;
    padding: 10px;
}

#search-input {
    width: 100%;
    height: 100%;
    padding: 0 15px;
    font-size: 15px;
    color: #fff;
    border: none;
    outline: none;
    background: transparent;
    opacity: 0;
    transform: translateX(-10px);
    transition:
        opacity 0.3s ease,
        transform 0.3s ease;
}

.search-container.active #search-input {
    opacity: 1;
    transform: translateX(0);
}

.menu-btn {
    margin-left: 1em;
}


.erro-404-container {
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background: var(--second-color);
}

.erro-404-box {
    text-align: center;
    max-width: 600px;
}

.erro-404-box h1 {
    font-size: 120px;
    font-weight: 800;
    color: var(--main-color);
    margin-bottom: 10px;
    text-shadow: 0 0 20px var(--main-color);
    margin-top: 0px;
    line-height: normal;
}

.erro-404-box h2 {
    font-size: 28px;
    color: #fff;
    margin-bottom: 20px;
}

.erro-404-box p {
    font-size: 16px;
    color: #d2d2d2;
    margin-bottom: 30px;
    line-height: 1.5;
}

.erro-404-box img {
    max-width: 100px;
    filter: brightness(100);
    margin-bottom: 1em;
}

.erro-404-box .default-button {
    justify-self: center;
}




header#topo.menu-fixo {
    padding: 0;
    background: rgba(0, 12, 32, 0.74);
    border-bottom: 1px solid rgba(62, 44, 30, 0.04);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);

}


header#topo.menu-fixo .logo-principal img {
    width: 100px;
}

header#topo.menu-fixo ul li a {
    font-size: 12px;
}



/* Botão flutuante */
.whatsapp-float {
    position: fixed;
    right: 20px;
    bottom: 20px;
    width: 55px;
    height: 55px;

    font-size: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 9999;
}

/* Painel */
.whatsapp-panel {
    position: fixed;
    right: 20px;
    bottom: 90px;
    width: 300px;
    background: var(--second-color);
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    display: none;
    flex-direction: column;
    z-index: 9999;
}

/* Header */
.whatsapp-header {
    background: var(--main-color);
    color: #fff;
    padding: 12px 15px;
    font-weight: 600;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: 8px 8px 0 0;
}

.whatsapp-header button {
    background: none;
    border: none;
    font-size: 22px;
    cursor: pointer;
}

/* Form */
.whatsapp-panel form {
    padding: 15px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.whatsapp-panel input,
.whatsapp-panel select {
    padding: 10px;
    border-radius: 6px;
    border: 1px solid #1e2a28;
    background: #2F3A45bf;
    color: #C89B5E;
}

.whatsapp-panel button[type="submit"] {
    background: var(--main-color);
    color: #fff;
    border: none;
    padding: 10px;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
}

.menu ul li {
    background: transparent;
    border: 0;
    place-content: center;
    padding: 0;
}

.menu ul li a {
    text-transform: uppercase;
    color: var(--text-color);
    font-size: 13px;
    line-height: 26px;
    letter-spacing: 1%;
    font-weight: 500;
    position: relative;
    margin: 0 1.2em;
}

.menu ul li a::after {
    content: '';

    position: absolute;

    left: 0;
    bottom: -8px;

    width: 100%;
    height: 1px;

    background: var(--main-color);

    transform: scaleX(0);

    transform-origin: left;

    transition: .6s cubic-bezier(.19, 1, .22, 1);
}

.menu ul li a:hover::after {
    transform: scaleX(1);
}

.menu ul li a.active::after {
    transform: scaleX(1);
}

/* .menu ul li a.active {
    color: #3E2C1E;
} */


.menu ul li a.dropdown-item {
    color: var(--main-color);
}

.logo-banner {
    margin: 0 auto;
    display: block;
    margin-bottom: 2em;
    max-width: 170px;
}

.menu-fixo .menu .dropdown-menu li {
    padding: 0;
}

.menu ul li.especial.tel {
    padding: 0 .5em;
    padding-left: 1em;

}

.menu ul li.especial.tel a {
    background-color: #fff;
    border: 1px solid var(--second-color);
    color: var(--second-color);
    padding: .8em 2em;
}

.menu ul li.especial.tel a:hover {
    background-color: var(--main-color);
    color: #fff;
    border-color: var(--main-color);
}

.menu ul li.especial {
    padding: 0 .5em;
}

.menu ul li.especial a {
    background: var(--main-color);
    letter-spacing: normal;
    padding: 0.8em 2.5em;
    color: #fff;
    border: 0;
    border-radius: 30px;
    font-weight: 400;
    font-size: 16px;
    margin: 0;
    text-align: center;
}

.menu ul li.especial a:hover {
    background-color: var(--second-color);
    color: #fff;
}









.default-button.saiba-mais {
    font-size: 15px;
    display: block;
    margin-bottom: 1em;
    background-color: var(--main-color);
    color: #fff;
}

.slick-prev:before,
.slick-next:before {
    color: var(--main-color);
}



span.saibamais {
    font-size: 15px;
    display: block;
    background-color: var(--main-color);
    color: #fff;
    text-align: center;
    border-radius: 0 0 10px 10px;
    padding: 0.5em 2em;
    font-weight: 500;
    margin: 0;
}



.slick-dots li.slick-active button:before {
    color: var(--main-color);
    background-color: var(--main-color);
    width: 30px;
}

.slick-dots li button:before {
    content: " ";
    background-color: #858585;
    width: 10px;
    height: 10px;
    border-radius: 30px;
}

.slick-dots li {
    width: 13px;
}

.slick-dots li.slick-active {
    width: 30px;
}




.default-button.green {
    background-color: #629338;
    color: #fff;
    float: left;
    margin-top: 0;
}

.default-button.green:hover {
    background-color: var(--main-color);
}

.g-stars {
    text-align: center;
}



/* Para o dropdown abrir no hover */
.dropdown:hover .dropdown-menu {
    display: block;
    margin-top: 0;
    POSITION: ABSOLUTE;
    RIGHT: 0;
    background-color: var(--main-color);

    /* Remove o espaçamento que pode causar gap */
}

.dropdown:hover .dropdown-menu a {
    color: var(--second-color);
    display: block;
    padding: .5em 1em;
}

.dropdown:hover .dropdown-menu a:hover {
    background-color: #020c1319;
}

/* Opcional: manter o dropdown visível enquanto o mouse está sobre ele */
.dropdown-menu:hover {
    display: block;
}

/* Ajuste para dispositivos móveis (opcional) - manter clique no mobile */
@media (max-width: 768px) {
    .dropdown:hover .dropdown-menu {
        display: none;
    }

    .dropdown.show .dropdown-menu {
        display: block;
    }
}

.dropdown-toggle {
    background-color: transparent;
    border: 0;
    color: var(--text-color);
}


p.subtitle {
    font-size: 16px;
    color: #6F6B66;
    line-height: 25px;
    font-weight: 400;
    display: block;
    margin-bottom: 50px;
}

p.subtitle.white {
    color: #fff;
}



#btnConcordarAceitar {
    background-color: var(--main-color);
}




.row-equal {
    display: flex;
    flex-wrap: wrap;
}

.row-equal>.individual a {
    display: flex;
}

.box {
    width: 100%;
}


span.tit {
    background: var(--main-color);
    letter-spacing: normal;
    border-radius: 30px;
    padding: .5em 2em;
    color: #fff;
    font-weight: 400;
    font-size: 12px;
    margin: 0;
    margin-bottom: 1em;
    display: inline-block;
    text-align: center;
}

#principal-cta {
    background-color: var(--second-color);
}

#principal-cta .text p {
    color: #fff;
    margin-bottom: 0;
}

#principal-cta h4 {
    font-size: 14px;
    text-transform: uppercase;
    color: #fff;
    font-weight: 400;
    text-align: center;
}

#principal-cta a {
    color: var(--main-color);
    font-weight: bold;
    font-size: 36px;
    display: block;
    text-align: center;
}

#principal-cta img {
    margin: 0 auto;
    display: block;
    width: 60px;
    margin-bottom: 1em;
}

#sobre-first {
    background-color: var(--fundo);
    background-image: url(../../images/icon-sobre-bg.png);
    background-repeat: no-repeat;
    background-position: center left 30px;
    position: relative;
}

#sobre-first h3 {
    position: relative;
    font-size: 15px;
    font-weight: normal;
    line-height: 180%;
    letter-spacing: 5%;
    padding-bottom: 25px;
    margin-bottom: 25px;
}

#sobre-first h3::before {
    content: '';
    display: block;
    width: 80px;
    height: 1px;
    position: absolute;
    background-color: rgba(161, 122, 118, 0.6);
    bottom: 0;
    left: 0;
}

#sobre-first p.sobre,
#sobre-second p.sobre {
    color: rgba(93, 76, 69, 0.88);
    font-weight: normal;
    line-height: 210%;
    letter-spacing: 5%;
    font-size: 16px;
}

#sobre-second {
    background-color: #fcfbfc;
}

#sobre-first span.tags {
    color: rgba(93, 76, 69, 0.45);
    font-size: 11px;
    font-weight: normal;
    line-height: 210%;
    letter-spacing: 1%;
    display: block;
    text-transform: uppercase;
    margin-top: 20px;
}

.padding-texto {
    margin-top: -8%;
}

h4.preheading {
    color: rgba(169, 111, 106, 0.6);
    text-transform: uppercase;
    font-weight: normal;
    font-size: 12px;
    line-height: 210%;
    letter-spacing: 1%;
    padding-top: 5em;
}



.default-button-texto {
    transition: .4s ease;
    position: relative;
    color: rgba(161, 122, 118, 0.72);
    text-transform: uppercase;
    line-height: 121%;
    letter-spacing: 18%;
    margin-top: 40px;
    display: inline-block;
    padding-bottom: 1em;
}

.default-button-texto:hover {
    letter-spacing: .22em;
}

.default-button-texto:before {
    content: '';
    display: block;
    transition: .4s ease;
    width: 30px;
    height: 1px;
    position: absolute;
    background-color: rgba(161, 122, 118, 0.42);
    bottom: 0;
    left: 0;
}

.default-button-texto:hover::before {
    width: 60px;
}


#servicos p {
    font-size: 14px;
    color: var(--texto-extra);
    line-height: 24px;
    letter-spacing: 0;
    margin-bottom: 0;
}



#servicos {
    background-color: var(--second-color);
}

#servicos h4.preheading {
    padding-top: 0;
}



#servicos .lista-servicos a {
    overflow: hidden;
    display: block;
    height: 250px;
    border-radius: 15px;
    position: relative;
    margin: 1em 0;
}

#servicos a .absolute-services {
    position: absolute;
    left: 35px;
    right: 35px;
    bottom: 25px;
}

.lista-servicos {
    margin-top: 1.5em;
}

.lista-servicos .individual {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    height: 250px;
}

.lista-servicos .individual .img-abs::before {
    content: '';
    border-radius: 15px;
    position: absolute;
    inset: 0;
    background: linear-gradient(357deg, rgb(22 22 22 / 90%) 42%, rgb(0 0 0 / 10%) 100%);
    z-index: 1;
    pointer-events: none;
}

.lista-servicos .img-abs {
    position: relative;
    z-index: 0;
    overflow: hidden;
    border-radius: 15px;
}

.lista-servicos .absolute-services {
    position: absolute;
    /* ou relative, dependendo do seu layout */
    z-index: 2;
}



footer h2.heading {
    font-size: 64px;
    line-height: 95%;
    letter-spacing: -1%;
    text-align: center;
    color: rgba(93, 76, 69, 0.88);
    font-weight: 600;

}

h2.heading.white {
    color: var(--text-color);
}

footer h2.heading::after {
    content: '';

    display: block;

    width: 120px;
    height: 1px;

    margin: 40px auto 0;

    background:
        rgba(169, 111, 106, .25);
}



footer h2.heading b {
    color: var(--main-color);
}


.reveal {
    opacity: 0;
    transform: translateY(40px);

    transition:
        opacity .9s ease,
        transform .9s ease;
}

.reveal.active {
    opacity: 1;
    transform: none;
}

#metodo {
    background-color: var(--fundo);
}

#metodo .right {
    border-left: 1px solid rgba(169, 119, 76, 0.92);
    padding-left: 70px;
    height: 100%;
}

#metodo .right span.number {
    font-family: "Cormorant Infant", serif;
    color: rgba(246, 242, 236, 0);
    -webkit-text-stroke: 1px rgba(169, 119, 76, 0.5);
    font-size: 80px;
    font-weight: bold;
    letter-spacing: 5%;
    line-height: normal;
}


#metodo .right ul li {
    display: flex;
    align-items: center;
    gap: 50px;
    flex-grow: 1;
}


#metodo .right ul li h4 {
    color: #424242;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 12%;
    line-height: normal;
    font-weight: bold;
}

#metodo .right ul li p {
    color: #6F6B66;
    font-size: 14px;
    line-height: 21px;
    letter-spacing: 3%;
}

#metodo .right ul {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    height: 100%;
    justify-content: space-evenly;
}



#home .absolute-center .inferior li {
    color: #424242;
    font-weight: 600;
}

#home .absolute-center .inferior li:first-child {
    margin-right: 10px;
}

#home .absolute-center .inferior ul li.especial {
    color: var(--third-color);
}

.experiencia-row {
    display: flex;
    align-items: center;
}

.imagem-col {
    display: flex;
    padding-left: 0;
}

.imagem-col img {
    width: 100%;
    height: auto;
    min-height: 100%;
    object-fit: cover;
    border-radius: 0 20px 20px 0;
}

#sobre-first .bottom ul {
    display: flex;
}

#sobre-first .bottom ul li {
    border-left: 1px solid #A9774C;
    padding-left: 2em;
    padding-right: 1.5em;
}

#sobre-first .bottom ul li:first-child {
    border-left: 0;
    padding-left: 0;
}




#sobre-first .bottom ul li img {
    display: block;
    margin-bottom: 10px;
}

#sobre-first .bottom ul li p {
    margin-bottom: 0;
    font-size: 12px;
}

#sobre-first p.subtitle {
    font-size: 14px;
}

#numbers {
    background-color: var(--second-color);
    padding: 3em 0;
}

.lista-numbers {
    display: flex;
    justify-content: space-evenly;
}

.lista-numbers .individual {
    display: block;
    text-align: center;
    align-items: center;
    border-left: 1px solid rgba(248, 248, 246, 0.34);
    padding-left: 0;
    padding-right: 0;
    width: 100%;
}

.lista-numbers .individual:first-child {
    border-left: 0;
    padding-left: 0;
}

.lista-numbers .individual .right {
    margin-left: 10px;
}

.lista-numbers .individual h3,
h4.equal-h3 {
    font-family: "Cormorant Garamond", serif;
    font-size: 50px;
    text-align: center;
    font-weight: 600;
    color: var(--main-color);
    line-height: inherit;
    letter-spacing: 2%;
    margin: 0;
    padding-bottom: 25px;
}

.lista-numbers .individual span {
    font-size: 12px;
    text-transform: uppercase;
    line-height: 18px;
    letter-spacing: 4%;
    color: var(--text-color);
    font-weight: 600;
}


#servicos a .absolute-services {
    font-size: 12px;
    font-weight: 500;
    line-height: 20px;
    color: var(--text-color);
}

#servicos a .absolute-services h3 {
    font-size: 16px;
    line-height: 23px;
    letter-spacing: 0%;
    font-weight: bold;
    color: #F6F2EC;
    margin: 0;
    margin-bottom: 10px;
}

#servicos .lista-servicos .default-button.extra {
    color: #F6F2EC;
    font-size: 12px;
    font-weight: 500;
    border-bottom: 0;
}

#depoimentos .lista-depoimentos .sign span {
    font-size: 200px;
    font-family: "Cormorant Garamond", serif;
    font-weight: 400;
    color: rgba(169, 119, 76, 0.74);
    line-height: inherit;
    letter-spacing: 1%;
    vertical-align: bottom;
    padding-top: 60px;
    display: block;
}

#depoimentos .lista-depoimentos {
    display: flex;
    align-items: start;
}

#depoimentos .lista-depoimentos .sign {
    margin-right: 5em;
}

#depoimentos {
    background-color: var(--fundo-second);
    padding: 3em 0;
}

#depoimentos .lista-depoimentos .list {
    display: flex;
    margin-top: 2em;
}

#depoimentos .lista-depoimentos .list .individual {
    align-items: center;
    color: #6F6B66;
    font-size: 12px;
    border-left: 1px solid #A9774C;
    padding-left: 4em;
    padding-right: 4em;
}

#depoimentos .lista-depoimentos .list .individual .texto {
    margin-bottom: 20px;
}

#depoimentos .lista-depoimentos .list .individual:first-child {
    border-left: 0;
    padding-left: 0;
}

#depoimentos .lista-depoimentos .list .individual span b {
    display: block;
}

.cta-especial {
    background-image: url(../../images/cta-bg.png);
    background-size: cover;
    background-color: var(--second-color);
    padding: 2em 0;
    object-fit: cover;
    background-position: center;
}

footer img {
    max-width: 150px;
}

footer .subtitle-f {
    color: #fff;
}



.form-cta {
    background: transparent;
    border: 0;
    border-radius: 12px;
    padding: 0;
}

.cta-especial h2.heading {
    font-family: "Cormorant Garamond", serif;
    color: var(--fundo);
    font-size: 44px;
    line-height: 47px;
    letter-spacing: -2%;
    margin: 0;
    padding: 0;
}

.cta-especial .lista p {
    padding-top: 1em;
    padding-bottom: 0px;
    color: var(--fundo);
    margin-bottom: 0;
}

.cta-especial .default-button {
    background-color: var(--main-color);
    color: var(--second-color);
    font-weight: 600;
    display: flex;
    align-items: center;
    padding: .6em 2em;
    width: 100%;
    border-radius: 3px;
    text-align: center;
    justify-content: center;
}

.cta-especial .default-button span {
    color: var(--second-color);
}

#home .absolute-center .bottom .default-button {
    background-color: var(--main-color);
    color: var(--second-color);
    font-size: 13px;
    font-weight: 500;
}

#home .absolute-center .bottom .default-button.especial {
    background: transparent;
    color: var(--text-color);
    border: 1px solid transparent;
}

#home .absolute-center .bottom .default-button.especial .svg-inline--fa {
    color: var(--main-color);
    margin-left: 10px;
}




.form-banner {
    background: rgba(38, 43, 49, 0.5);
    border: 2px solid rgba(67, 72, 78, 0.95);
    border-radius: 18px;
    padding: 3em 2em;
}

.form-banner p {
    text-align: center;
    padding: 0em 2em;
    margin-bottom: 2em;
    letter-spacing: 2%;
    line-height: 19px;
}

.form-banner input,
.form-banner .form-select {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(246, 245, 242, 0.06);
    border-radius: 3px;
    height: 40px;
    line-height: 40px;
}


.form-banner input::placeholder,
.form-banner .form-select {
    color: var(--text-color);
    font-size: 12px;
    line-height: 22px;
    font-weight: 500;
}

.form-banner .form-select option {
    color: var(--second-color);
}

.form-banner .input-group-text {
    background: rgba(255, 255, 255, 0.03);
    color: var(--text-color);
    border-left: 1px solid rgba(246, 245, 242, 0.06);
    border-top: 1px solid rgba(246, 245, 242, 0.06);
    border-bottom: 1px solid rgba(246, 245, 242, 0.06);
    border-right: 0;
    border-radius: 3px;
}

.form-banner .default-button {
    display: block;
    width: 100%;
    background: var(--main-color);
    border-radius: 3px;
    margin: 1em 0;
    color: var(--second-color);
    font-weight: 600;
    font-size: 13px;
}

.form-banner span.small {
    text-align: center;
    display: block;
    font-size: 12px;
    font-weight: 500;
    margin-bottom: 10px;
}

.form-banner a {
    color: var(--text-color);
    font-size: 13px;
    font-weight: 500;
    text-align: center;
    display: block;
    line-height: 22px;
}

.form-banner a .svg-inline--fa {
    color: var(--main-color);
}

.padding-ajust {
    padding-left: 2.5em;
}






.white h2.heading {
    color: #fff;
}


.text-center h2.heading {
    text-align: center;
}

.lista-clientes {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 4em;
}

.lista-clientes .individual {
    width: calc(16.67% - 10px);
    box-sizing: border-box;
}

.lista-clientes .individual img {
    filter: grayscale(1);
}

footer .assign ul {
    justify-self: end;
    gap: 20px;

}

.form-cta {
    background: rgba(38, 43, 49, 0.5);
    border: 1px solid rgba(67, 72, 78, 0.95);
    border-radius: 12px;
    padding: 2em;
}

.form-cta .form-control {
    background: rgba(38, 43, 49, 0.87);
    border: 1px solid rgba(67, 72, 78, 0.95);
    color: #fff;
    font-size: 12px;
    padding: 1em;
}


.form-cta .form-control::placeholder {
    color: rgba(248, 248, 246, 0.46);
    font-size: 12px;
}

footer .svg-inline--fa {
    color: var(--main-color);
}

.infos-banner {
    position: absolute;
    bottom: 0;
    width: 100%;
    color: #fff;
    padding: 2em 0;
    z-index: 1;
    background: rgb(255 255 255 / 2%);
}

.infos-banner .lista-infos {
    position: relative;
    display: flex;
    z-index: 1;
    gap: 30px;
    justify-content: space-around;
}

.infos-banner .lista-infos h3 {
    color: var(--text-color);
    font-size: 48px;
    line-height: 1%;
    line-height: 50px;
    font-weight: lighter;
    margin: 0;
}

.infos-banner .lista-infos p {
    color: var(--text-color);
}

.infos-banner .lista-infos h3 span {
    color: var(--main-color);
    font-size: 18px;
}

.infos-banner .lista-infos h3 span.second {
    font-size: 28px;
}

.infos-banner .lista-infos .individual {
    border-right: 1px solid #2F2F2F;
    padding: 0 5em 0em 2em;
}

.infos-banner .lista-infos .individual:last-child {
    border-right: 0;
    padding-right: 2em;
}

.superior ul li {
    color: var(--main-color);
    font-size: 12px;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 5%;
    margin-bottom: 15px;
}

.superior h2 {
    color: #2F2F2F;
    text-transform: none;
    font-size: 40px;
    line-height: 47px;
    letter-spacing: -1px;
    position: relative;
    padding-bottom: 30px;
    margin-bottom: 30px;
}

.superior h2.white {
    color: var(--text-color);
}

.superior h2 span.destaq {
    color: var(--main-color);
}

.superior h2::before {
    content: '';
    width: 75px;
    height: 1px;
    position: absolute;
    bottom: 0;
    background-color: var(--main-color);
}

#servicos .superior h2.white {
    margin-bottom: 0;
}

p.white {
    color: var(--text-color);
}

.servicos-lista {
    padding-top: 5em;
    display: flex;
    gap: 25px;
}

.servicos-lista .individual {
    padding-right: 20px;
    border-right: 1px solid #2F2F2F;
    margin-bottom: 00em;
    display: block;
}

#servicos .servicos-lista .individual {
    margin-bottom: 3em;
}

.servicos-lista .individual img {
    margin-bottom: 10px;
}

.servicos-lista .individual h3 {
    margin-top: 0;
    color: var(--text-color);
    font-size: 14px;
    font-weight: bold;
    line-height: 24px;
    letter-spacing: 4%;
}

.servicos-lista .col-lg-4:nth-child(3n) .individual {
    padding-right: 0;
    border-right: 0;
}

#sobre-third .servicos-lista .individual:last-child {
    padding-right: 0;
    border-right: 0;
}

.list-text {
    color: var(--texto-extra);
    font-size: 16px;
    line-height: 34px;
    letter-spacing: -1%;
    font-weight: 600;
}

#sobre-third {
    background-color: var(--second-color);
}

#sobre-third h2 {
    color: #fff;
}

#sobre-third .servicos-lista {
    padding-top: 2em;
}

#etica .superior h2 {
    color: #2F2F2F;
    text-transform: none;
    font-size: 30px;
    line-height: 35px;
    letter-spacing: -1px;
    position: relative;
    padding-bottom: 30px;
    margin-bottom: 30px;
    font-weight: 400;
}

.lista-noticias-inicial .individual span.data {
    font-size: 11px;
    line-height: 26px;
    font-weight: 600;
    color: #b2abab;
    display: flex;
    position: relative;
    align-items: center;
}


.lista-noticias-inicial .individual .arrow {
    width: 20px;
    /* comprimento da seta */
    height: 1px;
    background: var(--main-color);
    position: relative;
    margin-left: 1em;
}

.lista-noticias-inicial .individual .arrow::after {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    width: 5px;
    height: 5px;
    border-top: 1px solid var(--main-color);
    border-right: 1px solid var(--main-color);
    transform: translateY(-50%) rotate(45deg);
}

.lista-noticias-inicial .individual h4 {
    color: #2f2f2f;
    font-weight: 600;
    line-height: 22px;
    font-size: 14px;
}

.lista-noticias-inicial .individual {
    border-top: 1px solid rgba(226, 226, 226, 1);
    display: block;
    padding-top: 2em;
    position: relative;
    margin: 1em 0;
}

.lista-noticias-inicial .individual:first-child {
    padding-top: 0;
    border-top: 0;
    margin: initial;
}

#etica .div-padding {
    border-left: 1px solid #E2E2E2;
    padding-left: 2em;
    border-right: 1px solid #E2E2E2;
    padding-right: 2em;
}

#etica .div-padding.left {
    padding-left: 2em;
    border: 0px;
}

.lista-noticias-inicial .individual.especial img {
    height: 100%;
    object-fit: cover;
    width: auto;
}

.lista-noticias-inicial .individual.especial .texto-absolute {
    position: absolute;
    bottom: 0;
    padding: 1.5em 1.5em;
}

.lista-noticias-inicial .individual.especial .texto-absolute h4 {
    color: var(--text-color);
    font-size: 15px;
    font-weight: bold;
}

#etica {
    background-color: var(--fundo-second);
}

#etica .etica-conduta a.email {
    color: var(--main-color);
    font-weight: bold;
    margin-bottom: 1em;
    display: block;
    line-height: 18px;
}

footer ul.align-end {
    flex-direction: row-reverse;
}


/* =========================================================
   EFEITOS ADICIONAIS - AGRIBRASIL
   Cole este conteúdo NO FINAL do seu arquivo CSS atual
   (ou importe/carregue depois dele). Nada do CSS original
   é modificado — apenas complementado.
   ========================================================= */

/* ---------- 1. CARDS DE SERVIÇOS (imagem + overlay) ---------- */
.lista-servicos .individual {
    transition: transform .4s cubic-bezier(.19, 1, .22, 1), box-shadow .4s ease;
}

.lista-servicos .individual:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 35px rgba(0, 0, 0, 0.25);
}

.lista-servicos .individual .img-abs img {
    transition: transform .6s cubic-bezier(.19, 1, .22, 1);
}

.lista-servicos .individual:hover .img-abs img {
    transform: scale(1.08);
}

#servicos .lista-servicos .default-button.extra {
    transition: gap .3s ease, color .3s ease;
}

.lista-servicos .individual:hover .default-button.extra {
    gap: 20px;
}

/* ---------- 2. NÚMEROS / ESTATÍSTICAS ---------- */
.lista-numbers .individual {
    transition: transform .35s ease;
}

.lista-numbers .individual:hover {
    transform: translateY(-5px);
}

.lista-numbers .individual h3 {
    transition: color .3s ease, text-shadow .3s ease;
}

.lista-numbers .individual:hover h3 {
    text-shadow: 0 0 18px rgba(254, 127, 9, 0.55);
}

/* ---------- 3. DEPOIMENTOS ---------- */
#depoimentos .lista-depoimentos .list .individual {
    transition: transform .35s ease, opacity .35s ease;
}

#depoimentos .lista-depoimentos .list .individual:hover {
    transform: translateY(-6px);
}

/* ---------- 4. LOGOS DE CLIENTES (tira grayscale no hover) ---------- */
.lista-clientes .individual img {
    transition: filter .4s ease, transform .4s ease, opacity .4s ease;
    opacity: 0.7;
}

.lista-clientes .individual:hover img {
    filter: grayscale(0);
    transform: scale(1.06);
    opacity: 1;
}

/* ---------- 5. NOTÍCIAS ---------- */
.lista-noticias-inicial .individual {
    transition: transform .35s ease;
}

.lista-noticias-inicial .individual:hover {
    transform: translateX(6px);
}

.lista-noticias-inicial .individual h4 {
    transition: color .3s ease;
}

.lista-noticias-inicial .individual:hover h4 {
    color: var(--main-color);
}

.lista-noticias-inicial .individual .arrow {
    transition: width .3s ease;
}

.lista-noticias-inicial .individual:hover .arrow {
    width: 30px;
}

.lista-noticias-inicial .individual.especial img {
    transition: transform .6s ease;
}

.lista-noticias-inicial .individual.especial:hover img {
    transform: scale(1.06);
}

/* ---------- 6. IMAGENS EM GERAL (zoom suave dentro de containers com overflow escondido) ---------- */
.imagem-col img {
    transition: transform .6s ease;
}

.imagem-col:hover img {
    transform: scale(1.04);
}

/* ---------- 7. LOGO DO CABEÇALHO ---------- */
.logo-principal a img {
    transition: transform .35s ease, opacity .35s ease;
}

.logo-principal a:hover img {
    transform: scale(1.05);
    opacity: 0.9;
}

/* ---------- 8. BOTÃO FLUTUANTE DO WHATSAPP ---------- */
.whatsapp-float {
    transition: transform .3s ease, box-shadow .3s ease;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25);
    animation: whatsapp-pulse 2.2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.35);
    animation-play-state: paused;
}

@keyframes whatsapp-pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.55);
    }

    70% {
        box-shadow: 0 0 0 14px rgba(37, 211, 102, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* ---------- 9. FORMULÁRIOS (foco com destaque) ---------- */
.form-control,
.form-banner input,
.form-banner .form-select,
.form-cta .form-control {
    transition: border-color .3s ease, box-shadow .3s ease, background-color .3s ease;
}

.form-control:focus,
.form-banner input:focus,
.form-banner .form-select:focus,
.form-cta .form-control:focus {
    border-color: var(--main-color) !important;
    box-shadow: 0 0 0 3px rgba(254, 127, 9, 0.2) !important;
    outline: none;
}

/* ---------- 10. BOTÕES: leve efeito de escala no clique/hover (reforço) ---------- */
.btn-default,
.default-btn,
.default-button,
.default-button.especial {
    transition: transform .25s ease, background-color .3s ease, color .3s ease, box-shadow .3s ease;
}

.btn-default:hover,
.default-btn:hover,
.default-button:hover {
    transform: translateY(-2px);
}

.default-button.especial:hover .arrow {
    width: 55px;
}

.default-button.especial .arrow {
    transition: width .35s cubic-bezier(.19, 1, .22, 1);
}

/* ---------- 11. TAGS DO BANNER ---------- */
.tags-banner span {
    transition: background-color .3s ease, color .3s ease, transform .3s ease;
    display: inline-block;
}

.tags-banner span:hover {
    background-color: var(--main-color);
    color: #fff;
    transform: translateY(-3px);
}

/* ---------- 12. INFOS DO BANNER (números na home) ---------- */
.infos-banner .lista-infos .individual {
    transition: transform .3s ease;
}

.infos-banner .lista-infos .individual:hover {
    transform: translateY(-4px);
}

/* ---------- 13. MICRO-INTERAÇÃO NO ÍCONE DE BUSCA ---------- */
.search-container button {
    transition: transform .25s ease, color .3s ease;
}

.search-container button:hover {
    transform: scale(1.15);
    color: var(--main-color);
}

/* ---------- 14. SUAVIZAR DROPDOWN DO MENU ---------- */
ul.sub-has {
    opacity: 0;
    transform: translate(-50%, 8px);
    transition: opacity .3s ease, transform .3s ease;
    pointer-events: none;
}

.has-sub:hover ul.sub-has {
    opacity: 1;
    transform: translate(-50%, 0);
    pointer-events: auto;
}

/* ---------- 15. LISTA DE SERVIÇOS (coluna com borda) ---------- */
.servicos-lista .individual {
    transition: transform .35s ease;
}

.servicos-lista .individual:hover {
    transform: translateY(-6px);
}

.servicos-lista .individual img {
    transition: transform .4s ease;
}

.servicos-lista .individual:hover img {
    transform: scale(1.08);
}

/* ---------- 16. ANIMAÇÕES DE ENTRADA AO ROLAR (usa a classe .reveal que já existe no seu CSS) ---------- */
/* Variações extras para dar mais variedade às seções, sem remover a .reveal original */
.reveal.left {
    transform: translateX(-40px);
}

.reveal.left.active {
    transform: none;
}

.reveal.right {
    transform: translateX(40px);
}

.reveal.right.active {
    transform: none;
}

.reveal.zoom {
    transform: scale(0.92);
}

.reveal.zoom.active {
    transform: scale(1);
}


.service-intro {
    margin-bottom: 2em
}

.service-intro .lead {
    font-size: 16px;
    line-height: 1.8;
    color: #666;
}

.service-highlight {
    margin: 0;
}

.service-highlight div>div {
    margin-bottom: 1.5em;
}

.service-highlight .item {
    background: #fff;
    border-radius: 12px;
    padding: 2em 3em;
    border: 1px solid #E2E2E2;
    height: 100%;
    margin-bottom: 0em;
}

.service-highlight h4 {
    margin-bottom: 15px;
    color: var(--main-color);
    font-weight: bold;
}

.service-content h3 {
    margin-top: 2em;
    margin-bottom: 0;
    font-weight: bold;
    color: var(--main-color);
}

.service-content p {
    line-height: 1.9;
    margin-bottom: 25px;
}

.service-content blockquote {
    border-left: 4px solid var(--main-color);
    padding: 20px 30px;
    background: #f7f7f7;
    font-size: 22px;
    font-style: italic;
    font-weight: bold;
    line-height: 30px;
    color: #020c13;
    margin: 50px 0;
}

#contato label {
    color: var(--second-color);
}