:root {
    /* Cores principais */
    --cor-primaria: #000000;
    --cor-secundaria: #000000;

    /* Cores Botoes */
    --cor-botao: #000000;
    --cor-hover: #000000;
    --cor-active: #000000;
}

/* Resetando alguns estilos padrões do navegador */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    background-color: #fff;
    color: #333;
    line-height: 1.6;
}

body,
html {
    overflow-x: hidden;
    /* Impede a rolagem horizontal */
    overflow-y: auto;
    /* Permite a rolagem vertical */
}

/* Adicionando para remover a rolagem lateral */
@media (max-width: 1050px) {

    body,
    html {
        overflow-x: hidden;
        /* Impede a rolagem horizontal */
        overflow-y: auto;
        /* Permite a rolagem vertical */
    }
}

/* ----------- CABEÇALHO ----------- */ 
header {
    width: 100vw;
    height: auto;
    background-color: #fff;
}

.box-superior {
    position: relative;
    z-index: 10;
    display: flex;
    justify-content: space-between;
    height: 85px;
    box-shadow: 10px 3px 8px #00000018;
    background-color: #fff;
}

/* --- LOGO --- */ 
.box-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 6vw;
    width: 280px;
}

.linklogo {
    display: flex;
    align-items: center;
}

/* Ajuste o tamanho da imagem dentro da logo */
.logo-loja {
    max-width: 280px;
    max-height: 75px;
}

.logo-loja:hover {
    cursor: pointer;
}
/* --- LOGO --- */ 

/* --- PAGINAS --- */ 
.box-cabecalho2 {
    display: flex;
    align-items: center;
    gap: 80px;
}

.box-paginasTP {
    display: none;
}

.box-paginasTG {
    display: flex;
    align-items: center;
}

/* Estilo para o menu de navegação */
.box-linksTG {
    display: flex;
    justify-content: center;
    gap: 50px;
}

/* Estilo dos itens de navegação (p) */
.box-linksTG p {
    white-space: nowrap;
}

