                                                                                                                             /* ----------------------------------------
   LocaRev Motors — Estilos Globais
   ---------------------------------------- */

body {
    background-color: #f8f9fa;
    font-family: 'Segoe UI', Arial, sans-serif;
    color: #333;
}

/* Navbar */
.navbar-brand {
    font-size: 1.4rem;
    font-weight: 700;
}

.navbar-dark .navbar-brand,
.navbar-dark .nav-link {
    color: #fff !important;
}

/* Botões */
.btn-warning {
    background-color: #c9a23f;
    border-color: #c9a23f;
}
.btn-warning:hover {
    background-color: #b08d35;
    border-color: #b08d35;
}

/* Cards */
.card {
    border-radius: 10px;
}

.card-veiculo {
    transition: transform .2s ease, box-shadow .2s ease;
}
.card-veiculo:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(0,0,0,0.15);
}

/* Hero */
.hero {
    background: linear-gradient(135deg, #000000, #c9a23f);
    padding: 60px 0;
    color: white;
}

/* Formulários */
.form-control,
.form-select {
    border-radius: 6px;
}

/* Footer */
footer {
    font-size: .9rem;
    padding: 20px 0;
}

/* Títulos */
h1, h2, h3, h4 {
    font-weight: 700;
}

/* Correções em mobile */
@media(max-width: 767px){
    .hero h1 {
        font-size: 1.8rem;
    }
}