/* ========================================= */
/* ESTILOS GERAIS                             */
/* ========================================= */
:root {
    --yellow: #d4af37;
    --dark-gray: #1c1c1c;
    --light-gray: #f5f5f5;
    --text-color: #333;
    --border-color: #ddd;
}

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

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--white);
    color: var(--text-color);
    margin: 0;
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    /* gap: 10px; -- espaço entre telefone, email e botão 
    text-decoration: none; */
    justify-content: space-between;
    width: 100%;
    box-sizing: border-box; 
}

h1, h2, h3 {
    margin-top: 0;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

button {
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    border-radius: 5px;
    transition: background-color 0.3s ease, color 0.3s ease;
}

img {
    width: 100%;
    height: auto;
}

/* ========================================= */
/* HEADER                                  */
/* ========================================= */
header {
    background-color: var(--white);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    padding: 0;
}


.header-top {
    padding: 10px 0;
    font-size: 14px;
    color: #666;
}

.header-top .contato,
.header-top .acao-usuario {
    display: flex;
    align-items: center;
    gap: 15px;
}

.header-top .contato i,
.header-top .acao-usuario i {
    color: var(--yellow);
}

.botao_entrar {
    background: none;
    border: 1px solid var(--yellow);
    padding: 5px 15px;
    font-weight: bold;
}

.botao_entrar:hover {
    background-color: var(--yellow);
    color: var(--dark-gray);
}

hr.linha {
    border: none;
    height: 1px;
    background-color: var(--border-color);
    margin: 0;
}


.header-principal {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.logo {
    font-size: 24px;
    font-weight: bold;
    color: var(--dark-gray);
    margin: 0;
}

.navegacao {
    display: flex;
    gap: 30px;
    margin: 0 auto; 
}

.navegacao a {
    font-weight: 500;
    padding-bottom: 5px;
    border-bottom: 2px solid transparent;
}

.navegacao a:hover {
    color: var(--yellow);
    border-bottom-color: var(--yellow);
}

.header-direita {
    display: flex;
    align-items: center;
    gap: 20px;
}

.campo-busca-container {
    display: flex;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
}

.campo-busca-container input {
    border: none;
    padding: 8px 15px;
    outline: none;
}

.campo-busca-container .botao-busca {
    background: none;
    border: none;
    padding: 0 12px;
    color: #555;
}

.bota-carrinho {
    background-color: var(--dark-gray);
    color: var(--yellow);
    padding: 10px 20px;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 8px;
    border: none;
}

.bota-carrinho:hover {
    background-color: #333;
}

/* ========================================= */
/* MAIN                                       */
/* ========================================= */
main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

section {
    margin-bottom: 60px;
    text-align: left;
}

section h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: var(--dark-gray);
}

section p {
    font-size: 16px;
    color: #555;
    max-width: 800px;
    margin-bottom: 20px;
}

/* ========================================= */
/* BANNER / HERO                              */
/* ========================================= */
.hero-section {
    padding: 60px 20px;
    background-color: #1c1c1c;
    color: #fff;
    width: 100vw;       
    margin-left: calc(-50vw + 50%);
}

.hero-content {
    max-width: 1180px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
}

.hero-text {
    flex: 1;
    min-width: 300px;
}

.hero-text h1 {
    color: #d4af37;
    font-size: 48px;
    font-weight: bold;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-text p {
    font-size: 16px;
    color: #d4af37;
    line-height: 1.5;
    margin-bottom: 30px;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    margin-bottom: 40px;
}

.button-primary,
.button-secondary {
    padding: 12px 25px;
    border-radius: 5px;
    font-weight: bold;
    text-decoration: none;
    transition: background-color 0.3s;
}

.button-primary {
    background-color: #d4af37;
    color: #000;
}

.button-primary:hover {
    background-color: #e6c100;
}

.button-secondary {
    background-color: transparent;
    border: 2px solid #d4af37;
    color: #d4af37;
}

.button-secondary:hover {
    background-color: #333;
    color: #d4af37;
}

.hero-info {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    margin-top: 20px;
}

.info-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.info-number {
    font-size: 24px;
    font-weight: bold;
    color: #d4af37;
}

.info-text {
    font-size: 14px;
    color: #d4af37;
    margin-top: 5px;
}

.hero-image-container {
    flex: 1;
    min-width: 300px;
    position: relative;
}

.hero-image-container img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    object-position: center;
    display: block;
    border-radius: 8px;
}

.premium-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background-color: #f7d000;
    color: #000;
    padding: 5px 15px;
    border-radius: 50px;
    font-weight: bold;
    font-size: 12px;
    text-transform: uppercase;
}

