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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Gantari', sans-serif, Montserrat, sans-serif, Arial, Helvetica, sans-serif;
    font-size: 13px;
    overflow-x: hidden;
}


p {
    text-align: center;
    align-items: center;
    justify-content: center;
}


/* Abaixo está conteudo para deixar a barra de rolagem black */
/* Estilizando a barra de rolagem */
::-webkit-scrollbar {
    width: 12px;
    /* Largura da barra de rolagem */
}

/* Estilizando o fundo da barra de rolagem */
::-webkit-scrollbar-track {
    background-color: black;
}

/* Estilizando o "thumb" (alça) da barra de rolagem */
::-webkit-scrollbar-thumb {
    background-color: #333;
}


/*ABAIXO ESTÁ A AREA MENU DO SITE*/

header {
    height: 70px;
    background-color: #000;
    color: #fff;
    width: 100vw;
}

.header {
    max-width: 1140px;
    height: 80px;
    margin: auto;
    display: flex;
    align-items: center;
}

.logo {
    width: 100px;
}

.logoimg {
    width: auto;
    height: auto;
}

.menu-mobile {
    display: none;
}

.menu {
    flex: 1;
    justify-content: flex-end;
    display: flex;
}

.menu ul,
.menu li {
    list-style: none;
}

.menu ul {
    display: flex;
}

.menu li a {
    color: #fff;
    text-decoration: none;
    text-transform: uppercase;
    font-weight: 600;
    display: block;
    padding-left: 10px;
    padding-right: 10px;
    padding-top: 20px;
    padding-bottom: 20px;
    display: flex;
    align-items: center;
    border-bottom: 5px solid #000;
}

.menu li a:hover,
.menu .ativo a {
    border-bottom: 5px solid #ffffff;
}


/*ABAIXO ESTÁ A AREA BOTÃO HOME DO SITE*/

.voltar-topo {
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    bottom: 120px;
    right: 20px;
    width: 40px;
    height: 40px;
    z-index: 1000;
}

/*ABAIXO ESTÁ O BOTÃO LIGAR FLUTUANTE DO SITE*/

.telefone-button {
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    bottom: 60px;
    right: 20px;
    width: 40px;
    height: 40px;
    z-index: 1000;
}

.telefone-button img {
    width: 44px;
    height: 44px;
}

/*ABAIXO ESTÁ O BOTÃO WHATSAPP FLUTUANTE DO SITE*/

.whatsapp-button {
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    bottom: 1px;
    right: 2px;
    z-index: 1000;
    padding-right: 15px;
    padding-bottom: 5px;
}

.whatsapp-button img {
    width: 44px;
    height: 44px;
}


/*ABAIXO ESTÁ A AREA BANNER DO SITE*/

.banner-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.11);
    color: #ccc;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    transition: background 0.3s ease;
    border-radius: 50%;
    font-size: 15px;
}

.banner-button:hover {
    background: rgba(255, 255, 255, 0.2);
}

#prev-button {
    left: 10px;
}

#next-button {
    right: 10px;
}

.banner {
    height: calc(105vh - 100px);
    background-color: #2c2b2b;
    background-size: cover;
    background-position: center;
    overflow: hidden;
    transition: background-image 0.5s ease-in-out;
}

.pontos.ativo {
    background-color: #FFF;
    /* Defina o estilo desejado para o ponto ativo */
}

.banner .slyders {
    width: 1000vw;
    height: 100%;
}

.banner .slyde {
    width: 100vw;
    height: 100%;
    display: inline-block;
    background-color: rgba(0, 0, 0, 0.7);
}

.banner .slyderarea {
    flex-direction: column;
    display: flex;
    height: 100%;
    justify-content: center;
    align-items: center;
    color: #fff;
}

.banner h1 {
    text-transform: uppercase;
    font-weight: bold;
    font-size: 40px;
    text-align: center;
    text-shadow: 0px 0px 12px #000;
}

.banner h1 span {
    color: #0066ff;
    text-shadow: 0px 0px 8px #000;
}

.banner h1 #frase-principal {
    color: #fff;
}

.banner h2 {
    text-transform: uppercase;
    margin-top: 20px;
}

.banner h1 #frase-secundaria {
    color: #0066ff;
}