/* Estilo para os links */
.box-linksTG p a {
    color: #535353;
    text-decoration: none;
    font-size: 1rem;
    font-weight: bold;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.pagina-foco {
    color: var(--cor-primaria) !important;
}

/* Efeito de hover nos links */
header p a:hover {
    color: var(--cor-primaria);
}
/* --- PAGINAS --- */ 

/* --- ICONS --- */ 
.box-icons {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-right: 7vw;
}

.linkicon {
    display: flex;
    align-items: center;
}

.iconcontatoheader {
    width: 35px;
    height: 35px;
}

.iconcontatoheader:hover {
    padding: 1px;
    cursor: pointer;
}
/* --- ICONS --- */

/* --- BOX PAGINAS TP --- */
@media screen and (max-width: 1050px) {
    .box-paginasTP {
        display: block;
    }

    .box-paginasTG {
        display: none;
    }
}

.box-paginasTP {
    position: relative;
}

.box-btnheaderTP {
    margin-right: 3vw;
    display: flex;
    align-items: center;
    padding: 10px;
    border-radius: 3px;
}

.icon-menuheaderTP {
    cursor: pointer;
    width: 20px;
    height: 20px;
}

.icon-fecharheaderTP {
    display: none;
    cursor: pointer;
    width: 20px;
    height: 20px;
}

.box-linksTP {
    display: none;
    position: absolute;
    top: -40px;
    right: 0px;
    width: 100vw;
    background-color: #232323;
    transform: translateY(-100%);
    transition: transform 0.40s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 5;
}

/* ANIMAÇAO */
/* Quando estiver ativo */
.box-linksTP.ativo {
    display: block;
    transform: translateY(50%);
}

/* Quando estiver sendo ocultado */
.box-linksTP.saindo {
    transform: translateY(-50%);
}
/* ANIMAÇAO */

.box-linksTP p {
    padding: 10px;
}

.box-linksTP p a {
    margin-left: 20px;
    font-size: 1rem;
    font-weight: bold;
    color: #ffffff;
    text-decoration: none;
}

.pagina-focoTP {
    background-color: #333333;
}

.link-focoTP {
    color: var(--cor-primaria) !important;
}
/* --- BOX PAGINAS TP --- */ 

/* --- IMAGENS --- */ 
.box-destaqueCabecalho {
    position: relative;
}

.box-imagens {
    width: 100%;
    height: 450px;
    background-color: #000;
    overflow: hidden;
}

.imagem-lojaheader {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    object-position: right;
    z-index: 1;
    will-change: transform;
    backface-visibility: hidden; /* ajuda a evitar flickers em alguns browsers */
}


.box-trocarImgCabecalho {
    position: absolute;
    display: flex;
    justify-content: space-between;
    text-align: center;
    top: 170px;
    width: 100vw;
    margin-top: 10px;
    padding: 0px 10px 0px 10px;
    z-index: 4;
}

.box-trocarImgCabecalho button {
    font-size: 20px;
    background-color: #00000052;
    border: none;
    color: #fff;
    padding: 10px 10px;
    border-radius: 20px;
    cursor: pointer;
    transition: 0.3s ;
}

.box-trocarImgCabecalho button:hover {
    background-color: var(--cor-primaria);
    transition: 0.3s;
}

/* TRANSIÇÃO */
/* Imagem entra no centro */
.imagem-lojaheader.ativa {
    z-index: 2;
    transform: translateX(0);
}

/* Imagem sai para a esquerda ou direita */
.imagem-lojaheader.saindo-esquerda {
    transform: translateX(-100%);
    z-index: 1;
}

.imagem-lojaheader.saindo-direita {
    transform: translateX(100%);
    z-index: 1;
}
/* TRANSIÇÃO */
/* --- IMAGENS --- */ 

@media (max-width: 1050px) {
    .box-superior {
        height: 50px;
    }

    .box-cabecalho2 {
        gap: 50px;
    }

    .box-logo {
        display: flex;
        align-items: center;
        justify-content: center;
        margin-left: 7vw;
        width: 130px;
    }

    .logo-loja {
        max-width: 130px;
        max-height: 45px;
    }

    header {
        gap: 10px;
    }

    header p a {
        font-size: 1.8;
    }

    .box-icons {
        margin-right: 0px;
        gap: 10px;
    }

    .iconcontatoheader {
        width: 30px;
        height: 30px;
    }

    .box-imagens {
        height: 300px;
    }

    /* BOX IMGS DESTAQUES */
    .box-trocarImgCabecalho {
        top: 110px;
    }
    /* BOX IMGS DESTAQUES */
}
/* ----------- FIM HEADER ----------- */ 

/* ----------- WHATSAPP FIXO ----------- */ 
.box-whatsappFixo {
    position: fixed;
    z-index: 1000;
    bottom: 50px;
    right: 50px;
}

.imagemWhatsappFixo {
    width: 80px;
    height: 80px;
    transition: transform 0.2s;
    -webkit-tap-highlight-color: transparent;
}

.imagemWhatsappFixo:hover {
    transform: scale(1.10);
    transition: transform 0.2s;
    cursor: pointer;
}

@media screen and (max-width: 1050px) {
    .box-whatsappFixo {
        bottom: 30px;
        right: 30px;
    }

    .imagemWhatsappFixo {
        width: 70px;
        height: 70px;
    }
}
/* ----------- WHATSAPP FIXO ----------- */ 

/* ----------- TITULO TOPO ----------- */ 
main {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-top: 30px;
}

.box-titulocatalogo {
    display: flex;
    flex-direction: column;
    width: 100vw;
    text-align: center;
    gap: 5px;
}

.phome {
    text-align: center;
    font-size: 1rem;
    color: #535353;
    text-transform: uppercase;
}

.p2home {
    text-align: center;
    font-size: 1.5rem;
    font-weight: bold;
    color: #535353;
    text-transform: uppercase;
}

@media (max-width: 1050px) {
    main {
        margin-top: 30px;
    }

    .box-titulocatalogo {
        width: 80vw;
        margin-bottom: 0px;
    }
    
    .phome {
        font-size: 0.8rem;
    }
    
    .p2home {
        font-size: 1.3rem;
    }
}
/* ----------- TITULO TOPO ----------- */ 

/* --------- FILTROS TG ---------- */
#filtrosTG {
    display: flex;
    justify-content: space-between;
    text-align: center;
    flex-wrap: wrap;
    padding: 20px;
    width: 100%;
    max-width: 1400px;
    text-align: center;
    gap: 1px;
    margin-top: 10px;
}

