@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;900&family=Inter:wght@300;400;700;900&display=swap');

:root {
    --bg-black: #000000;
    --accent-red: #ff0000;
    --accent-gold: #ffcc00;
    --text-gray: #bbbbbb;
    --neon-red: 0 0 15px rgba(255, 0, 0, 0.7);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    background-color: var(--bg-black);
    color: #fff;
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
}

/* HEADER COM BARRA VERMELHA */
header {
    background: rgba(0, 0, 0, 0.95);
    border-top: 4px solid var(--accent-red);
    padding: 20px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

/* --- LOGO: EFEITO ACENDER (NOVO) --- */
@keyframes acenderM {
    0% { color: #555; text-shadow: none; }
    100% { color: #fff; text-shadow: 0 0 10px rgba(255,255,255,0.5); }
}

@keyframes acenderP {
    0% { color: #555; text-shadow: none; }
    100% { color: var(--accent-red); text-shadow: var(--neon-red); }
}

.logo {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.6em;
    font-weight: 900;
    color: #555; /* Começa apagado */
    text-decoration: none;
    animation: acenderM 1s forwards;
    animation-delay: 2s; /* Acende após 2s */
}

.logo span { 
    color: #555; /* Começa apagado */
    animation: acenderP 1s forwards;
    animation-delay: 2.5s; /* Acende logo depois do Mercedes */
}

nav ul { display: flex; list-style: none; gap: 30px; }
nav a {
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.75em;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-align: center;
}

/* HERO SECTION (O TOPO QUE VOCÊ APROVOU) */
.hero {
    height: 100vh;
    background: linear-gradient(to right, rgba(0,0,0,1) 35%, transparent 85%), 
                url('https://images.unsplash.com/photo-1618843479313-40f8afb4b4d8?q=80&w=2070&auto=format&fit=crop') center/cover;
    display: flex;
    align-items: center;
    padding: 0 8%;
}

.hero-content { max-width: 650px; padding-top: 80px; }
.location-tag { color: var(--accent-gold); font-weight: 900; letter-spacing: 3px; font-size: 0.85em; margin-bottom: 5px; display: block; }
.hero h1 { font-family: 'Orbitron', sans-serif; font-size: 4.2em; line-height: 0.9; margin-bottom: 20px; }
.hero h1 span { color: var(--accent-red); }

.hero-info h3 { font-size: 1.1em; font-weight: 800; margin-bottom: 5px; }
.hero-info p { color: var(--text-gray); font-size: 0.9em; margin-bottom: 20px; max-width: 500px; }

/* SEÇÃO INFERIOR INTERATIVA */
.bottom-section {
    padding: 80px 8%;
    background: #050505;
}

.section-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 2.5em;
    margin-bottom: 40px;
}
.section-title span { color: var(--accent-red); }

.interactive-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

/* --- CAIXAS NEON COM FOTOS (ATUALIZADO) --- */
.feature-item {
    padding: 30px;
    border: 1px solid #222; /* Borda fina padrão */
    border-radius: 5px;
    background: #0a0a0a;
    transition: all 0.4s ease;
    cursor: default;
    text-align: center; /* Centraliza a foto e o texto */
}

/* FOTOS DAS PEÇAS */
.box-photo {
    width: 100%;
    max-width: 250px;
    height: 180px;
    object-fit: contain;
    margin-bottom: 20px;
    filter: drop-shadow(0 5px 10px rgba(0,0,0,0.8));
    transition: transform 0.4s ease;
}

/* EFEITO AO PASSAR O MOUSE NAS CAIXAS */
.feature-item:hover {
    border-color: var(--accent-red);
    box-shadow: var(--neon-red), inset 0 0 10px rgba(255,0,0,0.1);
    transform: translateY(-5px);
}

.feature-item:hover .box-photo {
    transform: scale(1.05); /* Foto dá um leve zoom */
}

.feature-item h4 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.4em;
    margin-bottom: 15px;
    transition: all 0.4s ease;
}

.feature-item:hover h4 {
    color: var(--accent-red);
    text-shadow: var(--neon-red);
}

.feature-item p {
    color: var(--text-gray);
    font-size: 0.95em;
    line-height: 1.7;
}

.footer-text {
    border-top: 1px solid #222;
    padding-top: 40px;
}
.footer-text h3 { font-family: 'Orbitron', sans-serif; margin-bottom: 20px; }

.btn-vin {
    background: var(--accent-red);
    color: #fff;
    padding: 15px 40px;
    text-decoration: none;
    font-weight: 900;
    text-transform: uppercase;
    display: inline-block;
    margin-top: 30px;
    transition: 0.3s;
}
.btn-vin:hover { transform: scale(1.05); box-shadow: var(--neon-red); }