<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* VariÃ¡veis de Cores */
:root {
    --ar-red: #981e32;
    --ar-dark: #121212;
    --ar-gray: #2a2a2a;
    --ar-light-gray: #e0e0e0;
    --ar-white: #ffffff;
    --ar-yellow: #ffcc00;
}

/* Reset e Estilos Gerais */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', 'Roboto', sans-serif;
    background-color: var(--ar-dark);
    color: var(--ar-light-gray);
    line-height: 1.6;
    min-height: 100vh;
    position: relative;
    padding-bottom: 300px; /* Aumentado para dar mais espaÃ§o ao footer */
}

/* Header */
.ar-header {
    background-color: var(--ar-white);
    padding: 30px 10%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

.ar-logo-container {
    display: flex;
    align-items: center;
    gap: 15px;
}

.ar-logo {
    width: 50px;
    height: auto;
}

.ar-titles h1 {
    color: var(--ar-dark);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.ar-nav {
    display: flex;
    gap: 20px;
}

.ar-nav a {
    color: var(--ar-dark);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    padding: 8px 12px;
    border-radius: 5px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.ar-nav a:hover {
    color: var(--ar-red);
}

.ar-nav a.selected {
    background-color: var(--ar-red);
    color: var(--ar-white);
}

/* Main Container */
.ar-main-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px 20px 80px; /* Aumentado o padding-bottom */
}

/* Hero Section */
.ar-hero {
    position: relative;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-bottom: 40px;
    border-radius: 10px;
    overflow: hidden;
}

.ar-hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.ar-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7));
    z-index: 2;
}

.ar-hero-content {
    position: relative;
    z-index: 3;
    width: 100%;
    padding: 40px 20px;
}

.ar-hero h1 {
    color: var(--ar-white);
    font-size: 3rem;
    margin-bottom: 15px;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
}

.ar-hero p {
    color: var(--ar-light-gray);
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
}

/* Filtros */
.ar-filters-section {
    background-color: var(--ar-gray);
    border-radius: 10px;
    padding: 30px;
    margin: 40px 0;
}

.ar-filters-container {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
}

.ar-filter-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
    min-width: 250px;
}

.ar-filter-group label {
    font-size: 0.9rem;
    color: var(--ar-light-gray);
    display: flex;
    align-items: center;
    gap: 8px;
}

.ar-filter-input {
    width: 100%;
    padding: 12px 15px;
    border-radius: 6px;
    border: none;
    background-color: var(--ar-dark);
    color: var(--ar-light-gray);
    font-family: 'Montserrat', sans-serif;
    font-size: 0.95rem;
}

.ar-filter-input:focus {
    outline: 2px solid var(--ar-red);
}

.ar-filter-select {
    padding: 12px 15px;
    border-radius: 6px;
    border: none;
    background-color: var(--ar-dark);
    color: var(--ar-light-gray);
    font-family: 'Montserrat', sans-serif;
    font-size: 0.95rem;
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23E0E0E0'%3e%3cpath d='M7 10l5 5 5-5z'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 10px center;
    background-size: 15px;
}

.ar-filter-results {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
    font-size: 0.9rem;
    color: var(--ar-light-gray);
}

.ar-filter-reset {
    background: none;
    border: none;
    color: var(--ar-red);
    cursor: pointer;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    padding: 5px 10px;
    border-radius: 4px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 5px;
}

.ar-filter-reset:hover {
    background-color: rgba(152, 30, 50, 0.1);
}

/* Grid de Montadoras */
.ar-montadoras-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.ar-montadora-card {
    background-color: var(--ar-gray);
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.ar-montadora-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
    border-color: rgba(152, 30, 50, 0.3);
}

.ar-montadora-card a {
    text-decoration: none;
    color: inherit;
    display: block;
    height: 100%;
}

