: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 --- */ 

@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;
    }
}
/* ----------- FIM HEADER ----------- */ 

/* --------- MODAL DE CONFIRMACAO ---------- */
#modal-alerta-envio {
    display: none;
    justify-content: center;
    position: fixed;
    z-index: 100;
    top: 0; left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.5);
    justify-content: center;
    align-items: center;
}

#modal-alerta-msg {
    position: relative;
    font-size: 2rem;
    font-weight: bold;
    display: inline-block;
}

#modal-alerta-msg::after {
    content: "";
    position: absolute;
    left: 40%;
    bottom: 0;
    width: 20%;
    height: 2px;
    background-color: var(--cor-primaria);
}

#modal-alerta-msg2{
    margin-top: 10px;
    font-size: 1.1rem;
}

#modal-alerta-msg3{
    margin-top: 30px;
    font-size: 1rem;
    font-weight: bold;
}

#modal-alerta-msg4{
    font-size: 1rem;
}

#modal-alerta-msg5{
    margin-top: 30px;
    font-size: 1rem;
    font-weight: bold;
}

.content-modal {
    background: white;
    max-width: 700px;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 0 15px rgba(0,0,0,0.3);
    border-top: 5px solid var(--cor-primaria);
    position: relative;
}

/* Barra de progresso */
#progress-bar-container {
    width: 100%;
    height: 5px;
    background-color: #f0f0f0;
    margin: 20px 0px 5px 0px;
}

#progress-bar {
    height: 100%;
    width: 0;
    background-color: var(--cor-primaria);
    border-radius: 5px;
    transition: width 0.02s linear;
}

/* BOTOES */
.box-btnmodal {
    display: flex;
    justify-content: space-between;
    margin-top: 40px;
}

/* FECHAR */
#btn-fechar-alerta-envio {
    padding: 10px 25px;
    border: none;
    border-radius: 5px;
    font-weight: bold;
    background-color: rgb(250, 10, 30);
    color: white;
    cursor: pointer;
    transition: background 0.2s;
}

#btn-fechar-alerta-envio:hover {
    background-color: rgb(167, 0, 0);
}

/* WHATSAPP */
.btn-enviarWppConsignado {
    padding: 10px 25px;
    border: none;
    border-radius: 5px;
    font-weight: bold;
    background-color: var(--cor-botao);
    color: white;
    cursor: pointer;
    transition: background 0.2s;
}

.btn-enviarWppConsignado:hover {
    background-color: var(--cor-hover);
}
/* BOTOES */

@media (max-width: 1050px) {
    .content-modal {
        width: 80vw;
        height: auto;
    }

    #modal-alerta-msg {
        font-size: 1.3rem;
    }

    #modal-alerta-msg2 {
    font-size: 1rem;
    }

    #modal-alerta-msg3{ 
    font-size: 0.9rem;
    }

    #modal-alerta-msg4 {
        font-size: 0.8rem;
    }

    #modal-alerta-msg5 {
        font-size: 0.9rem;
    }

    .btn-enviarWppConsignado, #btn-fechar-alerta-envio {
        width: 40%;
        padding: 5px 10px;
    }
}
/* --------- MODAL DE CONFIRMACAO ---------- */

/* --------- MODAL DE ERRO ---------- */
.box-modalErro {
    position: relative;
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    justify-content: center;
    align-items: center;
}

.modal-content {
    position: absolute;
    text-align: center;
    top: 5vh;
    background-color: #fff;
    border-top: 4px solid var(--cor-primaria);
    padding: 20px 30px;
    border-radius: 10px;
    max-width: 400px;
    width: 90vw;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    animation: fadeIn 0.3s ease;
}

.btn-fecharErro {
    position: absolute;
    top: 5px;
    right: 10px;
    font-size: 24px;
    color: #888;
    cursor: pointer;
}

.btn-fecharErro:hover {
    color: red;
}

/* Barra de progresso */
#progress-bar-containerErro {
    width: 100%;
    height: 5px;
    background-color: #f0f0f0;
    margin: 20px 0px 5px 0px;
}

