body {
    font-family: 'Inter', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #ffffff;
    color: #000000;
  }

  a {
    text-decoration: none;
    color: #fff;
  }
  
  header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: #111111d8;
    color: #fff;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
  }
  
  header a {
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    margin-right: 1rem;
  }
  
  nav a:hover {
    color: #d4af37;
  }
  
  main {
    padding: 6rem 2rem 2rem;
    max-width: 1200px;
    margin: auto;
  }

  
  
  .detalhes {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    align-items: flex-start;
  }
  
  .imagem-veiculo img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 0 12px rgba(0,0,0,0.1);
  }
  
  .info-veiculo {
    flex: 1;
  }
  
  .especificacoes label {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 1rem;
    background-color: #fff;
    padding: 1rem;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
  }
  
  /* Estilo do botão interruptor */
  .switch {
    position: relative;
    width: 40px;
    height: 20px;
  }
  
  .switch input {
    opacity: 0;
    width: 0;
    height: 0;
  }
  
  .slider {
    position: absolute;
    cursor: default;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    border-radius: 20px;
    transition: 0.4s;
  }
  
  .slider:before {
    position: absolute;
    content: "";
    height: 14px;
    width: 14px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    transition: 0.4s;
    border-radius: 50%;
  }
  
  input:checked + .slider {
    background-color: #37d45e;
  }
  
  input:checked + .slider:before {
    transform: translateX(20px);
  }
  
  footer {
    background-color: #000000;
    color: #FFFFFF;
    text-align: left;
    padding: 2rem 1rem 1rem;
    /* display: grid; */
    display: flex; /* Ativa o flexbox no container */
    flex-wrap: wrap; /* Permite que as divs quebrem para a próxima linha se necessário */
    justify-content: space-between;
  }

  footer h3 {
    color: #C8B273;
    margin-bottom: 1rem;
  }

  footer ul {
    list-style: none;
    margin-bottom: 1rem;
  }

  footer ul li {
    margin: 0.3rem 0;
  }

  footer p {
    font-size: 0.9rem;
    margin-top: 1rem;
    color: #E0E0E0;
  }


  
  a {
    text-decoration: none;
    color: white;
    font-size: 18px;
  }

  .rodape {
    text-align: center;
    background-color: #ffffff;
    color: #000000;
  }

  .contato a:hover {
    color: orange;
  }

  .more a:hover {
    color: orange;
  }

  

  @media (max-width: 768px) {
    .sobre {
      flex-direction: column;
      text-align: center;
      background-repeat: no-repeat;
    }

    .rodape {
      font-size: 10px;
    }

  }

