/* Reset e Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --color-green: #00843d;
    --color-green-dark: #006830;
    --color-green-light: #00a84f;
    --color-red: #ed1c24;
    --color-red-dark: #c21820;
    --color-yellow: #ffc72c;
    --color-yellow-dark: #f0b722;
    --color-gray-50: #f9fafb;
    --color-gray-100: #f3f4f6;
    --color-gray-200: #e5e7eb;
    --color-gray-600: #4b5563;
    --color-gray-800: #1f2937;
    --color-gray-900: #111827;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #333;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Top Bar com cores RS divididas */
.top-bar {
    display: flex;
    height: 50px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.top-bar-section {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 14px;
    font-weight: 600;
}

.top-bar-green {
    background-color: var(--color-green);
}

.top-bar-red {
    background-color: var(--color-red);
}

.top-bar-yellow {
    background-color: var(--color-yellow);
    color: var(--color-green-dark);
}

.top-bar-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Header */
.header {
    background-color: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 4px solid transparent;
    border-image: linear-gradient(90deg, var(--color-green) 33.33%, var(--color-red) 33.33%, var(--color-red) 66.66%, var(--color-yellow) 66.66%) 1;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 16px;
}

.logo-img {
    width: 70px;
    height: 70px;
    min-width: 70px;
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.logo-tche {
    color: var(--color-green);
    font-weight: 900;
    font-size: 20px;
    text-shadow: 1px 1px 2px rgba(0, 132, 61, 0.2);
}

.logo-autocenter {
    color: var(--color-red);
    font-weight: 900;
    font-size: 20px;
    text-shadow: 1px 1px 2px rgba(237, 28, 36, 0.2);
}

.nav-desktop {
    display: none;
    gap: 32px;
}

.nav-link {
    color: #333;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    position: relative;
    padding-bottom: 4px;
}

.nav-link:hover {
    color: var(--color-red);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--color-green) 33.33%, var(--color-red) 33.33%, var(--color-red) 66.66%, var(--color-yellow) 66.66%);
    transition: width 0.3s;
}

.nav-link:hover::after {
    width: 100%;
}

.menu-btn {
    display: block;
    background: linear-gradient(90deg, var(--color-red), var(--color-red-dark));
    border: none;
    font-size: 24px;
    cursor: pointer;
    padding: 8px 12px;
    border-radius: 6px;
    color: white;
    box-shadow: 0 2px 8px rgba(237, 28, 36, 0.3);
    transition: all 0.3s;
}

.menu-btn:active {
    transform: scale(0.95);
}

.nav-mobile {
    display: none;
    flex-direction: column;
    gap: 8px;
    padding-bottom: 16px;
    background: linear-gradient(180deg, var(--color-gray-50), white);
    border-radius: 0 0 8px 8px;
    margin-top: 12px;
    padding: 16px;
}

.nav-mobile.active {
    display: flex;
}

.nav-link-mobile {
    color: #333;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    padding: 12px 16px;
    border-radius: 6px;
    border-left: 4px solid transparent;
}

.nav-link-mobile:hover {
    color: var(--color-red);
    background-color: var(--color-gray-50);
    border-left-color: var(--color-red);
}

/* Hero Section com Gradiente Diagonal RS */
.hero {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, 
        var(--color-green) 0%, 
        var(--color-green) 30%, 
        var(--color-red) 50%, 
        var(--color-yellow) 80%, 
        var(--color-yellow) 100%);
    z-index: 1;
}

.hero-roda-image {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 100vw;
    height: 100%;
    z-index: 2;
    opacity: 0.6;
    object-fit: cover;
    object-position: right center;
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 800px;
    padding: 60px 20px;
}

.hero-title {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 24px;
    line-height: 1.2;
    text-shadow: 3px 3px 10px rgba(0, 0, 0, 0.6);
}

.highlight-yellow {
    color: var(--color-yellow);
    text-shadow: 3px 3px 10px rgba(0, 0, 0, 0.8);
}

.highlight-red {
    color: var(--color-red);
}