.banner a {
    display: block;
    background-color: #0066ff;
    text-transform: uppercase;
    color: #fff;
    font-size: 12px;
    text-decoration: none;
    padding: 10px 30px;
    font-weight: 800;
    margin-top: 30px;
    border-radius: 20px;
}

.banner a:hover {
    color: rgb(0, 0, 0);
}

.banner a:hover {
    background-color: rgb(255, 255, 255);
    text-decoration: none;
}

.banner .slyders-pontos {
    width: 100vw;
    height: 20px;
    position: absolute;
    margin-top: -50px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.banner .pontos {
    width: 15px;
    height: 15px;
    border: 2px solid #0066ff;
    border-radius: 8px;
    margin-left: 5px;
    margin-right: 5px;
    cursor: pointer;
}

.banner .pontos.ativo {
    background-color: #0066ff;
}


/*ABAIXO ESTÁ A AREA MODAL DO SITE*/

.modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(255, 255, 255, 0.7);
}

.modal-content {
    position: relative;
    background-color: rgba(0, 0, 0, 1);
    margin: 15% auto;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    max-width: 400px;
    width: 90%;

    animation-name: modal-animation;
    animation-duration: 2s;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
}

.modal-title {
    text-align: center;
    font-size: 24px;
    margin-bottom: 20px;
    margin-top: 10px;
    color: #fff;
}

.modal-input {
    width: 100%;
    margin-bottom: 20px;
}

.modal-input input {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

.modal-button {
    display: block;
    width: 100%;
    padding: 10px;
    text-align: center;
    background-color: #0066ff;
    color: #fff;
    font-size: 16px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

.modal-button:hover {
    background-color: #0052cc;
}

.modal-close {
    position: absolute;
    top: 8px;
    right: 16px;
    font-size: 18px;
    color: #ffffff;
    background: none;
    border: none;
    cursor: pointer;
}

.modal-close:hover {
    color: #555;
}

#error-message {
    text-align: center;
    justify-content: center;
    margin-top: 12px;
    color: #ff0000;
    margin-bottom: 10px;
}

.placeholder {
    color: #838282;
    font-style: italic;
}

/* ABAIXO ESTÁ O CORPO DO SITE */

.default {
    padding-top: 50px;
    padding-bottom: 60px;
}

.default .section-titulo,
.default .section-descri {
    text-align: center;
    text-transform: uppercase;
    font-weight: 100px;
    margin-bottom: 50px;
}

.default .section-titulo {
    font-size: 20px;
    font-weight: bold;
}

.default .section-descri {
    font-size: 12px;
    color: #ccc;
    margin-top: 13px;
    margin-bottom: 40px;
}

.default .section-body {
    margin: auto;
    max-width: 1140px;
}

.default .light {
    background-color: #f7f7f7;
}

.default.light .section-titulo,
.default.light .section-body {
    color: #000;
}

.default.dark {
    background-color: #000;
}

.default.dark .section-titulo,
.default.dark .section-body {
    color: #fff;
}

.titulo-neon {
    position: relative;
}

.titulo-neon .section-titulo {
    text-align: center;
    color: #ffffff;
    text-shadow: 0px 2px 3px #000;
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 50px;
}

.titulo-neon-par .section-titulo-par {
    text-align: center;
    color: #000;
    text-shadow: 0px 2px 3px #000;
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 30px;
    font-family: 'Montserrat', sans-serif, Arial, Helvetica, sans-serif;
}

.titulo-neon .barra-neon {
    position: absolute;
    bottom: -5px;
    /* Ajuste a posição vertical da barra se necessário */
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    /* Largura da barra */
    height: 4px;
    /* Altura da barra */
    background-color: #ffffff;
    /* Cor da barra */
    box-shadow: 0 0 7px #ffffff;
    /* Sombra da barra */
    border-radius: 2px;
    /* Borda arredondada da barra */
}

.botao {
    display: inline-block;
    background-color: #0066ff;
    color: #fff;
    text-transform: uppercase;
    font-size: 12px;
    text-decoration: none;
    padding: 10px 30px;
    font-weight: 600;
    margin-top: 30px;
    border-radius: 20px;
}



/*ABAIXO ESTÁ A AREA SOBRE NÓS DO SITE*/


#sobre {
    position: relative;
    padding-top: 50px;
    padding-bottom: 50px;
    background-color: #000;
    color: #000;
    /* background-position: center;
    background-size: cover;
    background-image: url(../images/azull.png); */
}

