body {
    margin: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #111;
    color: #f5f5f5;
}
header {
    background-color: #000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
}
.logo {
    height: 120px;
}
nav ul {
    display: flex;
    list-style: none;
    gap: 1.5rem;
}
nav a {
    color: gold;
    text-decoration: none;
    font-weight: bold;
}
.vans {
    height: 350px;
}
#title {
    text-align: center;
    padding: 2rem 3rem;
}
#title h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: gold;
}
#hero {
    position: relative;
    width: 350px;
    height: 400px;
    overflow: hidden;
    margin: auto;
}

#carousel {
    display: flex;
    transition: transform 0.5s ease;
    width: calc(265px * 5); /* 5 imagens */
}

.vans {
    width: 700px;
    height: 400px;
    object-fit: cover;
}

.carousel-controls {
    text-align: center;
    margin-top: 10px;
}

.carousel-controls button {
    border-radius: 49%;
    padding: 7px 10px;
    background: white;
    margin: 0 5px;
    cursor: pointer;
}

section {
    padding: 2rem 3rem;
}
footer {
    text-align: center;
    padding: 1rem;
    background-color: #000;
    color: #777;
}
#contato  a {
    color: gold;
    text-decoration: none;
    font-weight: bold;
}