.highlight-green {
    color: var(--color-green);
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.6);
    font-weight: 500;
}

.hero-cta {
    font-size: 1.5rem;
    margin-bottom: 40px;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.6);
    font-weight: 700;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
    margin-bottom: 48px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 32px;
    border-radius: 6px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    font-size: 16px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.btn-primary {
    background: linear-gradient(135deg, var(--color-yellow), var(--color-yellow-dark));
    color: var(--color-green-dark);
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--color-yellow-dark), #e0a618);
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(255, 199, 44, 0.4);
}

.btn-primary:active {
    transform: translateY(-1px);
}

.btn-secondary {
    background: linear-gradient(135deg, var(--color-green), var(--color-green-dark));
    color: white;
}

.btn-secondary:hover {
    background: linear-gradient(135deg, var(--color-green-dark), #005724);
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(0, 132, 61, 0.4);
}

.btn-secondary:active {
    transform: translateY(-1px);
}

.btn-white {
    background-color: white;
    color: var(--color-green-dark);
    font-weight: 700;
}

.btn-white:hover {
    background-color: var(--color-yellow);
    color: var(--color-green-dark);
    transform: translateY(-3px);
}

.btn-white:active {
    transform: translateY(-1px);
}

.btn-block {
    display: block;
    width: 100%;
    text-align: center;
}

.payment-methods {
    margin-top: 40px;
}

.payment-label {
    font-size: 14px;
    margin-bottom: 12px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
    font-weight: 600;
}

.payment-cards {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

.payment-card {
    background-color: white;
    color: #333;
    padding: 10px 20px;
    border-radius: 6px;
    font-weight: 700;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    border: 2px solid var(--color-yellow);
    font-size: 13px;
}

/* Services Section */
.services {
    padding: 80px 0;
    background: linear-gradient(180deg, var(--color-gray-50) 0%, white 100%);
}

.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 16px;
    position: relative;
    display: inline-block;
    padding-bottom: 16px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 4px;
    background: linear-gradient(90deg, var(--color-green) 33.33%, var(--color-red) 33.33%, var(--color-red) 66.66%, var(--color-yellow) 66.66%);
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--color-gray-600);
    max-width: 700px;
    margin: 0 auto;
}

.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    margin-bottom: 64px;
}

.service-card {
    background-color: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
    border: 2px solid transparent;
}

.service-card:hover {
    box-shadow: 0 8px 30px rgba(237, 28, 36, 0.2);
    transform: translateY(-5px);
    border-color: var(--color-yellow);
}

.service-image {
    position: relative;
    height: 200px;
    background-size: cover;
    background-position: center;
}

.service-icon {
    position: absolute;
    top: 16px;
    left: 16px;
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--color-gray-100), var(--color-gray-200));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    box-shadow: 0 4px 12px rgba(237, 28, 36, 0.4);
    border: 3px solid var(--color-red);
}

.service-content {
    padding: 24px;
    background: linear-gradient(180deg, white, var(--color-gray-50));
}

.service-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-green-dark);
    margin-bottom: 12px;
}

.service-description {
    color: var(--color-gray-600);
    font-size: 0.95rem;
}

.cta-box {
    background: linear-gradient(90deg, var(--color-green) 0%, var(--color-red) 50%, var(--color-yellow) 100%);
    color: white;
    padding: 48px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 8px 24px rgba(237, 28, 36, 0.3);
    border: 2px solid var(--color-yellow);
}

