@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

:root {
    --primary-color: #d4af37; /* Gold */
    --primary-hover: #bfa136;
    --dark-bg: #121212;
    --card-bg: #1e1e1e;
    --text-main: #f8f9fa;
    --text-muted: #a0a0a0;
    --accent: #2a2a2a;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--dark-bg);
    color: var(--text-main);
    overflow-x: hidden;
}

/* Navbar */
.navbar {
    background-color: rgba(18, 18, 18, 0.95) !important;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--accent);
}
.navbar-brand img {
    height: 50px;
    object-fit: contain;
}
.nav-link {
    color: var(--text-main) !important;
    font-weight: 500;
    transition: color 0.3s ease;
}
.nav-link:hover {
    color: var(--primary-color) !important;
}

/* Hero Section */
.hero-section {
    position: relative;
    background: url('/img/hero-bg.jpg') no-repeat center center;
    background-size: cover;
    padding: 180px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}
.hero-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(135deg, rgba(0,0,0,0.8), rgba(18,18,18,0.95));
}
.hero-content {
    position: relative;
    z-index: 1;
}
.hero-title {
    font-weight: 800;
    font-size: 3.5rem;
    color: #fff;
    margin-bottom: 20px;
    letter-spacing: -1px;
}
.hero-title span {
    color: var(--primary-color);
}
.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 40px;
}

/* Buttons */
.btn-gold {
    background-color: var(--primary-color);
    color: #000;
    font-weight: 600;
    padding: 12px 30px;
    border-radius: 50px;
    border: none;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
}
.btn-gold:hover {
    background-color: var(--primary-hover);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(212, 175, 55, 0.3);
    color: #000;
}

/* Vehicle Cards (Glassmorphism & Neon touch) */
.section-title {
    text-align: center;
    font-weight: 700;
    margin-bottom: 50px;
    font-size: 2.5rem;
    position: relative;
}
.section-title::after {
    content: '';
    width: 60px;
    height: 3px;
    background-color: var(--primary-color);
    display: block;
    margin: 15px auto 0;
}

.card-carro {
    background: var(--card-bg);
    border: 1px solid var(--accent);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.4s ease;
}
.card-carro:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
    box-shadow: 0 15px 30px rgba(0,0,0,0.5), 0 0 15px rgba(212, 175, 55, 0.1);
}
.card-img-wrapper {
    overflow: hidden;
    height: 220px;
}
.card-carro img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.card-carro:hover img {
    transform: scale(1.05);
}
.card-body {
    padding: 25px;
}
.card-title {
    font-weight: 700;
    font-size: 1.2rem;
    color: #fff;
    margin-bottom: 8px;
}
.card-price {
    color: var(--primary-color);
    font-weight: 800;
    font-size: 1.4rem;
    margin-top: 15px;
}
.card-meta {
    display: flex;
    justify-content: space-between;
    color: var(--text-muted);
    font-size: 0.9rem;
    border-top: 1px solid var(--accent);
    padding-top: 15px;
    margin-top: 15px;
}

/* About Section */
.about-section {
    background-color: var(--card-bg);
    padding: 100px 0;
}
.about-text {
    color: var(--text-muted);
    line-height: 1.8;
}

/* Contact Section */
.contact-section {
    padding: 100px 0;
}
.form-control {
    background-color: var(--card-bg) !important;
    border: 1px solid var(--accent) !important;
    color: #fff !important;
    padding: 15px;
}
.form-control:focus {
    border-color: var(--primary-color) !important;
    box-shadow: 0 0 0 0.25rem rgba(212, 175, 55, 0.25) !important;
}
.form-label {
    color: var(--text-muted);
    font-weight: 500;
}
.contact-info li {
    margin-bottom: 15px;
    color: var(--text-muted);
    display: flex;
    align-items: center;
}
.contact-info i {
    color: var(--primary-color);
    font-size: 1.2rem;
    width: 30px;
}

/* Footer */
footer {
    background-color: #0d0d0d;
    padding: 40px 0 20px;
    border-top: 1px solid var(--accent);
}
.social-links a {
    color: var(--text-muted);
    margin: 0 10px;
    font-size: 1.2rem;
    transition: color 0.3s ease;
}
.social-links a:hover {
    color: var(--primary-color);
}
