/* ===== MARQUES SECTION ===== */
.marques {
    padding: 80px 20px;
    background: linear-gradient(135deg, #f5f7fa 0%, #ffffff 100%);
}

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

.marques h2 {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 10px;
    color: #1a1a1a;
    font-family: 'Space Grotesk', sans-serif;
}

.marques .section-subtitle {
    text-align: center;
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 60px;
}

.marques-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
}

.marque-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.marque-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.marque-image {
    width: 100%;
    height: 240px;
    overflow: hidden;
    background: linear-gradient(135deg, #f0f0f0 0%, #e8e8e8 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.marque-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.marque-content {
    padding: 30px;
}

.marque-content h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: #1a1a1a;
    font-family: 'Space Grotesk', sans-serif;
}

.marque-subtitle {
    color: var(--secondary-orange);
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.marque-content p {
    color: #555;
    line-height: 1.6;
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.marque-link {
    display: inline-block;
    color: var(--secondary-orange);
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.95rem;
}

.marque-link:hover {
    color: #e55a25;
}

/* ===== AVANTAGES SECTION ===== */
.avantages {
    padding: 80px 20px;
    background: white;
}

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

.avantages h2 {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 10px;
    color: #1a1a1a;
    font-family: 'Space Grotesk', sans-serif;
}

.avantages .section-subtitle {
    text-align: center;
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 60px;
}

.avantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.avantage-item {
    text-align: center;
    padding: 40px 30px;
    background: #f9f9f9;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.avantage-item:hover {
    background: #f0f0f0;
    transform: translateY(-4px);
}

.avantage-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--secondary-orange) 0%, #f94f3d 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
    font-size: 2rem;
}

.avantage-item h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: #1a1a1a;
    font-family: 'Space Grotesk', sans-serif;
}

.avantage-item p {
    color: #666;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* ===== ABOUT SECTION ===== */
.about {
    padding: 80px 20px;
    background: linear-gradient(135deg, #f5f7fa 0%, #ffffff 100%);
}

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

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text h2 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 30px;
    color: #1a1a1a;
    font-family: 'Space Grotesk', sans-serif;
}

.about-text p {
    color: #555;
    line-height: 1.8;
    margin-bottom: 20px;
    font-size: 1rem;
}

.about-highlights {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
    padding-top: 40px;
    border-top: 2px solid #f0f0f0;
}

.highlight {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.highlight-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--secondary-orange);
    font-family: 'Space Grotesk', sans-serif;
}

.highlight-text {
    color: #666;
    font-size: 0.95rem;
    margin-top: 8px;
}

.about-image {
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-image img {
    width: 100%;
    max-width: 400px;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

/* ===== CTA SECTION ===== */
.cta {
    padding: 80px 20px;
    background: linear-gradient(135deg, var(--secondary-orange) 0%, #f94f3d 100%);
    color: white;
}

.cta .container {
    max-width: 900px;
    margin: 0 auto;
}

.cta-content {
    text-align: center;
}

.cta h2 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 15px;
    font-family: 'Space Grotesk', sans-serif;
}

.cta p {
    font-size: 1.1rem;
    margin-bottom: 40px;
    opacity: 0.95;
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-large {
    padding: 16px 40px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 8px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.cta .btn-primary {
    background: white;
    color: var(--secondary-orange);
}

.cta .btn-primary:hover {
    background: #f0f0f0;
    transform: translateY(-2px);
}

.cta .btn-secondary {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: 2px solid white;
}

.cta .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

/* ===== FOOTER SECTION ===== */
.footer {
    background: #1a1a1a;
    color: #e0e0e0;
    padding: 60px 20px 20px;
}

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

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin-bottom: 50px;
}

.footer-section h3,
.footer-section h4 {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    margin-bottom: 15px;
    color: #ffffff;
}

.footer-section h3 {
    font-size: 1.5rem;
}

.footer-section h4 {
    font-size: 1.1rem;
}

.footer-section p {
    color: #b0b0b0;
    line-height: 1.8;
    font-size: 0.95rem;
}

.footer-mission {
    margin-top: 10px;
    font-style: italic;
    color: var(--secondary-orange);
}

.contact-info p {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.contact-info i {
    color: var(--secondary-orange);
    width: 20px;
    text-align: center;
}

.contact-info a {
    color: #e0e0e0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info a:hover {
    color: var(--secondary-orange);
}

.footer-hours {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid #333;
}

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

.social-links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 107, 53, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary-orange);
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--secondary-orange);
    color: white;
    transform: translateY(-4px);
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 30px;
    text-align: center;
}

.footer-legal {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 15px;
    flex-wrap: wrap;
}

.footer-legal a {
    color: #b0b0b0;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-legal a:hover {
    color: var(--secondary-orange);
}

.footer-copyright {
    color: #666;
    font-size: 0.9rem;
}

.footer-copyright i {
    color: var(--secondary-orange);
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 768px) {
    .marques,
    .avantages,
    .about,
    .cta {
        padding: 60px 20px;
    }

    .marques h2,
    .avantages h2,
    .cta h2 {
        font-size: 2rem;
    }

    .about-text h2 {
        font-size: 1.8rem;
    }

    .marques-grid,
    .avantages-grid {
        gap: 30px;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-highlights {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .cta p {
        font-size: 1rem;
    }

    .cta-buttons {
        gap: 10px;
    }

    .btn-large {
        padding: 14px 30px;
        font-size: 0.95rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-legal {
        gap: 10px;
    }
}

@media (max-width: 480px) {
    .marques h2,
    .avantages h2,
    .cta h2 {
        font-size: 1.6rem;
    }

    .about-text h2 {
        font-size: 1.5rem;
    }

    .marques .section-subtitle,
    .avantages .section-subtitle {
        font-size: 1rem;
    }

    .marque-content {
        padding: 20px;
    }

    .avantage-item {
        padding: 30px 20px;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .btn-large {
        width: 100%;
        justify-content: center;
    }

    .highlight-number {
        font-size: 1.5rem;
    }
}