.cta-title {
    font-size: 2rem;
    font-weight: 900;
    margin-bottom: 16px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.cta-subtitle {
    font-size: 1.25rem;
    margin-bottom: 24px;
    font-weight: 700;
}

/* About Section */
.about {
    padding: 80px 0;
    background-color: white;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
    align-items: center;
}

.about-image-wrapper {
    position: relative;
}

.about-image {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    border: 4px solid var(--color-yellow);
}

.about-decoration-1 {
    position: absolute;
    top: -16px;
    right: -16px;
    width: 128px;
    height: 128px;
    background: linear-gradient(135deg, var(--color-yellow), var(--color-yellow-dark));
    border-radius: 8px;
    z-index: -1;
    box-shadow: 0 4px 12px rgba(255, 199, 44, 0.4);
}

.about-decoration-2 {
    position: absolute;
    bottom: -16px;
    left: -16px;
    width: 128px;
    height: 128px;
    background: linear-gradient(135deg, var(--color-green), var(--color-green-dark));
    border-radius: 8px;
    z-index: -1;
    box-shadow: 0 4px 12px rgba(0, 132, 61, 0.4);
}

.about-content {
    padding: 0 20px;
}

.about-text {
    font-size: 1rem;
    color: var(--color-gray-600);
    margin-bottom: 24px;
    line-height: 1.7;
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 32px;
}

.feature {
    display: flex;
    gap: 16px;
    padding: 20px;
    border-radius: 8px;
    background: linear-gradient(180deg, white, var(--color-gray-50));
    border-left: 4px solid transparent;
    transition: all 0.3s;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.feature:hover {
    transform: translateX(8px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.feature-green {
    border-left-color: var(--color-green);
}

.feature-green:hover {
    border-left-color: var(--color-yellow);
}

.feature-red {
    border-left-color: var(--color-red);
}

.feature-red:hover {
    border-left-color: var(--color-yellow);
}

.feature-yellow {
    border-left-color: var(--color-yellow);
}

.feature-yellow:hover {
    border-left-color: var(--color-green);
}

.feature-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--color-red), var(--color-red-dark));
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    box-shadow: 0 4px 12px rgba(237, 28, 36, 0.3);
}

.feature-green .feature-icon {
    background: linear-gradient(135deg, var(--color-green), var(--color-green-dark));
    box-shadow: 0 4px 12px rgba(0, 132, 61, 0.3);
}

.feature-yellow .feature-icon {
    background: linear-gradient(135deg, var(--color-yellow), var(--color-yellow-dark));
    box-shadow: 0 4px 12px rgba(255, 199, 44, 0.3);
    color: var(--color-green-dark);
}

.feature-content {
    flex: 1;
    text-align: left;
}

.feature-title {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 4px;
    color: var(--color-green-dark);
}

.feature-description {
    font-size: 0.875rem;
    color: var(--color-gray-600);
}

/* Contact Section */
.contact {
    padding: 80px 0;
    background: linear-gradient(180deg, var(--color-gray-50) 0%, white 100%);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
}

.contact-info-wrapper {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.contact-info-box,
.payment-info-box,
.map-wrapper {
    background-color: white;
    padding: 32px;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    border-top: 4px solid var(--color-red);
}

.payment-info-box {
    border-top-color: var(--color-green);
}

.map-wrapper {
    border-top-color: var(--color-yellow);
}

.contact-box-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-green-dark);
    margin-bottom: 24px;
}

.contact-item {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
    padding: 16px;
    border-radius: 8px;
    transition: all 0.3s;
}

.contact-item:hover {
    background: linear-gradient(135deg, var(--color-gray-50), white);
    transform: translateX(8px);
}

.contact-item:last-child {
    margin-bottom: 0;
}

.contact-item-icon {
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--color-red), var(--color-red-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    box-shadow: 0 4px 12px rgba(237, 28, 36, 0.3);
}

.contact-item-title {
    font-weight: 700;
    margin-bottom: 4px;
    color: var(--color-green-dark);
}

.contact-link {
    color: var(--color-gray-600);
    text-decoration: none;
    transition: color 0.3s;
    font-weight: 500;
}

.contact-link:hover {
    color: var(--color-red);
}

.contact-text {
    color: var(--color-gray-600);
    font-size: 0.95rem;
}

.payment-methods-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.payment-badge {
    padding: 10px 20px;
    border-radius: 6px;
    font-weight: 700;
    color: white;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    transition: all 0.3s;
    font-size: 13px;
}

.payment-badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
}

.payment-badge.visa {
    background-color: #1a1f71;
}