#progress-barErro {
    height: 100%;
    width: 0;
    background-color: var(--cor-primaria);
    border-radius: 5px;
    transition: width 0.02s linear;
}

@keyframes fadeIn {
    from { opacity: 0; transform: scale(0.95); }
    to { opacity: 1; transform: scale(1); }
}
/* --------- MODAL DE ERRO ---------- */

/* ----------- 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 ----------- */

/* Centralização do conteúdo principal */
main {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center; 
}

.box-tituloform {
    width: 90vw;
    text-align: center;
}

/* Estilo para o título h1 */
.titulo {
    font-size: 2rem;
    color: #535353;
    margin: 40px 0 20px;
    font-weight: bold;
    text-transform: uppercase; 
    position: relative; 
}

/* Adicionando uma linha sutil abaixo do título */
.titulo::after {
    content: '';
    display: block;
    width: 60px;
    height: 2px;
    background-color: var(--cor-primaria);
    margin: 10px auto 0;
}

.subtitulo {
    color: #535353;
}

.box-formulario {
    width: 700px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    margin: 30px auto;
    background-color: #FBFBFB;
    border-radius: 8px;
    padding: 20px 0px;
    box-shadow:inset 0px 0px 5px rgba(0, 0, 0, 0.11);
}

.titulo-form {
    font-size: 1.5rem;
    font-weight: bold;
    color: #535353;
}

#formInfo, #formContato {
    width: 600px; 
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
}

.box-leilao, .box-anuncio, .box-veiculo, .box-valorveiculo, .box-infoextra, .box-combustivel {
    border-top: 1px solid #F1F1F1;
    padding: 10px 0px 10px 0px;
    margin-top: 15px;
}

.box-valorveiculo, .box-anuncio {
    border-bottom: 1px solid #F1F1F1;
    margin-bottom: 15px;
}

/* Inputs */
input[type="text"], input[type="number"], input[type="email"], input[type="file"] {
    width: 100%;
    padding: 12px;
    margin: 10px 0;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-size: 1rem;
    color: #333;
    background-color: #f9f9f9;
}

input[type="text"]:focus, input[type="email"]:focus, input[type="file"]:focus, input[type="number"]:focus {
    border-color: var(--cor-primaria);
    outline: none;
}

#btnEnviar {
    width: 100%;
    padding: 12px;
    background-color: var(--cor-botao);
    color: #fff;
    border: none;
    font-size: 1.2rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin-top: 15px;
}

#btnEnviar:hover {
    background-color: var(--cor-hover);
}

/* ESTILOS PARA OS RADIOS */
.box-checkbox {
    display: flex;
    justify-content: center;
    margin-top: 10px;
    gap: 30px;
}

input[type="radio"] {
    display: none;
}

.box-checkbox label {
    padding: 2px 8px;
    border: 1px solid #ccc;
    border-radius: 20px;
    background-color: #fff;
    color: #333;
    font-weight: 500;
    transition: all 0.2s ease;
    user-select: none;
}

.box-checkbox label:hover {
    cursor: pointer;
    background-color: #e2e2e2;
}

input[type="radio"]:checked + label {
    background-color: var(--cor-primaria);
    color: white;
    border-color: var(--cor-primaria);
}
/* ESTILOS PARA OS RADIOS */

/* Estilo para o botão de remover */
input[type="image"] {
    width: 100%;
    height: auto;
    border-radius: 8px;
    margin-top: 10px;
}

.text-gnv, .text-leilao, .text-anuncio {
    font-size: 1rem;
    font-weight: bold;
    color: #535353;
}

.box-telefone {
    display: flex;
    gap: 10px;
}

.input-ddi, .input-ddd {
    max-width: 25%;
}

@media (max-width: 1050px) {
    .titulo {
        margin: 25px 0 7px;
        font-size: 1.2rem;
    }

    .subtitulo {
        font-size: 0.9rem;
    }

    .box-formulario {
        width: 95vw;
        margin: 20px auto;
    }

    .titulo-form {
        font-size: 1.3rem;
    }

    #formInfo {
        width: 80vw;
    }

    #formContato {
        width: 80vw;
    }
}

/*-------- 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 */
}