/* Variables */
:root {
    --primary-color: #DC2626;
    --secondary-color: #EF4444;
    --dark-color: #1F2937;
    --light-color: #F9FAFB;
    --gray-color: #6B7280;
    --gray-light: #E5E7EB;
    --gray-dark: #374151;
    --gradient: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    overflow-x: hidden;
    width: 100%;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Exo', sans-serif;
    background-color: var(--gray-light);
    color: var(--dark-color);
    overflow-x: hidden;
    line-height: 1.6;
}

/* Loader */
.loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: var(--gray-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    transition: opacity 0.5s, visibility 0.5s;
}

.loader.hidden {
    opacity: 0;
    visibility: hidden;
}

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

.loader-logo {
    font-size: 2rem;
    font-weight: 900;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: pulse 1.5s ease-in-out infinite;
}

.loader-bar {
    width: 200px;
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    margin-top: 20px;
    overflow: hidden;
}

.loader-bar::after {
    content: '';
    display: block;
    width: 40%;
    height: 100%;
    background: var(--gradient);
    border-radius: 2px;
    animation: loading 1.5s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

@keyframes loading {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(350%); }
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    background: rgba(249, 250, 251, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
    z-index: 1000;
    transition: var(--transition);
}

.navbar.scrolled {
    background: rgba(249, 250, 251, 0.98);
    box-shadow: 0 2px 30px rgba(0, 0, 0, 0.1);
}

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

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

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    transition: var(--transition);
}

.logo:hover {
    transform: translateY(-2px);
}

.logo-text {
    font-size: 2rem;
    font-weight: 900;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.logo-subtitle {
    font-size: 1rem;
    font-weight: 600;
    color: var(--dark-color);
}

.nav-menu {
    display: flex;
    gap: 40px;
}

.nav-link {
    text-decoration: none;
    color: var(--dark-color);
    font-weight: 500;
    position: relative;
    transition: var(--transition);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient);
    transition: var(--transition);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
    z-index: 1001;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--dark-color);
    transition: var(--transition);
}

.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    padding-top: 80px;
    overflow: hidden;
    background: linear-gradient(135deg, #1F2937 0%, #374151 100%);
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-particles {
    position: absolute;
    width: 100%;
    height: 100%;
}

.hero-canvas {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0.3;
    pointer-events: none;
}

.hero-gradient {
    position: absolute;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 50%, rgba(220, 38, 38, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(239, 68, 68, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 50% 100%, rgba(220, 38, 38, 0.15) 0%, transparent 50%);
}

/* Animated background shapes */
.hero-bg::before,
.hero-bg::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.3;
    animation: float-shape 20s ease-in-out infinite;
}

.hero-bg::before {
    width: 300px;
    height: 300px;
    background: var(--primary-color);
    top: -150px;
    right: -150px;
}

.hero-bg::after {
    width: 400px;
    height: 400px;
    background: var(--secondary-color);
    bottom: -200px;
    left: -200px;
    animation-delay: -10s;
}

@keyframes float-shape {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(30px, -30px) scale(1.1); }
    66% { transform: translate(-20px, 20px) scale(0.9); }
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    width: 100%;
}

.hero-content {
    z-index: 1;
}