/* #sobre::before {
    content: "";
    display: block;
    font-size: 5rem;
    height: 0;
    position: absolute;
    top: -4vw;
    left: -6vw;
    width: 4vw;
    border-left: 2vw solid transparent;
    border-right: 13vw solid transparent;
    border-bottom: 4.1vw solid #444;
    z-index: 2;
}

#sobre::after {
    content: "";
    display: block;
    font-size: 5rem;
    height: 1px;
    position: absolute;
    bottom: -4vw;
    left: -6vw;
    width: 4vw;
    border-right: 13vw solid transparent;
    border-left: 2vw solid transparent;
    border-top: 4.1vw solid #444;
    z-index: 2;
} */

#sobre .section-titulo,
#sobre .section-descri {
    text-align: center;
    text-transform: uppercase;
    font-weight: 100px;
    margin-bottom: 50px;
    color: #fff;
    text-shadow: 0px 2px 3px #000;
}

#sobre .section-titulo {
    font-size: 20px;
    font-weight: bold;
}

#sobre .section-descri {
    font-size: 12px;
    color: #ccc;
    margin-top: 13px;
    margin-bottom: 40px;
}

#sobre .section-body {
    margin: auto;
    max-width: 1140px;
    background: transparent;
}


.row {
    display: flex;
    flex-wrap: wrap;
    /* Permitir que os cards sejam "embrulhados" para a próxima linha */
    justify-content: space-between;
    /* Distribuir os cards uniformemente na linha */
}

.card-container {
    flex: 1 0 calc(25% - 20px);
    /* Definir o tamanho de cada card */
    box-sizing: border-box;
    margin: 10px;
}

.additional-text {
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    transition: opacity 0.4s ease, max-height 0.4s ease;
}

.initial-text {
    text-align: justify;
    font-family: Arial, Helvetica, sans-serif;
}

.additional-text {
    font-family: Arial, Helvetica, sans-serif;
    text-align: justify;
}

.hidden {
    display: none;
}

.imagem-hidden {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out, opacity 0.3s ease-out;
    height: 425px;
    /* Define a altura da imagem */
    width: 425px;
    /* Define a largura da imagem */
    object-fit: cover;
    /* Ajusta a imagem ao seu contêiner */
}

.imagem-hidden.ferramenta-show {
    max-height: 1000px;
    opacity: 1;
    transition: max-height 0.4s ease-in, opacity 0.3s ease-in;
}

.row {
    display: flex;
    align-items: stretch;
}

.card {
    height: 400px;
    position: relative;
    overflow: hidden;
    transition: all 0.2s ease-out;
    background-color: transparent;
    border-radius: 15px;
}

body:not(.mobile-device) .card:hover {
    transform: translateY(-2px);
}

.card-body {
    cursor: pointer;
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    /* background-color: #0f20bb; */
    border: 6px #013cff double;
    border-radius: 15px;
}

.card-title {
    color: #fff;
    font-size: 24px;
    margin-bottom: 20px;
    font-weight: bold;
    text-align: center;
    justify-content: center;
    align-items: center;
}

.card-icon {
    width: 75px;
    height: 75px;
}

.card-text {
    font-size: 16px;
    font-family: 'Gantari', sans-serif;
    text-align: justify;
    font-weight: bolder;
    color: #fff;
    transition: all 0.3s ease-in-out;
}

.extra-text {
    font-size: 16px;
    font-family: 'Gantari', sans-serif;
    text-align: justify;
    font-weight: 600;
    color: #fff;
    text-shadow: 0px 0px 4Px #000;
    transition: all 0.3s ease-in-out;
    padding-left: 40px;
    padding-right: 40px;
    text-align: center;
}

.card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    transition: transform 0.8s;
    transform-style: preserve-3d;
}

body:not(.mobile-device) .card:hover .card-inner {
    transform: rotateY(180deg);
}

.face,
.verso {
    position: absolute;
    width: 100%;
    height: 100%;
    -webkit-backface-visibility: hidden;
    /* Para Safari */
    backface-visibility: hidden;
}

.face {
    z-index: 2;
}

.verso {
    transform: rotateY(180deg);
}

.extra-text-hidden {
    display: none;
}

/*ABAIXO ESTÁ A AREA SERVIÇOS DO SITE*/