/* ========================================= */
/* SEÇÕES: QUEM, HISTÓRIA, DIFERENCIAL        */
/* ========================================= */

.quem-conteudo {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    text-align: center;
}

.quem-conteudo span {
    color: var(--yellow);
    font-weight: bold;
}

.historia-row {
    display: flex;
    align-items: stretch;
    gap: 50px;
    flex-wrap: wrap;
}

/* Here is where main css begins */
.hero-section {
    background-color: #1a1a1a;
    color: #fff;
    padding: 50px 50px;
    font-family: Arial, sans-serif;
}

/* Container do conteúdo (texto e imagem) */
.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px; /* Espaço entre as colunas */
    padding: 0 20px;
}

/* Estilos para o lado esquerdo (texto) */
.hero-text {
    flex: 1;
}

.hero-text h1 {
    color: #ffcc00;
    font-size: 48px;
    font-weight: bold;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-text p {
    font-size: 16px;
    color: #ffcc00;
    line-height: 1.5;
    margin-bottom: 30px;
}

/* Estilos para os botões */
.hero-buttons {
    display: flex;
    gap: 15px;
    margin-bottom: 40px;
}

.button-primary,
.button-secondary {
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s;
}

.button-primary {
    background-color: #ffcc00;
    color: #000;
}

.button-primary:hover {
    background-color: #e6c100;
}

.button-secondary {
    background-color: transparent;
    border: 1px solid #ffcc00;
    color: #ffcc00;
}

.button-secondary:hover {
    background-color: rgb(7, 7, 7);
}

/* Estilos para as informações (7 Anos, etc) */
.hero-info {
    display: flex;
    gap: 40px;
}

.info-item {
    color: #ffcc00;
    display: flex;
    flex-direction: column;
    text-align: center;
}

.info-number {
    color: #ffcc00;
    font-size: 24px;
    font-weight: bold;
}

.info-text {
    font-size: 14px;
    color: #ffcc00;
    margin-top: 5px;
}

/* Estilos para o lado direito (imagem) */
.hero-image-container {
    flex: 1;
    position: relative;
    max-width: 600px;
}

.hero-image-container img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
}

/* Estilos para o selo "Premium" */
.premium-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background-color: #f7d000;
    color: #000;
    padding: 5px 15px;
    border-radius: 50px;
    font-weight: bold;
    font-size: 12px;
    text-transform: uppercase;
}

.historia-texto {
    flex: 1;
    min-width: 300px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}


.historia-texto h2 {
    font-size: 2rem;
    font-weight: bold;
    color: var(--dark-gray);
    margin-bottom: 20px;
}

.historia-texto p {
    color: #555;
    line-height: 1.7;
}


.historia-imagem {
    flex: 1;
    min-width: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}


.historia-imagem img {
    width: 100%;
    height: auto;
    max-height: 350px; 
    object-fit: cover; 
    border-radius: 12px;
    display: block;
}


.historia-texto .btn-historia {
    margin-top: 30px;
    background-color: var(--dark-gray);
    color: var(--yellow);
    padding: 12px 28px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
    font-size: 1rem;
    transition: transform 0.3s ease, background-color 0.3s ease;
    align-self: flex-start; 
}

.historia-texto .btn-historia:hover {
    background-color: #333;
    transform: translateY(-3px);
}


.diferencial h2 {
    text-align: center;
    font-size: 2rem;
    color: var(--dark-gray);
    margin-bottom: 40px;
}


.diferencial-lista {
    list-style: none;
    padding: 0;
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}


.diferencial-item {
    background-color: #fff;
    width: 260px;
    padding: 2rem 1.5rem;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    text-align: left;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}


.diferencial-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    border-color: var(--yellow);
}


.icon-circle {
    width: 60px;
    height: 60px;
    background-color: var(--yellow);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}


.icon-circle i {
    font-size: 1.8rem;
    color: var(--dark-gray);
}


.diferencial-item h3 {
    color: var(--dark-gray);
    font-weight: bold;
    font-size: 1.1rem;
    margin: 0 0 10px 0;
}


.diferencial-item p {
    font-size: 0.9rem;
    color: #777;
    line-height: 1.6;
    margin: 0;
}
/* ========================================= */
/* AGENDAMENTO                                 */
/* ========================================= */

.agendamento {
    background-color: var(--dark-gray); 
    color: #fff;
    padding: 60px 40px; 
    border-radius: 10px;
    margin-top: 50px; 
}