.hero-title {
    font-size: clamp(3rem, 8vw, 5rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 30px;
    color: var(--light-color);
}

.hero-title-line {
    display: block;
    overflow: hidden;
    perspective: 1000px;
}

.hero-title-word {
    display: inline-block;
    animation: slideUp3D 1s cubic-bezier(0.65, 0, 0.35, 1) both;
    animation-delay: calc(var(--index) * 0.15s);
    transform-origin: bottom;
}

@keyframes slideUp3D {
    from {
        transform: translateY(100px) rotateX(-90deg);
        opacity: 0;
    }
    to {
        transform: translateY(0) rotateX(0);
        opacity: 1;
    }
}

.gradient-text {
    background: linear-gradient(135deg, #DC2626 0%, #EF4444 50%, #F87171 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
}

.gradient-text::after {
    content: attr(data-text);
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
    background: linear-gradient(135deg, #DC2626 0%, #EF4444 50%, #F87171 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: blur(15px);
    opacity: 0.5;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 40px;
    animation: fadeInUp 1s ease-out 0.6s both;
}

@keyframes fadeInUp {
    from {
        transform: translateY(30px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.highlight {
    color: var(--secondary-color);
    font-weight: 600;
    text-shadow: 0 0 20px rgba(239, 68, 68, 0.5);
}

.hero-buttons {
    display: flex;
    gap: 20px;
    margin-bottom: 60px;
    animation: fadeInUp 1s ease-out 0.8s both;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--gradient);
    color: var(--light-color);
    border: none;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(220, 38, 38, 0.3);
}

/* Special styling for form submit button */
.contact-form .btn-primary {
    background: var(--gradient);
    border: none;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.contact-form .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 35px rgba(220, 38, 38, 0.4);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: var(--light-color);
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.hero-stats {
    display: flex;
    gap: 60px;
    animation: fadeInUp 1s ease-out 1s both;
}

.stat {
    text-align: center;
    position: relative;
}

.stat::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background: var(--gradient);
    opacity: 0;
    animation: statLine 0.6s ease-out 1.5s forwards;
}

@keyframes statLine {
    to {
        opacity: 1;
        width: 80px;
    }
}

.stat-number {
    font-size: 3rem;
    font-weight: 900;
    background: linear-gradient(135deg, #fff 0%, #F9FAFB 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 2px 10px rgba(255, 255, 255, 0.1);
}

.stat-label {
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
    font-size: 0.9rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.hero-image {
    position: relative;
    animation: fadeIn 1.5s ease-out 0.3s both;
}

.hero-image-container {
    position: relative;
    width: 100%;
    height: 700px;
}

.hero-carousel {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    cursor: grab;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

.hero-carousel:active {
    cursor: grabbing;
}

.hero-carousel-track {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-carousel-slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.8s ease, visibility 0.8s ease;
    pointer-events: none;
}

.hero-carousel-slide.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.hero-image-float {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: float 6s ease-in-out infinite;
}

.hero-carousel-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 2;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot:hover {
    background: rgba(255, 255, 255, 0.5);
}

.dot.active {
    background: var(--primary-color);
    width: 30px;
    border-radius: 5px;
}

.hero-bike img {
    width: 100%;
    max-width: 800px;
    height: auto;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.2));
    transform: scale(1.4);
    object-fit: contain;
    pointer-events: none;
    user-select: none;
    -webkit-user-drag: none;
}

.hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
}

.scroll-indicator {
    width: 30px;
    height: 50px;
    border: 2px solid var(--primary-color);
    border-radius: 25px;
    position: relative;
}

.scroll-indicator span {
    position: absolute;
    top: 10px;
    left: 50%;
    width: 6px;
    height: 6px;
    margin-left: -3px;
    background: var(--primary-color);
    border-radius: 50%;
    animation: scroll 2s infinite;
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes float {
    0%, 100% { transform: translate(-50%, -50%) translateY(0); }
    50% { transform: translate(-50%, -50%) translateY(-20px); }
}

@keyframes scroll {
    0% {
        transform: translateY(0);
        opacity: 0;
    }
    30% {
        opacity: 1;
    }
    60% {
        opacity: 1;
    }
    100% {
        transform: translateY(20px);
        opacity: 0;
    }
}

/* Sections */
section {
    padding: 100px 0;
    width: 100%;
    overflow-x: hidden;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 20px;
}

.title-line {
    display: block;
}

.section-subtitle {
    font-size: 1.25rem;
    color: var(--gray-color);
}

/* About Section */
.about {
    background: var(--gray-light);
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
}

.about-card {
    background: var(--light-color);
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    transition: var(--transition);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(229, 231, 235, 0.5);
}

.about-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow);
}

.card-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--light-color);
}

.about-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.about-card p {
    color: var(--gray-color);
    line-height: 1.8;
}

/* Services Section */
.services {
    background: var(--light-color);
}

.services-carousel {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    cursor: grab;
    user-select: none;
}

.services-carousel:active {
    cursor: grabbing;
}

.service-item {
    display: none;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.service-item.active {
    display: grid;
    animation: fadeIn 0.5s ease-out;
}

.service-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: var(--shadow);
}

.service-content h3 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.service-content p {
    color: var(--gray-color);
    margin-bottom: 30px;
}

.service-content ul {
    list-style: none;
}

.service-content li {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.service-content li i {
    color: var(--primary-color);
}

.service-nav {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 40px;
}

.service-nav-btn {
    width: 50px;
    height: 6px;
    background: var(--gray-light);
    border: none;
    border-radius: 3px;
    cursor: pointer;
    transition: var(--transition);
}

.service-nav-btn.active {
    background: var(--gradient);
}

/* Brands Section */
.brands {
    background: var(--gray-light);
}

.brand-showcase {
    text-align: center;
    margin-bottom: 60px;
}

.brand-logo {
    margin-bottom: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.brand-logo img {
    height: auto;
    max-height: 120px;
    width: auto;
    max-width: 300px;
    object-fit: contain;
}

.brand-features {
    display: flex;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
}

.feature {
    display: flex;
    align-items: center;
    gap: 15px;
    font-weight: 600;
}

.feature i {
    font-size: 1.5rem;
    color: var(--primary-color);
}

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

.model-card {
    background: var(--light-color);
    padding: 30px;
    border-radius: 20px;
    text-align: center;
    transition: var(--transition);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(229, 231, 235, 0.5);
}

.model-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow);
}

.model-image {
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.model-image img {
    max-width: 100%;
    max-height: 100%;
}

.model-card h4 {
    font-size: 1.25rem;
    margin-bottom: 10px;
}

.model-card p {
    color: var(--gray-color);
}

/* CTA Section */
.cta {
    background: var(--gradient);
    color: var(--light-color);
    text-align: center;
}

.cta-content h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 1.25rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

.brazil-map-container {
    max-width: 500px;
    margin: 40px auto;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 20px;
    backdrop-filter: blur(10px);
}

.brazil-map-iframe {
    width: 100%;
    height: 500px;
    border: none;
    border-radius: 10px;
}

.states-list {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin: 40px 0;
}

.state-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    font-size: 1.1rem;
}

.state-item i {
    color: var(--light-color);
    font-size: 1.2rem;
}

.btn-white {
    background: var(--light-color);
    color: var(--primary-color);
}

.btn-white:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* Contact Section */
.contact {
    background: var(--gray-light);
}
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.info-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.info-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light-color);
    flex-shrink: 0;
}

