/* Reset básico */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  /* Fonte e cores principais */
  body {
    font-family: 'Segoe UI', sans-serif;
    background-color: #f4f4f4;
    color: #333;
    line-height: 1.6;
  }
  
  /* Cabeçalho */
  header {
    background-color: #1e88e5;
    color: white;
    padding: 1em 2em;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
  }
  
  header .logo {
    display: flex;
    align-items: center;
    gap: 1em;
  }
  
  header .logo img {
    height: 50px;
  }
  
  nav ul {
    list-style: none;
    display: flex;
    gap: 1em;
    flex-wrap: wrap;
  }
  
  nav a {
    color: white;
    text-decoration: none;
    font-weight: bold;
    padding: 0.5em;
    transition: background 0.3s;
  }
  
  nav a:hover {
    background-color: #1565c0;
    border-radius: 5px;
  }
  
  /* Rodapé */
  footer {
    background-color: #1e88e5;
    color: white;
    text-align: center;
    padding: 1em;
    margin-top: 2em;
  }
  
  /* Hero Section */
  .hero {
    position: relative;
    text-align: center;
    margin: 2em auto;
  }
  
  .hero img {
    width: 100%;
    max-height: 400px;
    object-fit: cover;
    border-radius: 10px;
  }
  
  .hero-text {
    margin-top: 1em;
  }
  
  .btn {
    display: inline-block;
    background-color: #1e88e5;
    color: white;
    padding: 0.7em 1.2em;
    border: none;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    margin-top: 1em;
    transition: background 0.3s;
  }
  
  .btn:hover {
    background-color: #1565c0;
  }
  
  /* Formulários */
  .form-container {
    max-width: 500px;
    margin: 2em auto;
    background-color: white;
    padding: 2em;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
  }
  
  form label {
    display: block;
    margin-bottom: 0.5em;
    font-weight: bold;
  }
  
  form input,
  form select,
  form button {
    width: 100%;
    padding: 0.7em;
    margin-bottom: 1em;
    border: 1px solid #ccc;
    border-radius: 5px;
  }
  
  form button {
    background-color: #1e88e5;
    color: white;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s;
  }
  
  form button:hover {
    background-color: #1565c0;
  }
  
  /* Tabelas */
  table {
    width: 100%;
    border-collapse: collapse;
    background-color: white;
    margin-top: 2em;
  }
  
  th, td {
    padding: 1em;
    border: 1px solid #ddd;
    text-align: left;
  }
  
  th {
    background-color: #e3f2fd;
  }
  
  /* Cards de veículos */
  .car-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2em;
    justify-content: center;
    margin-top: 2em;
  }
  
  .car-card {
    background-color: white;
    width: 250px;
    padding: 1em;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
    text-align: center;
  }
  
  .car-card img {
    width: 100%;
    border-radius: 10px;
    margin-bottom: 1em;
  }
  
  /* Página da logo */
  .logo-section,
  .logo-variacoes,
  .logo-aplicacoes {
    max-width: 800px;
    margin: 2em auto;
    background-color: rgb(2, 27, 77);
    padding: 2em;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
  }
  
  .logo-img {
    display: block;
    margin: 1em auto;
    max-width: 300px;
  }
  
  .logo-grid {
    display: flex;
    gap: 2em;
    flex-wrap: wrap;
    justify-content: center;
  }
  
  .logo-grid div {
    text-align: center;
  }
  
  .logo-grid img {
    max-width: 150px;
    margin-bottom: 0.5em;
  }
  
  /* Painel administrativo */
  .dashboard-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2em;
    margin-top: 2em;
  }
  
  .dashboard-card {
    background-color: white;
    padding: 2em;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
  }
  
  .dashboard-card h3 {
    margin-bottom: 0.5em;
    color: #1e88e5;
  }
  
  /* Responsividade */
  @media (max-width: 768px) {
    nav ul {
      flex-direction: column;
      align-items: center;
    }
  
    .car-grid {
      flex-direction: column;
      align-items: center;
    }
  
    .logo-grid {
      flex-direction: column;
      align-items: center;
    }
  }
  