#servicos {
    /* padding-top: 100px;
    padding-bottom: 70px; */
    background-color: #000;
}


#servicos .section-titulo,
#servicos .section-descri {
    text-align: center;
    text-transform: uppercase;
    font-weight: 100px;
    margin-bottom: 80px;
}

#servicos .section-titulo {
    font-size: 20px;
    font-weight: bold;
}

#servicos .section-descri {
    font-size: 12px;
    color: #ccc;
    margin-top: 13px;
    margin-bottom: 40px;
}

#servicos .section-body {
    margin: auto;
    max-width: 1140px;
}



.section-services {
    display: flex;
}

.section-service {
    flex: 1;
    text-align: center;
    border-right: 1px solid #fff;
    padding: 15px;
}

.section-service:first-child {
    border-left: 1px solid #fff;
}

.section-service h4 {
    margin-top: 20px;
    text-transform: uppercase;
    font-size: 15px;
    color: #fff;
    text-shadow: 0px 0px 7px #FFF;
}

.section-service p {
    margin: 10px;
    font-size: 12px;
    color: #ccc;
    text-align: justify;
}

.p {
    text-align: center;
    font-size: 8px;
    padding-bottom: 20px;
}

.bar {
    border: 1px solid #eee;
    margin-bottom: 20px;
}

#servicos {
    padding-top: 50px;
    padding-bottom: 50px;
}

.titulo-neon {
    position: relative;
}

.titulo-neon .barra-neon {
    position: absolute;
    bottom: -15px;
    /* Ajuste a posição vertical da barra se necessário */
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    /* Largura da barra */
    height: 4px;
    /* Altura da barra */
    background-color: #ffffff;
    /* Cor da barra */
    box-shadow: 0 0 7px #ffffff;
    /* Sombra da barra */
    border-radius: 2px;
    /* Borda arredondada da barra */
    margin-bottom: -7px;
}

/*ABAIXO ESTÁ A AREA FERRAMENTA DO SITE*/

#ferramenta {
    /* padding-top: 50px; */
    background-color: #000000;
    /* background-position: center;
    background-size: cover;
    background-image: url(../images/bluee2.jpg); */
}


#ferramenta .section-titulo,
#ferramenta .section-descri {
    text-align: center;
    text-transform: uppercase;
    font-weight: 100px;
    margin-bottom: 75px;
}

#ferramenta .section-titulo {
    font-size: 20px;
    font-weight: bold;
}

#ferramenta .section-descri {
    font-size: 12px;
    color: #ccc;
    margin-top: 13px;
    margin-bottom: 40px;
}

#ferramenta .section-body {
    margin: auto;
    max-width: 1140px;
}


.section-ferramentas {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.section-ferramenta {
    display: flex;
    /* Adicionado para colocar os elementos da ferramenta na horizontal */
    align-items: center;
    border-radius: 50px;
    border: #3684fa solid 3px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.9);
    transition: all 0.2s cubic-bezier(.25, .8, .25, 1);
    /* max-width: 600px; */
    /* Removido para permitir que os elementos sejam exibidos lado a lado */
    background-color: #fff;
    padding: 20px;
    margin: 0 10px;
    /* Adicionado para criar um espaço entre os elementos */
}


.section-ferramenta-text {
    display: flex;
    flex-direction: column;
    margin-left: 10px;
}

.cel1,
.imagem-hidden {
    height: 250px;
    width: 250px;
    object-fit: cover;
    border-radius: 10px;
    margin-right: auto;
}


.section-ferramenta-text h8,
.section-ferramenta-text p {
    font-size: 16px;
    text-align: justify;
    font-family: 'Gantari', sans-serif;
    color: #666;
    hyphens: auto;
    -webkit-hyphens: auto;
    -moz-hyphens: auto;
    -ms-hyphens: auto;
}


.section-ferramenta h9 {
    font-size: 30px;
    text-align: justify;
    font-family: 'Gantari', sans-serif;
    margin-bottom: 10px;
    color: #000;
}

.section-ferramenta h8 {
    font-size: 16px;
    color: #000000;
    text-align: justify;
    font-family: 'Gantari', sans-serif;
}

.section-ferramenta-text p {
    font-size: 16px;
    text-align: justify;
    font-family: 'Gantari', sans-serif;
    color: #000000;
}

.cel1 {
    height: 325px;
    width: 425px;
    margin-right: auto;
}

.titulo-neon {
    position: relative;
}

.titulo-neon-par .barra-neon-par {
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background-color: #fff;
    box-shadow: 0 0 7px #ffffff;
    border-radius: 2px;
}

.ler-mais {
    padding: 10px 15px;
    background-color: #0052cc;
    color: #fff;
    border: none;
    border-radius: 5px;
    font-size: 14px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    width: auto;
    height: auto;
    align-self: flex-end;
    margin-top: 20px;
}

.ler-mais:hover {
    background-color: #0066ff;
}

.section-ferramenta-text .ferramenta-hidden {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out, opacity 0.3s ease-out;
}

.section-ferramenta-text .ferramenta-show {
    max-height: 1000px;
    opacity: 1;
    transition: max-height 0.4s ease-in, opacity 0.3s ease-in;
}


/*ABAIXO ESTÁ A AREA LOCALIZAÇÃO DO SITE*/

#local {
    position: relative;
    width: 100%;
    height: 100vh;
}