.info-item h4 {
    margin-bottom: 5px;
}

.info-item p {
    color: var(--gray-color);
}

.contact-form {
    background: var(--gray-light);
    padding: 40px;
    border-radius: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid rgba(220, 38, 38, 0.1);
    border-radius: 10px;
    background: var(--light-color);
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.1);
}

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

/* Footer */
.footer {
    background: var(--gray-dark);
    color: var(--light-color);
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-brand .logo {
    margin-bottom: 20px;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 30px;
}

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

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light-color);
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--gradient);
}

.footer-links h4 {
    margin-bottom: 20px;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--light-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.5);
}

/* Responsive */
@media (max-width: 1024px) {
    .hero-title {
        font-size: clamp(2.5rem, 6vw, 4rem);
    }
    
    .hero-image-container {
        height: 600px;
    }
    
    .hero-bike img {
        max-width: 900px;
        transform: scale(1.3);
    }
}

@media (max-width: 768px) {
    .brand-logo img {
        max-height: 80px;
        max-width: 200px;
    }
    
    .hero-carousel-dots {
        gap: 8px;
        bottom: 10px;
    }
    
    .dot {
        width: 8px;
        height: 8px;
    }
    
    .dot.active {
        width: 25px;
    }
    
    body {
        width: 100vw;
        overflow-x: hidden;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: var(--light-color);
        flex-direction: column;
        padding: 100px 30px;
        box-shadow: -5px 0 20px rgba(0, 0, 0, 0.1);
        transition: var(--transition);
        z-index: 999;
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .hero {
        padding-top: 60px;
        min-height: auto;
    }
    
    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 20px;
        padding: 0 15px;
    }
    
    .hero-content {
        order: 2;
        padding: 20px 0;
    }
    
    .hero-image {
        order: 1;
        margin-bottom: 0;
    }
    
    .hero-image-container {
        height: 300px;
        width: 100%;
    }
    
    .hero-bike img {
        max-width: 100%;
        transform: scale(1);
    }
    
    .hero-title {
        font-size: clamp(2rem, 8vw, 3rem);
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
        padding: 0 20px;
    }
    
    .hero-buttons {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .btn {
        padding: 14px 28px;
        font-size: 0.95rem;
    }
    
    .hero-stats {
        justify-content: center;
        gap: 40px;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    /* Services Carousel Mobile */
    .services-carousel {
        width: 100%;
        max-width: 100%;
    }
    
    .service-item {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0;
        width: 100%;
    }
    
    .service-image {
        max-height: 200px;
        overflow: hidden;
        width: 100%;
    }
    
    .service-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    
    .service-content {
        padding: 0 10px;
    }
    
    .service-content h3 {
        font-size: 1.3rem;
    }
    
    .service-content ul {
        padding-left: 20px;
    }
    
    .service-nav {
        margin-top: 20px;
    }
    
    /* About Grid Mobile */
    .about-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .about-card {
        padding: 30px;
    }
    
    /* Models Grid Mobile */
    .models-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    /* Contact Mobile */
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    /* Footer Mobile */
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }
    
    .social-links {
        justify-content: center;
    }
    
    /* Map Mobile */
    .brazil-map-iframe {
        height: 400px;
    }
    
    .states-list {
        gap: 15px;
        padding: 0 20px;
    }
    
    .state-item {
        font-size: 0.95rem;
    }
    
    /* Section Headers Mobile */
    .section-title {
        font-size: clamp(2rem, 6vw, 2.5rem);
    }
    
    /* CTA Mobile */
    .cta-content h2 {
        font-size: clamp(1.5rem, 5vw, 2rem);
        padding: 0 20px;
    }
    
    .cta-content p {
        font-size: 1rem;
        padding: 0 20px;
    }
}

@media (max-width: 480px) {
    .nav-menu {
        width: 100%;
    }
    
    .hero {
        min-height: 100vh;
        padding: 60px 0 40px;
    }
    
    .hero-title {
        font-size: 1.8rem;
        line-height: 1.2;
        margin-bottom: 20px;
    }
    
    .hero-subtitle {
        font-size: 0.95rem;
    }
    
    .hero-stats {
        flex-direction: row;
        gap: 20px;
        flex-wrap: wrap;
        justify-content: space-around;
    }
    
    .stat {
        flex: 0 0 30%;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .stat-label {
        font-size: 0.8rem;
    }
    
    .hero-image-container {
        height: 250px;
    }
    
    .hero-bike img {
        max-width: 300px;
        transform: scale(1);
    }
    
    .hero-buttons {
        gap: 10px;
    }
    
    .btn {
        width: 100%;
        justify-content: center;
        padding: 12px 24px;
        font-size: 0.9rem;
    }
    
    .states-list {
        flex-direction: column;
        align-items: center;
    }
    
    section {
        padding: 40px 0;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .service-image {
        max-height: 150px;
    }
}