/* Estilos para o título */
#filtrosTG h1 {
    font-size: 1.2rem;
    color: #535353;
    margin: 5px 0px 5px 0px;
    text-transform: uppercase;
    width: 100%;
}

/* Estilos para os campos do filtro */
#filtrosTG select {
    padding: 10px;
    margin: 10px 5px;
    border: 1px solid #ccc;
    font-size: 1rem;
    background-color: #ffffff;
    color: #333;
    transition: border-color 0.3s ease;
    box-shadow: 1px 2px 5px #00000013;
    flex-grow: 1;
    min-width: 10%;
    max-width: 100%;
    cursor: pointer;
}

/* Estilos para os campos do filtro */
#filtrosTG input {
    padding: 10px;
    margin: 10px 5px;
    border: 1px solid #ccc;
    font-size: 1rem;
    background-color: #ffffff;
    color: #333;
    transition: border-color 0.3s ease;
    box-shadow: 1px 2px 5px #00000013;
    flex-grow: 1;
    min-width: 10%;
    max-width: 200px;
}

/* Filtros específicos (Marca e Categoria maiores) */
#marca,
#categoria {
    max-width: 350px;
}

/* Filtros Ano de e Ano até menores */
#ano-de,
#ano-ate {
    max-width: 200px;
}

/* Foco nos campos de entrada */
#filtrosTG select:focus,
#filtrosTG input:focus {
    outline: none;
    border-color: #ff5722;
}

/* Responsividade */
@media (max-width: 1050px) {
    #filtrosTG {
        flex-direction: column;
        align-items: center;
        padding: 10px;
        gap: 5px;
        /* DISPLAY */
        display: none;
        /* DISPLAY */
    }

    #filtrosTG select,
    #filtrosTG input {
        width: 85%;
        max-width: none;
        min-width: 0;
        padding: 8px;
        font-size: 0.9rem;
    }

    #filtrosTG h1 {
        margin-top: 15px;
        margin-bottom: 1px;
    }
}
/* --------- FILTROS TG ---------- */

/* -------- CATALOGO --------*/
#catalogo {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, auto));
    justify-content: center;
    align-items: center;
    gap: 15px;
    padding: 30px;
    max-width: 1600px;
    width: 90vw;
    border-radius: 10px;
    margin: 10px auto;
    background-color: #FBFBFB;
    box-shadow:inset 0px 0px 5px rgba(0, 0, 0, 0.11);
}

/*  BOX DE ERRO */
.box-erroveiculo {
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin: 50px 0px;
    gap: 10px;
    text-align: center;
    max-width: 1300px;
    width: 70vw;
    padding: 30px 0px;
    border-radius: 10px;
    background-color: #f4f4f4;
    box-shadow: inset 0px 0px 5px rgba(0, 0, 0, 0.11);
}

.txt-erroveiculo {
    font-size: 1.1rem;
}

@media (max-width: 1050px) {
    .box-erroveiculo {
        width: 95vw;
    }
}
/*  BOX DE ERRO */

/* Estilo da caixa do veículo */
.boxveiculo {
    display: flex;
    flex-direction: column;
    width: 320px;
    height: 100%;
    border-radius: 10px;
}

/* Cada veículo no catálogo */
.veiculo {
    background-color: #fff;
    box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.212);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    cursor: pointer;
    width: 320px;
    border-radius:10px;
    
}

/* Efeito de hover no card */
.veiculo:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
}

/* IMAGEM VEICULO */
.imagem-catalogo {
    width: 320px;
    height: 220px;
    overflow: hidden;
    position: relative;
    margin-bottom: 10px;
    border-radius: 10px 10px 0px 0px;
}

/* Imagem dentro do contêiner */
.imagem-catalogo img {
    width: 320px;
    height: 100%;
    object-fit: fill;
    object-position: center;
}

/* OFERTA */
.box-oferta {
    position: relative;
}

.seloOferta {
    position: absolute;
    top: -6px;
    right: 7px;
    width: 100px;
    z-index: 10;
}
/* OFERTA */

/* IMAGEM VEICULO */

.box1 {
    display: flex;
    gap: 15px;
    height: 18px;

}

.tipoveiculo {
    display: inline-block;
    margin-left: 10px;
    font-size: 0.7rem;
    font-weight: bold;
    width: auto;
    border-radius: 5px;
    padding: 0px 5px 0px 5px;
    color: #fff;
    background-color: var(--cor-primaria);
}