.section-map-area {
    position: relative;
    width: 100%;
    height: 100%;
}

.section-map-info {
    position: relative;
    width: 100%;
    height: 100%;
}

.map-container {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

#map {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}



/*ABAIXO ESTÁ A AREA PARCEIROS DO SITE*/

#parceiros {
    padding-top: 50px;
    padding-bottom: 60px;
    background-color: #000;
}


#parceiros .section-titulo,
#parceiros .section-descri {
    text-align: center;
    text-transform: uppercase;
    font-weight: 100px;
    margin-bottom: 50px;
}

#parceiros .section-titulo {
    font-size: 20px;
    font-weight: bold;
}

#parceiros .section-descri {
    font-size: 12px;
    color: #ccc;
    margin-top: 13px;
    margin-bottom: 40px;
}

#parceiros .section-body {
    margin: auto;
    max-width: 1140px;
}



.section-services {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.section-service-par1 {
    flex: 1 0 200px;
    text-align: center;
    padding: 15px;
    box-sizing: border-box;
    border-right: 1px solid #eee;
}

.section-service-par1:first-child {
    border-left: 1px solid #eee;
}

.section-service-img {
    width: 50%;
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}

.section-service-par h4 {
    text-transform: uppercase;
    font-size: 15px;
    text-shadow: 0px 0px 7px #FFF;
}

.section-service-par p {
    margin-top: 10px;
    font-size: 13px;
    color: #999;
}

.p {
    text-align: center;
    font-size: 8px;
    padding-bottom: 20px;
}

.bar {
    border: 1px solid #eee;
    margin-bottom: 20px;
}

/* #servicos {
    padding-top: 50px;
} */

.titulo-neon-par {
    position: relative;
}

.titulo-neon-par .barra-neon-par {
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background-color: #fff;
    border-radius: 2px;
}

/* AREA DE BARBEIROS DO SITE */

#barbeiros {
    padding-top: 50px;
    padding-bottom: 60px;
    background-position: center;
    background-size: cover;
    background-image: url(../images/bluee.jpg);
    color: #000;
    text-align: center;
    position: relative;
}

.barbeiros-titulo {
    font-size: 30px;
    font-weight: bold;
    margin-bottom: 50px;
}

.barbeiros-descr {
    font-size: 12px;
    color: #ccc;
    margin-bottom: 40px;
}

.barbeiros-body {
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 1140px;
    margin: auto;
    position: relative;
    top: 40px;
}

.barbeiros-nav-button {
    font-size: 20px;
    background: rgba(255, 255, 255, 0.11);
    border: none;
    cursor: pointer;
    color: #ccc;
    padding: 10px 20px;
    margin: 5px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    border-radius: 50%;
}

#barbeiros-prevBtn {
    left: 0;
}

#barbeiros-nextBtn {
    right: 0;
}

.barbeiros-buttons {
    background-color: rgba(255, 255, 255, 0.11);
}

.barbeiro-card {
    flex: 0 0 auto;
    position: relative;
    margin: 20px;
    cursor: pointer;
    width: 300px;
    height: 500px;
}

.barbeiro-img {
    border-radius: 20px;
    object-fit: cover;
    height: 100%;
    width: 100%;
}

