:root {
    --background-color: #fff;
    --text-color: #1d1d1f;
    --text-secondary-color: #6e6e73;
    --primary-color: #0071e3;
    --font-family: 'Roboto', sans-serif;
}

body {
    font-family: var(--font-family);
    background-color: var(--background-color);
    color: var(--text-color);
    font-size: 18px;
    line-height: 1.6;
    font-weight: 400;
}

/* --- Header --- */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    background: rgba(255,255,255,0.8);
    backdrop-filter: saturate(180%) blur(20px);
    -webkit-backdrop-filter: saturate(180%) blur(20px);
}

.main-header nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 52px;
}

.nav-brand {
    font-weight: 500;
    font-size: 1.2rem;
    text-decoration: none;
    color: var(--text-color);
}

.nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 1rem;
}

.nav-list a {
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    transition: color 0.7s ease;
}

/* Cores específicas para cada link */
.nav-list li:nth-child(1) a {
    color: #00008B;
}

.nav-list li:nth-child(2) a {
    color: #E71837;
}

.nav-list li:nth-child(3) a {
    color: green;
}

.nav-list li:nth-child(4) a {
    color: black;
}

.nav-list a:hover {
    opacity: 0.7;
}

/* --- Estilos de Seção e Tipografia --- */
main {
    padding-top: 52px;
}

.hero-section, .feature-section, .contact-section {
    padding: 100px 0;
    border-bottom: 12px solid #f5f5f7;
}

.hero-headline, .section-headline {
    font-family: var(--font-family);
    font-size: 5rem;
    font-weight: 900;
    line-height: 1.1;
    text-transform: uppercase;
}

/*
================================================================
ANOTAÇÃO: Cores dos Títulos de Cada Carro
Altere os valores de 'color' abaixo para mudar a cor do título de cada seção de carro.
================================================================
*/

/* Cor do título da MERCEDES AMG */
#mercedes .hero-headline {
    color: #00008B;
}

/* Cor do título da FERRARI */
#ferrari-original .hero-headline {
    color: #E71837;
}

/* Cor do título da PORSCHE */
#porsche .section-headline {
    color: green;
}

/* Cor do título do CONTATO */
#contato .section-headline {
    color: black;
}

.hero-subheadline, .section-subheadline {
    font-size: 2rem;
    font-weight: 600;
    margin-top: 1rem;
    color: var(--text-secondary-color);
}

.hero-links {
    margin-top: 1.5rem;
}

.btn-custom {
    color: var(--primary-color);
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 600;
    transition: opacity 0.3s;
}

.btn-custom:hover {
    opacity: 0.8;
}

.hero-image-container, .feature-image-container {
    margin-top: 60px;
    width: 100%;
}

.hero-image-container img, .feature-image-container img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

img {
    max-width: 100%;
    height: auto;
}

/* --- Seção de Contato --- */
.contact-section {
    background-color: #f5f5f7;
}

.form-control {
    background-color: #fff;
    border: 1px solid #d2d2d7;
    border-radius: 12px;
    padding: 1rem;
    font-size: 1rem;
    font-family: var(--font-family);
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(0,113,227,0.25);
}

.contact-section .btn-custom {
    background-color: var(--primary-color);
    color: #fff;
    border-radius: 980px;
    padding: 0.8rem 2rem;
    font-size: 1rem;
}

/* --- Rodapé --- */
.main-footer-bar {
    padding: 2rem 0;
    color: var(--text-secondary-color);
    font-size: 12px;
}

/* --- Animação --- */
.animatable {
    opacity: 50;
}
