* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Arial, sans-serif;
}

body {
    background: #0e0e0e;
    color: #fff;
}

/* CONTAINER */
.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

/* HEADER */
.topbar {
    position: fixed;
    width: 100%;
    top: 0;
    background: rgba(0,0,0,0.85);
    z-index: 1000;
}

.topbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 0;
}

.logo {
    font-size: 22px;
    font-weight: bold;
}

.logo span {
    color: #c9a14a;
}

.menu a {
    margin: 0 10px;
    text-decoration: none;
    color: #fff;
    font-size: 14px;
}

.menu a:hover {
    color: #c9a14a;
}

.btn-cta {
    background: #c9a14a;
    color: #000;
    padding: 10px 18px;
    border-radius: 4px;
    font-weight: bold;
    width: 190px;
    text-decoration: none
}

.btn-outline{
    background: none;
    border: solid 2px #c9a14a;
    color: #c9a14a;
    padding: 10px;
    text-decoration: none;
    border-radius: 4px;
    font-weight: bold;
}

.lang img {
    width: 22px;
    margin-left: 6px;
    cursor: pointer;
}

/* HERO */
.hero {
    height: 100vh;
    margin-top: 80px;
    position: relative;
}

.slides {
    height: 100%;
}

.slide {
    height: 100%;
    background-size: cover;
    background-position: center;
    display: none;
}

.slide.active {
    display: block;
}

.overlay {
    background: linear-gradient(to right, rgba(0,0,0,0.75), transparent);
    height: 100%;
    padding: 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.overlay h1 span {
    color: #c9a14a;
}

.overlay p {
    margin: 15px 0 30px;
    max-width: 500px;
}

/* HIGHLIGHTS */
.highlights {
    background: #111;
    padding: 60px 0;
}

.highlights .container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px,1fr));
    gap: 20px;
}

.highlight {
    background: #181818;
    padding: 25px;
    border-radius: 6px;
}

/* ABOUT */
.about {
    padding: 80px 0;
}

.about .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.about img {
    width: 100%;
    border-radius: 8px;
}

/* FROTA */
.fleet-section {
    background: #111;
    padding: 80px 0;
    text-align: center;
}

.fleet-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(250px,1fr));
    gap: 30px;
    margin-top: 40px;
}

.fleet-card {
    background: #181818;
    padding: 20px;
    border-radius: 6px;
}

.fleet-card img {
    width: 100%;
    border-radius: 6px;
}

/* FOOTER */
.footer {
    background: #0a0a0a;
    padding: 50px 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(250px,1fr));
    gap: 30px;
}

.footer a {
    display: block;
    color: #aaa;
    text-decoration: none;
    margin: 6px 0;
}

.footer-bottom {
    text-align: center;
    margin-top: 30px;
    font-size: 13px;
    color: #666;
}

/* RESPONSIVO */
@media(max-width: 768px) {
    .about .container {
        grid-template-columns: 1fr;
    }
    .overlay {
        padding: 40px;
    }
}