.barbeiro-overlay {
    position: absolute;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    color: white;
    width: 100%;
    text-align: center;
    height: 75px;
    border-bottom-right-radius: 20px;
    border-bottom-left-radius: 20px;
}

.barbeiro-nome {
    font-size: 18px;
    color: #fff;
    margin: 5px;
    margin-top: 25px;
    font-weight: bold;
    text-transform: uppercase;
}

.barbeiro-card:hover .barbeiro-overlay {
    height: 75px;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.instagram-link,
.tiktok-link {
    font-size: 24px;
    color: #fff;
}

.instagram-link:hover {
    color: #E1306C;
}

.tiktok-link:hover {
    color: #69C9D0;
}

.facebook-link {
    font-size: 24px;
    color: #fff;
}

.facebook-link:hover {
    color: #1877F2;
}

@media (max-width: 767px) {

    /* Botões ocultos em telas menores */
    .barbeiros-nav-button {
        display: none;
    }
}

/*ABAIXO ESTÁ A AREA RODA PÉ DO SITE*/

#rodape {
    padding-bottom: 30px;
    padding-top: 50px;
    background-position: center;
    background-size: cover;
    background-image: url(../images/azul.png);
}


#rodape .section-titulo,
#rodape .section-descri {
    text-align: center;
    text-transform: uppercase;
    font-weight: 100px;
    margin-bottom: 50px;
}

#rodape .section-titulo {
    font-size: 20px;
    font-weight: bold;
}

#rodape .section-descri {
    font-size: 12px;
    color: #ccc;
    margin-top: 13px;
    margin-bottom: 40px;
}

#rodape .section-body {
    margin: auto;
    max-width: 1140px;
}



.rodape {
    width: 100vw;
    background-color: #000;
    display: flex;
    justify-content: center;
    align-items: center;
}

.area_all {
    flex: 1;
    text-align: center;
}

.all_text {
    margin-top: 30px;
    margin-bottom: 30px;
    color: #fff;
    font-size: 22px;
}

.all_descr {
    color: #fff;
}

.final-redes {
    color: #fff;
    text-decoration: none;
}

.final-redes:hover {
    text-decoration: none;
    color: #fff;
}

h6 .copyright {
    margin-left: 350px;
}

h6 {
    margin-top: 10px;
    font-size: 13px;
    color: #eee;
    text-align: center;
    text-decoration: none;
}


/* ABAIXO ESTÁ A ÁREA DE RESPONSIVIDADE DO SITE*/

@media screen and (max-width: 768px) {

    .row {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
    }

    /*PARCEIROS*/

    .section-services {
        flex-direction: column;
    }

    .section-service-par1 {
        flex: 1 0 auto;
        margin-bottom: 20px;
        box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.4);
        background-color: #fff;

    }

    .section-service-par1:first-child {
        margin-top: 20px;
    }

    .section-service-img {
        width: 35%;
    }

    .section-service-par1 h4 {
        font-size: 10px;
        /* Aumentando um pouco o tamanho da fonte para legibilidade */
    }

    .section-service-par1 {
        min-width: 50%;
        border-right: 0px;
    }

    .section-service-par1:first-child {
        border-left: 0;

    }

    /*FERRAMENTA*/

    .section-ferramentas {
        display: grid;
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .section-ferramenta {
        display: grid;
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 20px;
        border-radius: 10px;
    }

    .cel1 {
        grid-row: 1;
        height: 300px;
        width: 300px;
        justify-self: center;
        /* Adicionado para centralizar a imagem */
        align-items: center;
        margin-right: auto;
    }

    .section-ferramenta-text {
        grid-row: 2;
        text-align: center;
    }

    .section-ferramenta-text h8,
    .section-ferramenta-text p {
        font-size: 14px;
        font-family: 'Gantari', sans-serif;
    }

    .ler-mais {
        width: 120px;
        height: 40px;
        font-size: 14px;
        margin-top: 10px;
        align-self: center;
    }

    /*BOTÃO < >*/
    .banner-button {
        display: none;
    }

    /*RODA PÉ*/

    .copyright {
        text-align: center;
        margin-left: auto;
        font-size: 10px;
    }



}