.tituloveiculo {
    margin-left: 10px;
    font-size: 1rem;
    font-weight: bolder;
    text-transform: uppercase;
    margin-bottom: -5px;
}

.codigoveiculo {
    font-size: 0.8rem;
    color: #6b6b6b;
}

.box2 {
    display: flex;
    font-size: 1rem;
    gap: 7px;
    align-items: center;
    font-weight: bolder;
    text-transform: uppercase;
    margin-bottom: -5px;
}

.marcaveiculo, .tituloveiculo {
    margin: 0;
    line-height: 1.5;
}

.marcaveiculo {
    margin-left: 10px;
    font-size: 1rem;
    color: #6b6b6b;
}

.tituloveiculo {
    margin-bottom: 2px;
    font-size: 1rem;
    color: var(--cor-primaria);
}

.informacoesveiculo {
    margin: 10px 0px 10px 10px;
    font-size: 0.8rem;
    text-transform: uppercase;
    color: #6b6b6b;
}

.valorcatalogo {
    margin: 0px 0px 0px 10px;
    font-size: 1.5rem;
    font-weight: bolder;
    color: var(--cor-primaria);
    text-transform: uppercase;
}

.conteudo {
    margin-left: 10px;
    margin-bottom: 10px;
    font-size: 0.8rem;
    color: #6b6b6b;
}

/* ---- ICONES -----*/
.box-icones {
    display: flex;
    justify-content: center;
    gap: 5px;
    margin-top: 10px;
    margin-bottom: 10px;
}

.box-cambio, .box-km, .box-combustivel {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    width: 30%;
    border-radius: 5px;
    padding: 5px;
}

.imagem-icon {
    width: 20px;
    height: 20px;
}

.cambioveiculo, .kmveiculo, .combustivelveiculo {
    color: #535353;
    font-size: 0.8rem;
}
/* ---- ICONES -----*/

/* TELAS MENORES */
@media (max-width: 1200px) {
    #catalogo {
        width: 95vw;
    }
    /* Estilo da caixa do veículo */
    .boxveiculo {
        width: 100%;
    }

    /* Cada veículo no catálogo */
    .veiculo {
        width: 100%;
    }

    /* IMAGEM VEICULO */
    .imagem-catalogo {
        width: 100%;
        height: 100%;
    }

    /* Imagem dentro do contêiner */
    .imagem-catalogo img {
        width: 100%;
        height: 100%;
    }
}
@media (max-width: 1050px) {
    #catalogo {
        margin: 25px auto;
    }

    .tituloveiculo {
        margin-bottom: 0px;
    }
}
/* TELAS MENORES */
/* -------- FIM -------- */

/* Estilos para o estoque completo */
.estoquecompleto {
    display: flex;
    justify-content: space-between;
    margin: 40px auto;
    max-width: 100%;
    height: 400px;
    width: 100%;
    position: relative;
    /* Definindo o contêiner como relativo */
}

/* Estilo para a primeira seção (estoque box 1) */
.estoquebox1 {
    width: 40%;
    padding: 20px;
    background-color: #232323;
    color: #fff;
    text-align: left;
}

.estoquebox1 p {
    font-size: 2.4rem;
    text-transform: uppercase;
    margin: 0;
    margin-left: 35%;
}

.estoquebox1 h1 {
    font-size: 2.4rem;
    font-weight: bold;
    text-transform: uppercase;
    color: var(--cor-primaria);
    margin: -15px 0px -15px 0px;
    margin-left: 35%;
}

.carroestoque {
    position: absolute;
    z-index: 10;
    max-width: 700px;
    margin-left: 12%;
    top: 53%;
    left: 1%;
}

/* Estilo para a segunda seção (estoque box 2) */
.estoquebox2 {
    width: 60%;
    padding: 20px;
    color: #333;
    text-align: center;
    background-color: #FBFBFB;
    box-shadow:inset 0px 0px 5px rgba(0, 0, 0, 0.11);
}

.estoquebox2 h1 {
    font-size: 1.8rem;
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 20px;
    margin-right: 20%;
    color: #3b3b3b;
}

.estoquebox2 h3 {
    font-size: 1rem;
    color: #555;
    margin-bottom: 15px;
    margin-right: 20%;
}

