* {
    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;
}

/* Banner */
.banner {
    background: linear-gradient(to right, #e6e6f5, white);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px;
}

.texto-banner h2 {
    font-size: 35px;
    font-weight: bold;
    line-height: 1.3;
}

.azul {
    color: #0056d6;
}

.carros img {
    height: 150px;
    margin-left: 15px;
}

/* Busca */
.busca {
    background: #0066ff;
    display: flex;
    justify-content: center;
    padding: 20px;
}

.search-box {
    background: white;
    border-radius: 15px;
    padding: 25px 25px 30px;
    width: 650px;
    box-shadow: 0px 4px 12px rgba(0,0,0,0.1);
}

.search-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: bold;
    font-size: 18px;
    margin-bottom: 15px;
    color: #0056d6;
}

.right-title {
    border-bottom: 3px solid #0056d6;
    padding-bottom: 3px;
}

.search-bar {
    display: flex;
    align-items: center;
    border: 2px solid #0056d6;
    border-radius: 25px;
    overflow: hidden;
    padding: 0 10px;
}

.search-icon {
    color: #0056d6;
    font-size: 18px;
    margin-right: 5px;
}

.search-bar input {
    flex: 1;
    border: none;
    padding: 10px 5px;
    outline: none;
    font-size: 16px;
}

/* Categorias */
.categorias {
    background: #0066ff;
    text-align: center;
    padding-bottom: 40px;
}

.titulo-categorias {
    display: inline-block;
    background-color: white;
    color: #0056d6;
    font-weight: bold;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 18px;
    margin-top: 20px;
}

.cards-categorias {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 20px;
}

.card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: #0056d6;
    font-weight: bold;
    font-size: 18px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card img {
    width: 220px;
    height: 220px;
    object-fit: cover;
    border-radius: 20px;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0,0,0,0.2);
}

/* 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;
}