.agendamento-conteudo {
    display: flex;
    align-items: center;    
    justify-content: center;
    gap: 50px;               
    max-width: 1100px;
    margin: 0 auto;
    flex-wrap: wrap; 
}


.agendamento-texto {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}


.agendamento-texto h2 {
    font-size: 2.5rem; 
    margin-bottom: 20px;
    color: var(--yellow);
}

.agendamento-texto p {
    font-size: 1rem;
    color: #ccc;
    line-height: 1.6;
}

.btn-agendamento {
    background-color: var(--yellow);
    color: var(--dark-gray);
    padding: 15px 30px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
    font-size: 1rem;
    margin-top: 30px;
    transition: background-color 0.3s ease;
}

.btn-agendamento:hover {
    background-color: #c5a030;
}

.agendamento-imagem img {
    max-width: 450px;
    height: auto;
    border-radius: 8px;
    display: block;
}

/* ========================================= */
/* BOXES / SERVIÇOS                            */
/* ========================================= */
.servicos-grid {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}


#patrocinadores {
    text-align: center;
    margin-top: 60px;
    margin-bottom: 30px;
    font-size: 28px;
    font-weight: 700;
    color: #333;
    letter-spacing: 1px;
    text-transform: uppercase;
    position: relative;
    overflow: hidden;
    text-shadow: 1px 1px 5px rgba(242, 193, 0, 0.407);


}

/* ========================================= */
/* FOOTER                                     */
/* ========================================= */
.footer {
    background-color: var(--dark-gray);
    padding: 50px 20px;
    color: #ccc;
}

.footer_container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.footer_title {
    margin-bottom: 20px;
    color: var(--yellow);
    font-weight: bold;
}

.footer_section p, .footer_section ul li a {
    font-size: 14px;
    color: #ccc;
}

.footer_section ul {
    list-style: none;
    padding: 0;
}

.footer_section ul li {
    margin-bottom: 10px;
}

.footer_section ul li a:hover {
    color: var(--yellow);
}

.social_icons {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social_icons img {
    width: 30px;
    filter: grayscale(100%) brightness(0.8);
    transition: transform 0.3s ease, filter 0.3s ease;
}

.social_icons img:hover {
    transform: scale(1.2);
    filter: grayscale(0%) drop-shadow(0 0 5px rgba(255, 204, 0, 0.5));
}

.footer_bottom {
    border-top: 1px solid #333;
    margin-top: 40px;
    padding-top: 20px;
    text-align: center;
    font-size: 14px;
    color: #aaa;
}
#desenvolvido-por {
    font-size: 14px;
    color: #888;
}
.alunos {
    color: var(--yellow);
}
.footer_links a {
    color: #aaa;
    margin: 0 10px;
    transition: color 0.3s ease;
}


.footer_bottom .footer_links a:hover {
    color: #ffcc00;
}



.brand-icons {
    color: #D4AF37;
}



.margtop-small {
    margin-top: 5dvh;
}

.margtop-medium {
    margin-top: 10dvh;
}

.container_marca { 
    display: flex; 
    flex-wrap: nowrap; 
    justify-content: center;
    gap: 10px; 
    align-items: center; 
    width: 100%; 
}

/* .container-2 {
      display: flex;
      flex-wrap: wrap;      
      gap: 10px;       
      justify-content: center;     
      width: 100%;
} */


.container-images {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  width: 100%;
}
.footer_links a:hover {
    color: var(--yellow);
}