/* Estilo para o botão dentro do estoque box 2 */
.estoquebox2 a .bntestoque {
    background-color: var(--cor-botao);
    color: #fff;
    border: none;
    padding: 15px 30px;
    font-size: 1.2rem;
    font-weight: bold;
    text-transform: uppercase;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.3s;
    margin-right: 20%;
    box-shadow: 1px 1px 4px #0000002a;
}

/* Efeitos de interação com o botão */
.estoquebox2 a .bntestoque:hover {
    background-color: var(--cor-hover);
    transform: scale(1.05);
}

.estoquebox2 a .bntestoque:active {
    background-color: var(--cor-active);
    transform: scale(0.98);
}

/* Responsividade */
@media (max-width: 1550px) {

    .estoquebox1 p,
    .estoquebox1 h1 {
        margin-left: 8%;
    }

    .estoquebox2 h1,
    .estoquebox2 h3,
    .estoquebox2 a .bntestoque {
        margin-right: 5%;
    }
}

/* Responsividade */
@media (max-width: 1050px) {
    .estoquecompleto {
        max-width: 100%;
        height: 500px;
        flex-direction: column;
        align-items: center;
    }

    .estoquebox1 {
        width: 100%;
        min-height: 300px;
        margin-left: 0px;
    }

    .estoquebox2 {
        width: 100%;
    }

    .estoquebox1 p {
        font-size: 2.1em;
        margin-left: 0px;
    }

    .estoquebox1 h1 {
        font-size: 2.1em;
        margin-left: 0px;
    }

    .carroestoque {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        max-width: 90%;
        margin-left: 0px;
        z-index: 10;
    }

    .estoquebox2 h1 {
        margin-top: 90px;
        margin-right: 0px;
    }

    .estoquebox2 h3 {
        margin-right: 0px;
    }

    .estoquebox2 a .bntestoque {
        margin-right: 0px;
    }
}

@media (max-width: 500px) {
    .estoquebox1 {
        min-height: 50%;
    }

    .estoquebox1 p {
        font-size: 2.1em;
    }

    .estoquebox1 h1 {
        font-size: 2.1em;
    }

    .carroestoque {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -68%);
        max-width: 95%;
        z-index: 10;
    }

    .estoquebox2 h1 {
        margin-top: 35px;
    }
}

/* --- PAINEL INSTAGRAM --- */
/* BASE */
.main-instagramLoja {
    margin-top: 30px;
    min-width: 60vw;
}

.titulo-painelInstagram {
    font-size: 1.8rem;
    font-weight: 700;
    color: #333333;
}

#linkPainelInstagram {
    text-decoration: none;
}

.boxbody-instagram {
    border: 1px solid #53535333;
    border-radius: 8px;
    background-color: #232323;
}
/* BASE */

/* HEAD */
.boxhead-instagram {
    position: relative;
    z-index: 0;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-left: 30px;
    height: 150px;
}

/* imagem banner loja */
.imagem-storysInstagram {
    position: absolute;
    z-index: 4;
    width: 110px;
    height: 110px;
}

.imagemCapaInstagram {
    padding: 7px;
    width: 110px;
    height: 110px;
}

.icon-instagramTopo {
    position: absolute;
    z-index: 4;
    top: 1px;
    right: 1px;
    margin: 5px 5px 0px 0px;
    width: 30px;
    height: 30px;
}
/* imagem banner loja */

/* informações loja */
#id-instagram {
    font-size: 0.9rem;
    font-weight: bold;
    color: #fff;
}

#nome-instagram {
    font-size: 1.2rem;
    font-weight: 100;
    color: #fff;
}

#seguidores-instagram, #publi-instagram {
    color: #bbbbbb;
}
/* informações loja */
/* HEAD */

/* FEED */
.box-feedInstagram {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
    max-width: 100%;
    padding-bottom: 20px;
}

