* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    margin: 0;
    font-family: Arial, sans-serif;
}

/* Cabeçalho */
.topo {
    background: #0066ff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 30px;
    color: white;
}

.topo .logo {
    display: flex;
    align-items: center;
    font-weight: bold;
    font-size: 18px;
}

.topo .logo img {
    height: 25px;
    margin-right: 8px;
}

.topo nav a,
.topo .acoes a {
    color: white;
    margin: 0 10px;
    text-decoration: none;
    font-weight: bold;
}
header {
    background-color: #fff;
    text-align: center;
    padding: 30px 10px;
  }
  
  header h1 {
    color: #0050ff;
    font-size: 2.5rem;
    font-weight: bold;
  }
  .carros-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    padding: 30px;
    background: #0050ff;
  }
  
  .card {
    background: #fff;
    border-radius: 15px;
    box-shadow: 0px 4px 10px rgba(0,0,0,0.1);
    text-decoration: none;
    color: #000;
    overflow: hidden;
    transition: transform 0.2s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .card:hover {
    transform: scale(1.03);
  }
  
  .card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
  }
  
  .card-content {
    padding: 15px;
    text-align: center;
  }
  
  .card h3 {
    font-size: 1rem;
    margin: 10px 0 5px;
    font-weight: bold;
  }
  
  .card p {
    font-size: 0.9rem;
    margin: 5px 0;
    color: #333;
  }
  
  .preco {
    font-size: 1.3rem;
    font-weight: bold;
    margin-top: 10px;
  }
  /* Rodapé */
footer {
    background: white;
    padding: 40px 20px;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.footer-logo img {
    height: 40px;
    margin-bottom: 10px;
}

.footer-links {
    display: flex;
    flex-direction: column;
}

.footer-links h3 {
    color: #0056d6;
    font-size: 16px;
    margin-bottom: 10px;
}

.footer-links a, .footer-links p {
    color: #0056d6;
    text-decoration: none;
    font-size: 14px;
    margin-bottom: 5px;
}
