* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Superior */
.top-header {
    background-color: #1e4a72;
    color: white;
    padding: 10px 0;
    font-size: 14px;
}

.contact-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.address {
    display: flex;
    align-items: center;
    gap: 8px;
}

.phones {
    display: flex;
    gap: 20px;
}

.phones a {
    color: white;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: opacity 0.3s;
}

.phones a:hover {
    opacity: 0.8;
}

/* Header Principal */
.main-header {
    background-color: white;
    padding: 15px 0;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.main-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 60px;
}

.main-nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
}

.main-nav a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    text-transform: lowercase;
    padding: 8px 16px;
    border-radius: 20px;
    transition: all 0.3s;
}

.main-nav a.active,
.main-nav a:hover {
    background-color: #e74c3c;
    color: white;
}

/* Seção Hero */
.hero {
    background: linear-gradient(135deg, #2980b9, #3498db);
    min-height: 500px;
    position: relative;
    overflow: hidden;
}

.hero-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 500px;
    padding: 50px 0;
}

.hero-left,
.hero-right {
    flex: 1;
    text-align: center;
    position: relative;
}

.hero h1 {
    font-size: 2.5rem;
    color: white;
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 30px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero .highlight {
    font-size: 3rem;
    display: block;
}

.car-image {
    max-width: 300px;
    height: auto;
    filter: drop-shadow(0 10px 20px rgba(0,0,0,0.3));
}

.slider-indicators {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s;
}

.indicator:first-child {
    background-color: #e74c3c;
}

.indicator:last-child {
    background-color: #3498db;
}

.indicator.active {
    transform: scale(1.2);
}

/* Seção Descrição */
.description {
    padding: 60px 0;
    text-align: center;
    background-color: #f8f9fa;
}

.description h2 {
    font-size: 2rem;
    color: #2980b9;
    margin-bottom: 20px;
    font-weight: bold;
}

.description p {
    font-size: 1.1rem;
    color: #666;
    max-width: 800px;
    margin: 0 auto;
}

/* Call-to-Action WhatsApp */
.whatsapp-cta {
    padding: 40px 0;
    text-align: center;
    background-color: white;
}

.whatsapp-button {
    display: inline-block;
    transition: transform 0.3s;
}

.whatsapp-button:hover {
    transform: scale(1.05);
}

.whatsapp-button img {
    max-width: 400px;
    height: auto;
}

/* Seção Sobre */
.about {
    padding: 60px 0;
    background-color: #f8f9fa;
}

.about-content {
    display: flex;
    align-items: center;
    gap: 40px;
}

.about-image {
    flex: 1;
}

.about-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.about-text {
    flex: 1;
}

.about-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #666;
    margin-bottom: 30px;
}

.read-more-btn {
    display: inline-block;
    background-color: #3498db;
    color: white;
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 25px;
    font-weight: bold;
    transition: all 0.3s;
}

.read-more-btn:hover {
    background-color: #2980b9;
    transform: translateY(-2px);
}

/* Seção Fornecedores */
.suppliers {
    padding: 60px 0;
    background-color: #ecf0f1;
}

.suppliers h2 {
    text-align: center;
    font-size: 2rem;
    color: #3498db;
    margin-bottom: 50px;
    font-weight: bold;
}

.suppliers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.supplier-card {
    background-color: white;
    padding: 40px 20px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s;
    border-top: 5px solid;
}

.supplier-card:hover {
    transform: translateY(-5px);
}

.supplier-card.orange {
    border-top-color: #f39c12;
}

.supplier-card.green {
    border-top-color: #27ae60;
}

.supplier-card.blue {
    border-top-color: #3498db;
}

.supplier-card.pink {
    border-top-color: #e91e63;
}

.supplier-card.purple {
    border-top-color: #9b59b6;
}

.supplier-logo img {
    max-width: 100%;
    max-height: 80px;
    width: auto;
    height: auto;
    object-fit: contain;
}

.supplier-logo span {
    font-size: 1.5rem;
    font-weight: bold;
    color: #333;
    display: block;
}

.supplier-logo small {
    font-size: 0.9rem;
    color: #666;
    display: block;
    margin-top: 5px;
}

/* Footer */
.main-footer {
    background-color: #1e4a72;
    color: white;
    padding: 40px 0 20px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    gap: 40px;
}

.footer-text {
    flex: 1;
}

.footer-text p {
    font-size: 1rem;
    line-height: 1.6;
}

.social-links {
    display: flex;
    gap: 20px;
}

.social-links a {
    color: white;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 15px;
    border-radius: 25px;
    background-color: rgba(255,255,255,0.1);
    transition: all 0.3s;
}

.social-links a:hover {
    background-color: rgba(255,255,255,0.2);
    transform: translateY(-2px);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.2);
    padding-top: 20px;
    text-align: center;
    font-size: 0.9rem;
    color: rgba(255,255,255,0.8);
}

.footer-bottom p {
    margin-bottom: 5px;
}

/* Responsividade */
@media (max-width: 768px) {
    .contact-info {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

    .phones {
        justify-content: center;
    }

    .main-header .container {
        flex-direction: column;
        gap: 20px;
    }

    .main-nav ul {
        gap: 15px;
    }

    .hero-content {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero .highlight {
        font-size: 2.5rem;
    }

    .about-content {
        flex-direction: column;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
    }

    .suppliers-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 20px;
    }
}