.imagemFeedInstagram {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.imagemFeedInstagram:hover {
    opacity: 0.5;
}

.btn-painelInstagram {
    all: unset;
    text-align: center;
    background-color: var(--cor-primaria);
    color: #000;
    border-radius: 5px;
    font-weight: 600;
    margin-left: 2.5%;
    width: 95%;
    padding: 5px 0px 5px 0px;
    margin-bottom: 10px;
}

.btn-painelInstagram:hover {
    background-color: var(--cor-hover);
}
/* FEED */

/* TELAS MENORES */
@media (max-width: 1050px) {
    .main-instagramLoja {
        margin-top: 110px;
        width: 90vw;
    }

    .titulo-painelInstagram {
        font-size: 1.3rem;
    }

    /* CABECALHO */
    .boxhead-instagram {
        margin-left: 20px;
    }

    .imagem-storysInstagram {
        width: 80px;
        height: 80px;
    }

    .imagemCapaInstagram {
        width: 80px;
        height: 80px;
    }

    #id-instagram {
        font-size: 0.8rem;
    }

    #nome-instagram {
        font-size: 1rem;
    }

    #seguidores-instagram, #publi-instagram {
        font-size: 0.9rem;
    }
    /* CABECALHO */
}

/* MARGENS EM TELAS MENORES */
@media (max-width: 700px) {
    .main-instagramLoja {
        margin-top: 100px;
    }
}

@media (max-width: 500px) {
    .main-instagramLoja {
        margin-top:70px;
    }
}

@media (max-width: 370px) {
    .main-instagramLoja {
        margin-top:70px;
    }
}

@media (max-width: 350px) {
    .main-instagramLoja {
        margin-top:90px;
    }
}
/* --- PAINEL INSTAGRAM --- */

/*-------- CONTATO --------*/
.contato {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    text-align: center;
    max-width: 1200px;
    margin: 30px 0px;
}

.titulocontato {
    font-size: 2rem;
    font-weight: bold;
    text-transform: uppercase;
    color: #333;
    width: 100%;
    margin-bottom: 5px;
}