.ar-montadora-image {
    position: relative;
    height: 120px;
    background-color: #333;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ar-montadora-image img {
    max-width: 80%;
    max-height: 80%;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.ar-montadora-card:hover .ar-montadora-image img {
    transform: scale(1.1);
}

.ar-montadora-info {
    padding: 15px;
    text-align: center;
    position: relative;
}

.ar-montadora-info h3 {
    margin: 0;
    font-size: 1.2rem;
    color: var(--ar-white);
}

.ar-montadora-info p {
    margin: 5px 0 0;
    font-size: 0.9rem;
    color: var(--ar-light-gray);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

/* Bandeirinha do paÃ­s */
.ar-country-flag {
    margin-right: 5px;
    border-radius: 2px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.3);
}

/* BalÃ£o de quantidade */
.ar-quantidade-badge {
    position: absolute;
    top: -12px;
    right: 15px;
    background-color: var(--ar-red);
    color: var(--ar-white);
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

/* Footer */
.ar-footer {
    background-color: #1a1a1a;
    padding: 50px 0 0;
    margin-top: 80px; /* Aumentado o margin-top */
    position: absolute;
    bottom: 0;
    width: 100%;
}

.ar-footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.ar-footer-logo {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.ar-footer-logo span {
    color: var(--ar-white);
    font-weight: 700;
    font-size: 1.2rem;
}

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

.ar-footer-column h3 {
    color: var(--ar-white);
    font-size: 1.1rem;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.ar-footer-column h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--ar-red);
}

.ar-footer-column a {
    display: block;
    color: var(--ar-light-gray);
    text-decoration: none;
    margin-bottom: 10px;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.ar-footer-column a:hover {
    color: var(--ar-red);
}

.ar-social-icons {
    display: flex;
    gap: 15px;
}

.ar-social-icons a {
    color: var(--ar-light-gray);
    font-size: 1.2rem;
    transition: color 0.3s ease;
}

.ar-social-icons a:hover {
    color: var(--ar-red);
}

.ar-footer-bottom {
    background-color: #121212;
    padding: 20px;
    text-align: center;
    margin-top: 40px;
}

.ar-footer-bottom p {
    color: var(--ar-light-gray);
    font-size: 0.8rem;
}

/* Responsividade */
@media (max-width: 1024px) {
    .ar-hero h1 {
        font-size: 2.5rem;
    }
    
    .ar-montadoras-grid {
        grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    }
}

@media (max-width: 768px) {
    .ar-header {
        flex-direction: column;
        gap: 20px;
        padding: 15px;
    }
    
    .ar-nav {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .ar-hero {
        height: 250px;
    }
    
    .ar-hero h1 {
        font-size: 2rem;
    }
    
    .ar-hero p {
        font-size: 1rem;
    }
    
    .ar-filters-container {
        flex-direction: column;
        align-items: stretch;
    }
    
    .ar-filter-group {
        width: 100%;
    }
    
    .ar-montadoras-grid {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    }
    body {
        padding-bottom: 500px;
    }
}

@media (max-width: 480px) {
    .ar-hero {
        height: 200px;
    }
    
    .ar-hero h1 {
        font-size: 1.8rem;
    }
    
    .ar-section-title {
        font-size: 1.5rem;
    }
    
    .ar-montadoras-grid {
        grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
        gap: 15px;
    }
    
    .ar-montadora-image {
        height: 100px;
    }
    
    .ar-footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    body {
        padding-bottom: 500px;
    }
}

/* Ajustes especÃ­ficos para logos */
.ar-montadora-card[data-name="Audi"] .ar-montadora-image img {
    max-width: 70%;
}

.ar-montadora-card[data-name="Aston Martin"] .ar-montadora-image img,
.ar-montadora-card[data-name="Maserati"] .ar-montadora-image img,
.ar-montadora-card[data-name="Chrysler"] .ar-montadora-image img {
    max-width: 75%;
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.ar-filters-section, .ar-montadoras-grid {
    animation: fadeIn 0.5s ease-out forwards;
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

::-webkit-scrollbar-track {
    background: var(--ar-dark);
}

::-webkit-scrollbar-thumb {
    background: var(--ar-red);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #7a1728;
}

</pre></body></html>