/* ===========================
   RESET CSS
=========================== */

*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* PALETA DE CORES */
:root {
    /* Backgrounds */
    --bg-body: #FFFFFF;
    --bg-section: #F8F8F8;
    --bg-header: #050505;
    --bg-footer: #050505;
    --fundo: #0b2133;
    /* --cor-principal: #bfa17e; */
    --cor-principal: #FAED9D;

    /* Botões */
    --btn-primary: #C8943F;
    --btn-primary-hover: #9B6A28;
    --btn-text: #FFFFFF;

    /* Títulos */
    --h1: #050505;
    --h2: #050505;
    --h3: #C8943F;
    --h4: #050505;
    --h5: #6D6D6D;

    /* Textos */
    --text: #444444;
    --text-light: #6D6D6D;
    --text-white: #FFFFFF;

    /* Bordas */
    --border: #E5E5E5;

    /* Destaque */
    --primary: #C8943F;
    --primary-dark: #9B6A28;
}

/* PALETA DE CORES */

/* FONTS */

/* inter-regular - latin */
@font-face {
    font-display: swap;
    /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
    font-family: 'Inter';
    font-style: normal;
    font-weight: 400;
    src: url('../fonts/inter-v20-latin-regular.woff2') format('woff2');
    /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* inter-500 - latin */
@font-face {
    font-display: swap;
    /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
    font-family: 'Inter';
    font-style: normal;
    font-weight: 500;
    src: url('../fonts/inter-v20-latin-500.woff2') format('woff2');
    /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* inter-600 - latin */
@font-face {
    font-display: swap;
    /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
    font-family: 'Inter';
    font-style: normal;
    font-weight: 600;
    src: url('../fonts/inter-v20-latin-600.woff2') format('woff2');
    /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* inter-700 - latin */
@font-face {
    font-display: swap;
    /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
    font-family: 'Inter';
    font-style: normal;
    font-weight: 700;
    src: url('../fonts/inter-v20-latin-700.woff2') format('woff2');
    /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* cormorant-garamond-regular - latin */
@font-face {
    font-display: swap;
    /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
    font-family: 'Cormorant Garamond';
    font-style: normal;
    font-weight: 400;
    src: url('../fonts/cormorant-garamond-v21-latin-regular.woff2') format('woff2');
    /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* cormorant-garamond-600 - latin */
@font-face {
    font-display: swap;
    /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
    font-family: 'Cormorant Garamond';
    font-style: normal;
    font-weight: 600;
    src: url('../fonts/cormorant-garamond-v21-latin-600.woff2') format('woff2');
    /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* cormorant-garamond-700 - latin */
@font-face {
    font-display: swap;
    /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
    font-family: 'Cormorant Garamond';
    font-style: normal;
    font-weight: 700;
    src: url('../fonts/cormorant-garamond-v21-latin-700.woff2') format('woff2');
    /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

:root {

    --font-heading: 'Cormorant Garamond', serif;
    --font-body: 'Inter', sans-serif;
}


body {
    font-family: var(--font-body);
    background-color: var(--fundo);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
}

.h2-item,
.h3-item {
    color: var(--bg-body);
    font-size: 32px;
}

h2 {
    font-size: 28px;
    color: var(--bg-footery);
    /* margin-bottom: 10px; */
}

p {
    font-size: 18px;
    color: var(--bg-footer);
    line-height: 1.2;
}

.btn-span {
    padding: 0;
}

span {
    /* font-size: large; */
    color: var(--bg-section);
    padding: 5px 0;
}

.cor-destaque {
    color: var(--primary);
}

section {
    /* scroll-margin-top: 100px; */
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 100px; /* Ajuste conforme a altura do header */
}

/* .linha-h2 {
    position: relative;
    display: inline-block;
    padding-bottom: 10px;
    margin-bottom: 10px;
}

.linha-h2::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 120px;
    height: 1px;
    background: rgba(255, 255, 255, .15);
}

.linha-h2::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -1px;
    width: 55px;
    height: 3px;
    border-radius: 50px;
    background: var(--btn-primary);
} */
/* FIM FONTS */


/* BTN */

/* BTN REDONDO */
.btn-redondo {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;

    padding: 10px 28px;

    background: linear-gradient(to bottom,
            #e3c27a 0%,
            #c89a47 55%,
            #b6842f 100%);

    color: #fff;
    text-decoration: none;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;

    border: 1px solid #f2d394;
    border-radius: 40px;

    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, .45),
        0 4px 10px rgba(182, 132, 47, .35);

    transition: .3s;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(200, 148, 63, .7);
    }

    70% {
        box-shadow: 0 0 0 18px rgba(200, 148, 63, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(200, 148, 63, 0);
    }
}


.btn-redondo:hover {
    transform: translateY(-2px);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, .55),
        0 8px 18px rgba(182, 132, 47, .45);
}

.btn-redondo i {
    font-size: 22px;
    margin-bottom: 2px;
}

/* FIM BTN REDONDO */


/* HEADER */
.header {
    position: fixed;
    top: 10px;
    width: 100%;
    /* display: flex; */
    /* justify-content: space-around; */
    /* align-items: center; */
    transition: .3s;
    z-index: 999;
    padding: 10px 0;
}

.header-container {
    max-width: 1000px;
    width: 100%;
    margin: 0 auto;
    /* padding: 0 40px; */
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header.scroll {
    top: 0;
    background: rgba(7, 19, 39, 0.615);
    /* ou var(--bg-header) */
    backdrop-filter: blur(18px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, .2);
}

.header .logo {
    /* background-color: var(--bg-header); */
    /* width: 100%; */
    display: flex;
    /* justify-content: space-around; */
    align-items: center;
    /* gap: 4px; */

}

.header .logo-span {
    width: 100px;
    /* height: auto; */
    /* font-size: 25px;  */
    display: flex;
    justify-content: center;
    /* justify-content: space-around; */
    align-items: center;

}

.header .logo img {
    width: 76%;
    height: auto;
}

.header .logo span {
    color: var(--cor-principal);
    font-size: 14px;
    font-weight: bold;
    /* margin-left: 10px; */
}

.menu ul {
    display: flex;
    gap: 50px;
    /* justify-content: space-around; */
    align-items: center;
    list-style: none;
    font-size: 20px;
}

.menu ul li a {
    text-decoration: none;
    color: var(--text-white);
    transition: 0.3s;
    font-size: 18px;
}

.menu ul li a:hover {
    color: var(--cor-principal);
    transition: 0.3s;
}

.rede-social {
    display: flex;
    gap: 25px;
}

.rede-social-responsivo {
    display: none;
}

.rede-social a {
    color: var(--text-white);
    font-size: 24px;
    transition: 0.3s;
}

.rede-social a:hover {
    color: var(--cor-principal);
    transition: 0.3s;
}


/* MENU RESPONSIVO */
.btn-menu {
    width: 45px;
    height: 45px;
    border: none;
    background: none;
    display: none;
    cursor: pointer;
    position: relative;
    z-index: 1002;
}

.btn-menu span {
    position: absolute;
    left: 8px;
    width: 30px;
    height: 3px;
    background: #fff;
    border-radius: 5px;
    transition: .35s;
}

.btn-menu span:nth-child(1) {
    top: 12px;
}

.btn-menu span:nth-child(2) {
    top: 21px;
}

.btn-menu span:nth-child(3) {
    top: 30px;
}


/* QUANDO ABRIR */
.btn-menu.active span:nth-child(1) {
    transform: rotate(45deg);
    top: 21px;
}

.btn-menu.active span:nth-child(2) {
    opacity: 0;
}

.btn-menu.active span:nth-child(3) {
    transform: rotate(-45deg);
    top: 21px;
}

/* OVERLAY */
.overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .55);
    opacity: 0;
    visibility: hidden;
    transition: .35s;
    z-index: 998;
}

.overlay.active {
    opacity: 1;
    visibility: visible;
}


/* menu */
.menu-mobile {
    position: fixed;
    top: 0;
    right: -320px;
    width: 300px;
    height: 100vh;
    background: #071327;
    transition: .45s ease;
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: -10px 0 30px rgba(0, 0, 0, .4);
}

.menu-mobile.active {
    right: 0;
}

.menu-mobile ul {
    list-style: none;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.menu-mobile li {
    margin: 25px 0;
    text-align: center;
}

.menu-mobile a {
    color: #fff;
    text-decoration: none;
    font-size: 20px;
    transition: .3s;
}

.menu-mobile a:hover {
    color: var(--cor-principal);
}

/* FIM MENU RESPONSIVO */

/* FIM HEADER */

/* PRINCIPAL */
.principal {
    background: url(../img/principal/container-principal.png) center center / cover no-repeat;
    min-height: 650px;
    display: flex;
    align-items: center;
}

.principal-container {
    max-width: 1000px;
    width: 100%;
    margin: auto;
    padding: 120px 40px 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 60px;
}

.principal-texto,
.principal-imagem {
    flex: 1;
}

.principal-texto {
    display: flex;
    flex-direction: column;
    gap: 20px;
}


.principal-texto h1 span {
    color: var(--cor-principal);
    font-weight: bold;
}

.principal-texto h1 {
    font-size: 33px;
    text-transform: uppercase;
    color: var(--bg-body);
    line-height: 1.2;
}

.principal-texto p {
    font-size: 20px;
    color: var(--border);
    line-height: 1.6;
}

.principal-imagem {
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
}


/* EXPERIÊNCIA */
.experiencia {
    /* background: var(--bg-body); */
    /* padding: 10px 0; */
    /* position: relative; */
    /* top: -130px; */
    margin-top: -130px;
}

.experiencia-container {
    position: relative;
    max-width: 1000px;
    width: 100%;
    margin: 0 auto;
    padding: 20px 40px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 20px;
}

.experiencia-container::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(to right,
            transparent,
            var(--cor-principal),
            transparent);
}

.experiencia-item {
    flex: 1 1 220px;
    max-width: 110px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    text-align: center;
    /* background: red; */
}

/* FIM EXPERIÊNCIA */

/* FIM PRINCIPAL */


/* MISSÃO VISÃO VALORES */
.missao-visao-valores {
    background: var(--text-white);
    border-radius: 200px 0 0 0;

    background: url(../img/Excelencia-trabalho/fundo-excelencia-trabalho.png) no-repeat center center;
    background-size: cover;
    /* padding: 80px 0; */
}

.missao-visao-valores-container {
    max-width: 1000px;
    width: 100%;
    margin: 0 auto;
    padding: 80px 40px;
}

.missão-visao-valores-box {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 20px;
}

.missao-container,
.visao-container,
.valores-container {
    flex: 1 1 200px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    /* background: rgb(20, 20, 44); */
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 20px;
    z-index: 2;
    position: relative;

    background:
        radial-gradient(circle at top,
            rgba(70, 90, 150, .18) 0%,
            rgba(20, 20, 44, 1) 45%),
        linear-gradient(180deg,
            #1a2147 0%,
            #121d36 50%,
            #081321 100%);
            transition: .35s ease;
}

.missao-container:hover,
.visao-container:hover,
.valores-container:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 45px rgba(0,0,0,.35);
}

.excelencia-geral {
    margin-top: 100px;
}

.excelencia-geral h2 {
    /* margin: 0 auto; */
    /* background-color: red; */
    width: 100%;
    text-align: center;
}

.excelencia-trabalho-container {
    flex: 1 1 300px;
    display: flex;
}

.missao-visao-valores-container i {
    font-size: 25px;
    color: var(--cor-principal);
    margin-bottom: 10px;
}

.excelencia-trabalho-box {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    padding: 40px 0;
}

.imagem-excelencia-trabalho,
.texto-excelencia-trabalho {
    flex: 1 1 300px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.imagem-excelencia-trabalho {
    width: 200px;
    height: 300px;
    position: relative;
}

.excelencia-logo-1,
.excelencia-logo-2 {
    position: absolute;
    width: 93px;
    height: 93px;
    right: -30px;
    top: 35%;
}

.excelencia-logo-2 {
    left: -30px;
}

.img-exce-trab {
    width: 100%;
    height: 100%;
    border-radius: 10px;
}

.btn-sessao a {
    margin-top: 20px;
    display: flex;
    align-items: center;
    padding: 8px 28px;
}

.btn-sessao a i {
    margin-bottom: 0px;
}

.texto-excelencia-trabalho-tipos {
    display: flex;
    gap: 40px;
    margin-top: 20px;
}

.texto-excelencia-trabalho-tipos ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.texto-excelencia-trabalho-tipos li {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
    color: var(--text-color);
    font-size: 15px;
    font-weight: 600;
    font-style: italic;
}

.texto-excelencia-trabalho-tipos li i {
    color: var(--btn-primary);
    font-size: 18px;
    margin-bottom: 0px;
}

/* FIM EXCELÊNCIA NO TRABALHO */

/* NOSSOS SERVIÇOS */
.nosso-servicos {
    background-color: var(--bg-body);
    padding: 0 0 50px;
}
.nosso-servicos-container {
    margin: 0 auto;
    text-align: center;

    max-width: 1000px;
    width: 100%;
    margin: 0 auto;
}


.nosso-servico-box{
    display:flex;
    flex-wrap:wrap;
    gap:30px;
    padding:40px 0;
}




.nosso-servico-item{
    position: relative;
    flex:1 1 300px;
    height: 260px;
    perspective: 1000px;
    cursor:pointer;
}

.nosso-servico-item p {
    color: var(--bg-body);
}

.card-front,
.card-back{

    position:absolute;
    inset:0;

    display:flex;
    justify-content:center;
    align-items:center;
    flex-direction:column;

    padding:25px;

    border-radius:12px;
    border:1px solid var(--border);
    background: linear-gradient(
    135deg,
    #25385d 0%,
    #182a4b 35%,
    #10203d 70%,
    #091728 100%
);

    backface-visibility:hidden;
    transition:.7s;
}

/* .card-front i{
    font-size:42px;
    color:var(--btn-primary-hover);
    margin-bottom:20px;
} */

.card-front img {
    width: 60px;
    height: 60px;
}

.card-front h3{
    color:#fff;
    text-align:center;
    font-size: 25px;
    padding: 10px 0 0;
}

.card-back{

    transform:rotateY(180deg);

    color:#d9d9d9;
    text-align:center;
    line-height:1.8;
    font-size:15px;
}

.nosso-servico-item:hover .card-front{
    transform:rotateY(180deg);
}

.nosso-servico-item:hover .card-back{
    transform:rotateY(360deg);
}

.nosso-servico-item:hover .card-front,
.nosso-servico-item:hover .card-back{
    border-color:var(--btn-primary-hover);
    box-shadow:0 15px 35px rgba(0,0,0,.35);
}


/* FIM NOSSOS SERVIÇOS */


/* QUEM SOU */
.quem-sou {
    background: url(../img/quem-sou/fundo-quem-sou.png) no-repeat center center;
    background-size: cover;
    /* height: 300px; */
}

.quem-sou-container {
    max-width: 1000px;
    /* width: 100%; */
    margin: 0 auto;
}

.quem-sou-box {
    display: flex;
    flex-wrap: wrap;
    /* justify-content: center; */
    align-items: center;
    padding: 20px 40px;
    /* text-align: center; */
    /* justify-content: ; */
    /* gap: 30px; */
}

.imagem-quem-sou,
.texto-quem-sou {
    flex: 1 1 300px;
}

.imagem-quem-sou {
    width: 350px;
    height: 300px;
    text-align: right;
    position: relative;
    z-index: 2;
    top: -110px;
    /* background-color: red; */
}

.imagem-quem-sou img {
    width: 330px;
    position: relative;
    top: -17px;
    z-index: 20;
    /* height: 407px; */
    /* border-radius: 10px; */
}

.imagem-quem-sou {
    /* background: red; */
}

.texto-quem-sou {
    /* display: flex; */
    /* flex-direction: column; */
    justify-content: center;
    /* background-color: red; */
    gap: 0px;
}

.texto-quem-sou h2 {
    font-size: 32px;
    color: var(--bg-body);
    padding: 20px 0;
}

.texto-quem-sou p {
    font-size: 16px;
    color: var(--border);
    line-height: 1.5;
}

/* FIM QUEM SOU */

/* FAQ */
.faq {
    width: 100%;
    padding: 100px 8%;
    background: #f8f9fb;
}

.faq-container {
    max-width: 800px;
    margin: auto;
}

.faq-titulo {
    /* text-align: center; */
    margin-bottom: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.faq-titulo h2 {
    padding: 20px 0;
}

.faq-titulo span {
    color: #c79c41;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.faq-box {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.faq-item {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .08);
    transition: .4s;
}

.faq-item:hover {
    transform: translateY(-3px);
}

.faq-question {
    width: 100%;
    border: none;
    background: none;
    cursor: pointer;
    padding: 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 15px;
    font-weight: 600;
    color: var(--bg-body);
    background-color: var(--fundo);
}

.faq-question span {
    font-size: 20px;
    color: var(--bg-body);
    transition: .3s;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: .5s;
}

.faq-answer p {
    padding: 25px;
    /* color: #555; */
    line-height: 1.5;
    font-size: 17px;
}

.faq-item.active .faq-answer {
    max-height: 250px;
}

.faq-item.active .faq-question span {
    transform: rotate(45deg);
}

@media(max-width:768px) {

    .faq {
        padding: 70px 20px;
    }

    .faq-titulo h2 {
        font-size: 30px;
    }

    .faq-question {
        font-size: 17px;
        text-align: left;
        gap: 15px;
    }

    .faq-answer p {
        font-size: 16px;
    }

}

/* FIM FAQ */

/* ESCRITÓRIO */
.escritorio {
    background-color: var(--text-white);
}

.escritorio-container {
    max-width: 1000px;
    width: 100%;
    margin: 0 auto;
    padding: 80px 40px;
    text-align: center;
}

.escritorio-container h2 {
    padding: 20px 0 0;
}

/* .escritorio-container h2 {
    font-size: 20px;
    color: var(--bg-header);
    margin-bottom: 40px;
} */

.escritorio-container p {
    font-size: 16px;
    /* color: var(--text-light); */
    line-height: 1.5;
    margin-bottom: 40px;
}

.escritorio-box {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.contador{
    display: inline-block;
    transition: transform .3s ease;
}

.contador.animando{
    transform: scale(1.08);
}

.escritorio-box-numeros,
.escritiorio-box-fotos {
    flex: 1 1 300px;
}

.escritorio-box-numeros {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 50px;
    margin: 0 15px;
}

.escritorio-box-numeros h3 {
    font-size: 38px;
    font-weight: bold;
    color: var(--btn-primary);
    margin-bottom: 3px;
}

.escritorio-box-numeros span {
    font-size: 18px;
    color: var(--text);
    line-height: 1.5;
    margin-bottom: 3px;
}

.escritorio-box-fotos {
    width: 100%;
    max-width: 550px;
}

.escritorio-box-fotos img {
    width: 100%;
    height: auto;
    display: block;
}

/* FIM ESCRITÓRIO   

/* PRINCIPAIS ÁREA DE ATUAÇÃO */
.area-atuacao {
    background: var(--bg-body);
    /* border-radius: 200px 0 0 0; */
    /* padding: 80px 0; */
}

.area-atuacao-geral {
    border-radius: 200px 0 0 0;
    background:
        radial-gradient(circle at center,
            rgba(30, 90, 145, .25) 0%,
            rgba(20, 60, 95, .22) 28%,
            rgba(11, 33, 51, .85) 65%,
            rgba(4, 12, 20, 1) 100%),
        linear-gradient(180deg, #14344f 0%, #0b2133 55%, #050d15 100%);
}

.area-atuacao-container {
    max-width: 1000px;
    width: 100%;
    margin: 0 auto;
    padding: 80px 40px;
    text-align: center;
}

.area-atuacao-container h2 {
    color: var(--btn-text);
    margin: 0 auto;
}

.area-cor-h2 {
    color: var(--btn-primary);
}

.area-atuacao-container p {
    color: var(--text-white);
    padding: 40px 0;
}

.area-atuacao-img {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
    justify-content: center;
    align-items: end;
    padding-bottom: 60px;
}

.area-atuacao-img img {
    width: 450px;
    min-width: 200px;
    height: 200px;
    border: 1px solid #9B6A28;
    /* border-radius: 50%; */
}

.area-atuacao-box {
    max-width: 800px;
    margin: 0 auto;
    width: 100%;
}

.area-atuacao-servico {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 18px 0;
    border-bottom: 1px solid rgba(255, 255, 255, .08);
    /* cursor:pointer; */
    transition: .3s;
}

.area-atuacao-servico i {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: #fff;
    color: #0b2133;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 11px;
    transition: .3s;
}

.area-atuacao-servico span {
    color: #fff;
    font-size: 16px;
    transition: .3s;
}

.area-atuacao-servico:hover span {
    color: #d9b15d;
}

/* .area-atuacao-servico:hover i{
    background:#d9b15d;
    color:#fff;
    transform:translateX(5px);
} */
/* FIM PRINCIPAIS ÁREA DE ATUAÇÃO */

/*==========================
DEPOIMENTOS
==========================*/

.depoimentos {
    background: #040D16;
}

.depoimento-container-geral {
    padding: 90px 20px;
    background: var(--border);
    border-radius: 200px 0 0 0;

}

.depoimentos-container {
    max-width: 1200px;
    margin: auto;
}

.titulo-sessao {
    max-width: 700px;
    margin: auto;
    text-align: center;
    margin-bottom: 60px;
}

.titulo-sessao h2 {
    padding: 20px 0;
}

/* .titulo-sessao p {
    color: var(--fundo);
    line-height: 1.8;
    margin-top: 18px;
} */

.depoimentos-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.card-depoimento {
    flex: 1 1 300px;
    background: rgba(255, 255, 255, .03);
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 18px;
    padding: 30px;
    transition: .35s;
    backdrop-filter: blur(8px);
}

.card-depoimento:hover {
    transform: translateY(-8px);
    border-color: #c8a35d;
    box-shadow: 0 15px 40px rgba(0, 0, 0, .25);
}

.cliente-topo {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 20px;
}

.cliente-topo img {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #c8a35d;
}

/* .cliente-topo h3 {
    color: var(--bg-footer);
    font-size: 20px;
    margin-bottom: 5px;
} */

.cliente-topo span {
    color: var(--h3);
    font-size: 14px;
}

.estrelas {
    display: flex;
    gap: 5px;
    margin-bottom: 20px;
}

.estrelas i {
    color: #d9b15d;
    font-size: 18px;
}

.card-depoimento p {
    color: var(--fundo);
    line-height: 1.9;
    font-size: 15px;
}

@media(max-width:768px) {
    .depoimentos {
        /* padding: 70px 20px; */
    }

    .titulo-sessao {
        margin-bottom: 40px;
    }

    .card-depoimento {
        padding: 25px;
    }

    .cliente-topo h3 {
        font-size: 18px;

    }

}

.rodape {
    background: url(../img/rodape/rodape-footer.png) no-repeat center center;
    background-size: cover;
}

.rodape-container {
    max-width: 1000px;
    width: 100%;
    margin: 0 auto;
    padding: 80px 40px 20px;
    text-align: center;
}

.rodape-box img {
    width: 100px;
    height: auto;
    margin-bottom: 20px;
}

.rodape-contato-info {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.rodape-contato-tel {
    display: flex;
    align-items: center;
    gap: 8px;
}

.rodape-contato-info i {
    font-size: 20px;
    color: var(--btn-primary);
}

.rodape-contato-info span {
    font-size: 20px;
    color: var(--text-white);
}

.rodape-menu ul {
    padding: 20px;
    display: flex;
    justify-content: center;
    gap: 20px;
    list-style: none;
}

.rodape-menu ul li a {
    text-decoration: none;
    color: var(--text-white);
    transition: 0.3s;
}

.rodape-menu ul li a:hover {
    color: var(--cor-principal);
    transition: 0.3s;
}

.rodape-texto p {
    font-size: 20px;
    color: var(--text-white);
    line-height: 1.5;
    margin-top: 20px;
}


.rodape .google-maps {
    margin-top: 20px;
    width: 100%;
    height: 300px;
    border: 1px solid var(--border);
    border-radius: 10px;
}

.rodape .google-maps iframe {
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 10px;
}

.copy-term-poli {
    text-align: center;
    padding: 20px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;

    /* background: var(--bg-footer); */
}

.copy-term-poli span {
    font-size: 20px;
    color: var(--text-white);
}

.copy-term-poli a {
    text-decoration: none;
    color: var(--cor-principal);
    transition: 0.3s;
    font-size: 20px;
}

.copy-desenv a:hover {
    color: var(--btn-primary);
    transition: 0.3s;
}

.rodape-dev {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-top: 10px;
}

.rodape-dev span {
    font-size: 14px;
    color: var(--text-white);
}

.rodape-dev a {
    text-decoration: none;
    color: var(--cor-principal);
    transition: 0.3s;
    font-size: 14px;
}