.payment-badge.mastercard {
    background: linear-gradient(90deg, var(--color-red), #ea580c);
}

.payment-badge.pix {
    background: linear-gradient(135deg, var(--color-yellow), var(--color-yellow-dark));
    color: var(--color-green-dark);
}

.payment-badge.cash {
    background: linear-gradient(135deg, var(--color-green), var(--color-green-dark));
}

.map-container {
    aspect-ratio: 16 / 9;
    border-radius: 6px;
    overflow: hidden;
    background-color: var(--color-gray-200);
    margin-bottom: 24px;
    border: 3px solid var(--color-yellow);
}

/* Footer */
.footer {
    background: linear-gradient(135deg, var(--color-gray-900) 0%, #0a0f1a 100%);
    color: white;
    padding: 48px 0 0;
    border-top: 5px solid transparent;
    border-image: linear-gradient(90deg, var(--color-green) 33.33%, var(--color-red) 33.33%, var(--color-red) 66.66%, var(--color-yellow) 66.66%) 1;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    margin-bottom: 48px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.footer-logo-img {
    width: 48px;
    height: 48px;
    border-radius: 6px;
}

.footer-logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.footer-description {
    color: var(--color-gray-200);
    font-size: 14px;
    line-height: 1.6;
}

.footer-title {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--color-yellow);
}

.footer-links,
.footer-services,
.footer-contact {
    list-style: none;
}

.footer-links li,
.footer-services li,
.footer-contact li {
    margin-bottom: 12px;
}

.footer-links a,
.footer-contact a {
    color: var(--color-gray-200);
    text-decoration: none;
    transition: all 0.3s;
    font-size: 14px;
}

.footer-links a:hover,
.footer-contact a:hover {
    color: var(--color-yellow);
    padding-left: 4px;
}

.footer-services {
    color: var(--color-gray-200);
    font-size: 14px;
}

.footer-contact li {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    font-size: 14px;
}

.social-links {
    display: flex;
    gap: 12px;
    margin-top: 24px;
}

.social-link {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, var(--color-red), var(--color-red-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s;
    box-shadow: 0 4px 12px rgba(237, 28, 36, 0.3);
}

.social-link:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 16px rgba(255, 199, 44, 0.4);
}

.facebook-link:hover {
    background: linear-gradient(135deg, #1877F2, #0a66c2);
}

.instagram-link:hover {
    background: linear-gradient(45deg, #feda75, #fa7e1e, #d92e7f, #9b36b7, #515bd4);
}

.whatsapp-link:hover {
    background: linear-gradient(135deg, #25d366, #128c7e);
}

.footer-bottom {
    border-top: 1px solid var(--color-gray-800);
    padding: 24px 0;
    background: linear-gradient(90deg, rgba(0, 132, 61, 0.1), rgba(255, 199, 44, 0.1), rgba(237, 28, 36, 0.1));
}

.footer-bottom .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    font-size: 14px;
    color: var(--color-gray-200);
    text-align: center;
}

/* Responsive Design */
@media (min-width: 768px) {
    .top-bar-section {
        flex: 1;
    }

    .nav-desktop {
        display: flex;
    }

    .menu-btn {
        display: none;
    }

    .hero-title {
        font-size: 3.5rem;
    }

    .hero-subtitle {
        font-size: 1.5rem;
    }

    .hero-cta {
        font-size: 1.75rem;
    }

    .hero-roda-image {
        width: 100vw;
        right: 0;
        opacity: 0.6;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-bottom .container {
        flex-direction: row;
        justify-content: space-between;
    }
}

@media (max-width: 768px) {
    .hero-roda-image {
        width: 100vw;
        right: 0;
        opacity: 0.35;
    }
}

@media (max-width: 480px) {
    .hero-roda-image {
        width: 100vw;
        right: 0;
        opacity: 0.25;
    }
}

@media (min-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .about-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .hero-roda-image {
        width: 100vw;
        right: 0;
        opacity: 0.6;
    }
}