.contato .whatsapp,
.contato .instagram,
.contato .facebook {
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #ffffff;
    padding: 60px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    width: 350px;
    text-align: center;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.contato .whatsapp a,
.contato .instagram a,
.contato .facebook a {
    display: block;
    text-decoration: none;
    color: inherit;
}

.contato .iconcontato img {
    width: 60px;
    height: 60px;
    object-fit: contain;
    margin-bottom: 15px;
}

.contato .textcontato {
    font-size: 1.2rem;
    color: #333;
    font-weight: bold;
    margin-bottom: 10px;
}

.contato .subtextcontato {
    font-size: 0.9rem;
    color: #ffffff;
    position: absolute;
    left: 0;
    right: 0;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    transition: 0.2s;
}

/* Posição inicial do subtexto */
.contato .whatsapp .subtextcontato,
.contato .instagram .subtextcontato,
.contato .facebook .subtextcontato {
    opacity: 0;
    visibility: hidden;
    bottom: -50px;
    transition: opacity 0.3s ease, bottom 0.3s ease;
    transition-delay: 0.3s;
}

/* Exibe "ENTRE EM CONTATO!" ao passar o mouse */
.contato .whatsapp:hover,
.contato .instagram:hover,
.contato .facebook:hover {
    transform: translateY(-30px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

/* Exibe "ENTRE EM CONTATO!" ao passar o mouse */
.contato .whatsapp:hover .subtextcontato,
.contato .instagram:hover .subtextcontato,
.contato .facebook:hover .subtextcontato {
    opacity: 1;
    padding: 10px;
    visibility: visible;
    bottom: -30px;
    transition: opacity 0.3s ease, bottom 0.3s ease;
    transition-delay: 0s;
}

/* Cores para o subtexto "ENTRE EM CONTATO!" */
.contato .whatsapp .subtextcontato {
    background-color: #25D366;
    color: #ffffff;
}

.contato .instagram .subtextcontato {
    background-color: #E4405F;
    color: #ffffff;
}

.contato .facebook .subtextcontato {
    background-color: #1877F2;
    color: #ffffff;
}

/* Responsividade */
@media (max-width: 1050px) {
    .contato {
        margin: 70px auto;
        flex-direction: column;
        gap: 50px;
        align-items: center;
    }

    .titulocontato {
        margin-bottom: -25px;
        font-size: 1.6rem;
    }

    .contato .whatsapp,
    .contato .instagram,
    .contato .facebook {
        width: 80vw;
        max-width: 420px;
        max-height: 280px;
    }
}
/*-------- CONTATO --------*/

/*-------- LOCALIZACAO --------*/
.localizacao {
    padding: 30px;
    border-radius: 2px;
    text-align: left;
    max-width: 80vw;
    width: 1600px;
    margin: 10px auto;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    gap: 30px;
}

.loctext {
    width: 600px;
    text-align: left;
}

.loctitulo {
    font-size: 1.5rem;
    font-weight: bold;
    text-transform: uppercase;
    color: #333;
    line-height: 1.5;
    text-align: center;
    margin-top: 30px;
    margin-bottom: 70px;
}

.loctitulo p {
    text-align: left;
    padding: 0;
    margin-top: -30px;
}

.loctxtnormal {
    font-size: 60px;
    font-weight: 100;
}

.loctxtmod {
    font-size: 60px;
    font-weight: bold;
    color: var(--cor-primaria);
}

.locendereco {
    margin-top: 20px;
    /* Ajusta o espaçamento superior */
}

.locendereco h2 {
    font-size: 1.2rem;
    font-weight: bold;
    color: #333;
    margin-bottom: 5px;
}

.locendereco h3 {
    font-size: 1rem;
    color: #666;
    margin-bottom: 20px;
}

.locmapa iframe {
    width: 50vw;
    height: 500px;
    border: none;
}

/* Responsividade para telas menores */
@media (max-width: 1500px) {
    .localizacao {
        max-width: 100vw;
    }
}

@media (max-width: 1050px) {
    .localizacao {
        max-width: 100vw;
        flex-direction: column;
        align-items: center;
    }

    .locmapa iframe {
        width: 80vw;
        height: 300px;
    }

    .loctext {
        width: 80vw;
    }

    .loctitulo {
        font-size: 1.2rem;
        width: 80vw;
    }
}

@media (max-width: 500px) {
    .loctitulo {
        margin-top: 30px;
        margin-bottom: 30px;
        line-height: 1.7;
    }

    .loctxtnormal {
        font-size: 2.5rem;
    }

    .loctxtmod {
        font-size: 2.5rem;
    }
}
/*-------- LOCALIZACAO --------*/

footer {
    background-color: #232323;
    /* Cor de fundo */
    color: #fff;
    /* Cor do texto */
    padding: 20px;
    display: flex;
    flex-direction: column;
    /* Coluna para o conteúdo geral */
    align-items: center;
    /* Centraliza o conteúdo na tela */
}

.titulomapa {
    margin: auto;
    font-size: 30px;
    margin-bottom: 25px;
}

.mapasite {
    display: flex;
    justify-content: center;
    /* Centraliza os itens horizontalmente */
    width: 100%;
    gap: 30px;
    /* Espaçamento entre os itens */
    flex-wrap: wrap;
    /* Permite que os itens se ajustem quando necessário */
}

.boxmapa1,
.boxmapa2 {
    list-style: none;
    padding: 0;
    margin-left: 90px;
    width: 200px;
    /* Definido um tamanho fixo para os blocos */
    display: flex;
    flex-direction: column;
    /* Os links serão empilhados na vertical */
    align-items: flex-start;
    /* Alinha os links à esquerda dentro de cada bloco */
}

.boxmapa1 li,
.boxmapa2 li {
    margin-bottom: 10px;
    /* Espaçamento entre os itens */
}

.boxmapa1 a,
.boxmapa2 a {
    margin-bottom: -10px;
    color: #fff;
    /* Cor dos links */
    text-decoration: none;
    /* Remove o sublinhado dos links */
    display: block;
    /* Garante que o link ocupe toda a largura do item */
    padding: 3px 0;
    /* Espaçamento interno dos links */
    text-align: left;
    /* Alinha o texto do link à esquerda */
}

.boxmapa1 a:hover,
.boxmapa2 a:hover {
    color: #00aaff;
    /* Cor do link ao passar o mouse */
    transition: color 0.3s ease;
    /* Transição suave de cor */
}

.devcontato {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    margin-top: 60px;
}

.titulodev {
    font-size: 1.5rem;
}

.devicon {
    width: 40px;
    height: 40px;
    margin-bottom: 10px;
}

.devsocial {
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    font-weight: bold;
}

.devsocial:hover {
    color: #00aaff;
    /* Cor ao passar o mouse */
}

.rodape {
    width: 100%;
    text-align: left;
    /* Ajusta para a esquerda */
    margin-top: 20px;
    padding: 20px;
    font-size: 14px;
    color: #ddd;
    /* Cor do texto */
    background-color: #333;
    /* Cor de fundo do parágrafo */
}