@media (max-width: 767px) {

    /* SOBRE NÓS */

    .card-container {
        padding-right: 0 !important;
        padding-left: 0 !important;
    }


    .card-container {
        flex-basis: 100%;
        max-width: 100%;
    }

    .card {
        height: auto;
        border-radius: 0;
        cursor: pointer;
        border: 0 #fff solid;
    }

    .card-inner {
        transform: none;
    }

    .face,
    .verso {
        position: static;
        transform: none;
        width: auto;
        height: auto;
        backface-visibility: visible;
    }

    .card-title,
    .card-icon {
        transition: all 0.3s ease;
    }

    .card-body {
        position: static;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
        padding: 20px;
        background-color: rgba(3, 62, 255, 0.8);
        transition: all 0.3s ease;
        border: 0 #013cff solid;
        border-radius: 0;
    }

    .card-title {
        margin-bottom: 10px;
        font-size: 16px;
        text-align: center;
        transition: all 0.3s ease;
    }

    .card-icon {
        width: 50px;
        height: 50px;
        transition: all 0.3s ease;
    }

    .card-text,
    .extra-text {
        font-size: 14px;
        text-align: justify;
        transition: all 0.3s ease;
    }

    .extra-text {
        opacity: 0;
        max-height: 0;
        overflow: hidden;
        transition: opacity 0.4s ease, max-height 0.4s ease;
    }

    .card:hover .extra-text {
        opacity: 1;
        max-height: 1000px;
    }

    .extra-text {
        opacity: 0;
        max-height: 0;
        overflow: hidden;
        transition: opacity 0.4s ease, max-height 0.4s ease;
    }



}

@media (min-width:450px) and (max-width:800px) {

    /*MENU*/

    nav {
        display: none;
        position: absolute;
        z-index: 99;
        background-color: rgba(0, 0, 0, 1);
        width: 100%;
        height: calc(106vh - 106px);
        top: 100px;
        right: 0;
    }

    .menu ul {
        flex-direction: column;
    }

    .menu li a {
        font-weight: bold;
        margin-bottom: 7px;
        height: 80px;
        font-size: 18px;
        margin-left: 50px;
        border: 0;
        padding: 0;

    }

    .menu li.ativo a {
        border: 0;
        color: #0066ff;
    }

    .menu-mobile {
        width: 45px;
        margin-right: 30px;
        display: block;
    }

    .logoimg {
        margin-left: 20px;
    }

    header {
        height: 100px;
    }

    .header {
        height: 100px;
    }

    .menu li a {
        height: 100px;
    }

    /*FONTE BANNER*/

    .banner h1 {
        font-size: 20px;
    }

    /*SERVIÇOS*/

    .section-services {
        flex-wrap: wrap;
    }

    .section-service {
        min-width: 50%;
        border-right: 0px;
    }

    .section-service:first-child {
        border-left: 0;

    }

    /* SOBRE NÓS */

    #sobre::before {
        top: 0vw;
    }

    #sobre::after {
        bottom: 0vw;
    }
}

@media (max-width:450px) {

    /* SOBRE NÓS */


    #sobre::before {
        top: 0vw;
    }

    #sobre::after {
        bottom: 0vw;
    }


    /*MENU*/

    nav {
        display: none;
        position: absolute;
        z-index: 99;
        background-color: rgba(0, 0, 0, 1);
        width: 100%;
        height: calc(110vh - 146px);
        top: 100px;
        right: 0;
    }

    .menu ul {
        flex-direction: column;
    }

    .menu li a {
        font-weight: bold;
        margin-bottom: 0px;
        height: 70px;
        font-size: 18px;
        margin-left: 30px;
        border: 0;
        padding: 0;
    }

    .menu li.ativo a {
        border: 0;
        color: #0066ff;
    }

    .menu-mobile {
        width: 45px;
        margin-right: 30px;
        display: block;
    }

    .logoimg {
        margin-left: 20px;
    }

    header {
        height: 100px;
    }

    .header {
        height: 100px;
    }

    .menu li a {
        height: 100px;
        padding-top: -10;
        padding-bottom: -10;
    }

    /*FONTE BANNER*/

    .banner h1 {
        font-size: 27px;
    }

    .banner {
        height: calc(100vh - 100px);
        background-color: #2c2b2b;
        background-size: cover;
        background-position: center;
        overflow: hidden;
    }

    /*SERVIÇO*/

    .section-services {
        flex-wrap: wrap;
    }

    .section-service {
        min-width: 50%;
        border-right: 0px;
    }

    .section-service:first-child {
        border-left: 0;

    }

}