/* ========================================= */
/* RESPONSIVIDADE                              */
/* ========================================= */
@media (max-width: 992px) {
    .header-principal {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .hero-content {
        flex-direction: column;
        gap: 40px;
    }

    .hero-text h1 {
        font-size: 36px;
    }
}

@media (max-width: 576px) {
    .hero-text h1 {
        font-size: 28px;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 10px;
    }

    .hero-info {
        flex-direction: column;
        gap: 15px;
    }
}

ol, ul {
  padding-left: 1px;
}

.col {
    display: contents; 
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.col img {
    width: 25dvw;
    height: 80dvh;
    border-radius: 8px;
}

body {
    font-family: 'Inter', sans-serif;
    background: #f5f5f5;
    padding: 20px;
}

.card {
    width: 320px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    overflow: hidden;
}

.card img {
  width: 100%;          
  height: 220px;        
  object-fit: contain;  
  border-radius: 8px;
  background: #fff;  
  padding: 5px;        
}


hr {
  background: linear-gradient(to right, #D4AF37, rgb(231, 218, 30) );
  height: 2px;
  border: 0;
}

ol {
  list-style-position: inside; 
}





.titulo {
    text-align: center;
    margin-top: 20px;
}

table {
    border-collapse: collapse;
    width: 90%;
    margin: 20px auto;
}

th, td {
    border: 1px solid #333;
    padding: 8px;
    text-align: center;
}

th[colspan="5"] {
    background-color: #333;
    color: #fff;
    font-size:auto;
    
}

.titulo-setor {
    background-color: #ebddb8;
    font-weight: bold;
    text-align: center;
    padding-left: 10px;
}

.estoque {
    background-color: #c6f6c6; 
}

.chegando {
    background-color: #fff7b3; 
}

.brand {
    font-size: 12px;
    color: #777;
    text-transform: uppercase;
    margin-bottom: 5px;
}

.title {
    font-size: 16px;
    font-weight: bold;
    margin: 5px 0 10px;
}

.tag {
    display: inline-block;
    border: 1px solid #ccc;
    border-radius: 20px;
    font-size: 12px;
    padding: 4px 10px;
    margin-bottom: 10px;
}

.price {
    font-size: 20px;
    font-weight: bold;
    color: #111;
}

.old-price {
    text-decoration: line-through;
    color: #888;
    font-size: 14px;
    margin-left: 8px;
}

.installments {
    color: #2a9d8f;
    font-size: 14px;
    margin: 8px 0;
}

.btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: #111;
    color: #f4a261;
    font-weight: bold;
    border: none;
    padding: 12px;
    width: 100%;
    border-radius: 8px;
    cursor: pointer;
    transition: 0.3s;
}

.btn:hover {
    background: #333;
}

.input-group {
      margin-bottom: 15px;
    }
.input-group label {
      display: block;
      margin-bottom: 5px;
      font-size: 14px;
    }
.input-group input,
.input-group select,
.input-group textarea {
      width: 100%;
      padding: 10px;
      border: 1px solid #ccc;
      border-radius: 12px;
      font-size: 14px;
    }

.form-container {
      max-width: 800px;
      margin: 40px auto;
      background: #fff;
      padding: 25px;
      border-radius: 10px;
      box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    }
    
    
.form-container h5 {
      margin-bottom: 20px;
      display: flex;
      align-items: center;
      gap: 8px;
    }


.btn-enviar {
      background: #000;
      color: #f1c40f;
      font-weight: 500;
      border-radius: 8px;
      padding: 10px 20px;
      border: none;
      transition: 0.3s;
    }


.btn-enviar:hover {
      background: #222;
      color: #ffda44;
    }


.autoparts-card {
  width: 300px;
  border: 1px solid #ccc;
  padding: 15px;
  margin: 10px;
  border-radius: 8px;
  background: #fff;
}

.autoparts-card h3 {
  font-size: 18px;
  margin-bottom: 8px;
}

.autoparts-card .manager {
  color: gray;
  font-size: 14px;
  margin-bottom: 10px;
}

.autoparts-card p {
  font-size: 14px;
  margin: 5px 0;
}

.tags {
  margin: 10px 0;
}

.tags span {
  border: 1px solid #ccc;
  padding: 4px 8px;
  border-radius: 6px;
  font-size: 13px;
  margin-right: 5px;
}

.actions {
  margin-top: 10px;
}

.actions button {
  padding: 8px 12px;
  margin-right: 5px;
  border: 1px solid #ccc;
  background: #eee;
  border-radius: 6px;
  cursor: pointer;
}

.actions button:hover {
  background: #ddd;
}
.falta {
    background-color: #d9d9d9; 
}

/* Button from glossário*/
#voltar-glossario {
    background-color: var(--yellow);
    color: var(--dark-gray);
    padding: 15px 30px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
    font-size: 1rem;
    margin-top: 30px;
    transition: background-color 0.3s ease;
}

#voltar-glossario:hover {
    background-color: #c5a030;
}




.box {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 250px;
    background: #fff;
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.box:hover {
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.box.subida:hover {
    transform: translateY(-10px);
}

.box i {
    font-size: 2rem;
    color: var(--yellow);
    transition: transform 0.3s ease;
}

.box:hover i {
    transform: scale(1.2);
}


.section-title-small {
    width: 150%;
    margin-top: 50px;
    margin-left: -30px;
    background-color: #111;
    padding-bottom: 40px;
    padding-top: 40px;
}

.section-title-small h2 {
    color: #D4AF37;
    margin-left: 90px;
}

.section-title-small h4 {
    color: #D4AF37;
    margin-left: 90px;
}
