/* ============================================
   MOTOFILMS - Estilo Rockero Premium
   ============================================ */

/* CSS Variables - Paleta Rockero */
:root {
    --color-black: #050505;
    --color-black-light: #0a0a0a;
    --color-black-lighter: #111111;
    --color-red: #dc2626;
    --color-red-dark: #991b1b;
    --color-red-light: #ef4444;
    --color-white: #ffffff;
    --color-white-soft: #f5f5f5;
    --color-gray: #6b7280;
    --color-gray-light: #9ca3af;
    --color-gray-dark: #374151;
    --gradient-hero: linear-gradient(180deg, rgba(5,5,5,0.3) 0%, rgba(5,5,5,0.95) 100%);
    --gradient-red: linear-gradient(135deg, var(--color-red) 0%, var(--color-red-dark) 100%);
    --gradient-dark: linear-gradient(180deg, var(--color-black) 0%, var(--color-black-light) 100%);
    --shadow-red: 0 4px 20px rgba(220, 38, 38, 0.4);
    --shadow-dark: 0 10px 40px rgba(0, 0, 0, 0.8);
    --font-display: 'Bebas Neue', sans-serif;
    --font-heading: 'Oswald', sans-serif;
    --font-body: 'Rajdhani', sans-serif;
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 6rem;
    --transition-fast: 0.2s ease;
    --transition-medium: 0.3s ease;
    --transition-slow: 0.5s ease;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; -webkit-text-size-adjust: 100%; }
html, body { -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
body {
    font-family: var(--font-body);
    background-color: var(--color-black);
    color: var(--color-white);
    line-height: 1.6;
    overflow-x: hidden;
    font-weight: 500;
    text-rendering: optimizeLegibility;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: var(--transition-fast); }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
.accent { color: var(--color-red); }

/* HEADER */
.header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    background: rgba(5, 5, 5, 0.95);
    border-bottom: 1px solid rgba(220, 38, 38, 0.2);
    transition: var(--transition-medium);
    will-change: transform;
    contain: layout style;
}
@supports (backdrop-filter: blur(20px)) {
    .header {
        background: rgba(5, 5, 5, 0.9);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
    }
}
.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}
.logo { display: flex; align-items: center; }
.logo-text {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 400;
    letter-spacing: 2px;
    color: var(--color-white);
}
.logo-accent { color: var(--color-red); }
.nav {
    display: flex;
    align-items: center;
    gap: 2rem;
}
.nav-link {
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--color-gray-light);
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    padding: 0.5rem 0;
    transition: var(--transition-fast);
}
.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 0; height: 2px;
    background: var(--color-red);
    transition: var(--transition-medium);
}
.nav-link:hover { color: var(--color-white); }
.nav-link:hover::after { width: 100%; }
.btn-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: var(--gradient-red);
    color: var(--color-white);
    border-radius: 4px;
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition-medium);
    box-shadow: var(--shadow-red);
}
.btn-header:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(220, 38, 38, 0.5);
}
.btn-header svg { width: 18px; height: 18px; }
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 5px;
    z-index: 1001;
}
.menu-toggle span {
    display: block;
    width: 28px; height: 2px;
    background: var(--color-white);
    transition: var(--transition-medium);
}
.menu-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.menu-toggle.active span:nth-child(2) { opacity: 0; }
.menu-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }
.mobile-menu {
    display: none;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(5, 5, 5, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    z-index: 999;
}
.mobile-menu.active { display: flex; }
.mobile-link {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 400;
    color: var(--color-white);
    text-transform: uppercase;
    letter-spacing: 2px;
}
.btn-mobile {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: var(--gradient-red);
    color: var(--color-white);
    border-radius: 4px;
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 1rem;
}

/* HERO SECTION */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.hero-video-wrapper {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    z-index: 0;
}
.hero-video { 
    width: 100%; height: 100%; 
    object-fit: cover;
    will-change: transform;
    transform: translateZ(0);
}
.hero-overlay {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: var(--gradient-hero);
}
.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 6rem 2rem;
    max-width: 900px;
}
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(220, 38, 38, 0.15);
    border: 1px solid rgba(220, 38, 38, 0.3);
    padding: 0.75rem 1.5rem;
    border-radius: 4px;
    margin-bottom: 2rem;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--color-red-light);
}
.badge-pulse {
    width: 8px; height: 8px;
    background: var(--color-red);
    border-radius: 50%;
}
@media (prefers-reduced-motion: no-preference) {
    .badge-pulse { animation: pulse 2s infinite; }
}
@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.2); }
}
.hero-title {
    font-family: var(--font-display);
    font-size: clamp(4rem, 12vw, 8rem);
    font-weight: 400;
    line-height: 0.9;
    margin-bottom: 1rem;
    letter-spacing: 4px;
}
.title-line { display: block; }
.title-line.accent {
    color: var(--color-red);
    text-shadow: 0 0 40px rgba(220, 38, 38, 0.5);
}
.hero-tagline {
    font-family: var(--font-heading);
    font-size: clamp(1.2rem, 3vw, 1.8rem);
    font-weight: 500;
    letter-spacing: 8px;
    color: var(--color-gray-light);
    margin-bottom: 1.5rem;
    text-transform: uppercase;
}
.hero-subtitle {
    font-family: var(--font-body);
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: var(--color-gray-light);
    max-width: 600px;
    margin: 0 auto 2rem;
    font-weight: 500;
}
.btn-hero {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.25rem 3rem;
    background: var(--gradient-red);
    color: var(--color-white);
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: 4px;
    transition: var(--transition-medium);
    box-shadow: var(--shadow-red);
    margin-bottom: 3rem;
}
.btn-hero:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 30px rgba(220, 38, 38, 0.5);
}
.btn-hero svg { width: 24px; height: 24px; }
.hero-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}
.stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
}
.stat-number {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 400;
    color: var(--color-red);
    line-height: 1;
}
.stat-label {
    font-family: var(--font-body);
    font-size: 0.85rem;
    color: var(--color-gray-light);
    text-transform: uppercase;
    letter-spacing: 1px;
}
.stat-divider {
    width: 1px; height: 40px;
    background: rgba(220, 38, 38, 0.3);
}
.scroll-indicator {
    position: absolute;
    bottom: 2rem; left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    color: var(--color-gray);
    font-family: var(--font-body);
    font-size: 0.75rem;
    letter-spacing: 3px;
    text-transform: uppercase;
}
.scroll-line {
    width: 1px; height: 60px;
    background: linear-gradient(180deg, var(--color-red) 0%, transparent 100%);
}
@media (prefers-reduced-motion: no-preference) {
    .scroll-line { animation: scroll-line 2s infinite; }
}
@keyframes scroll-line {
    0%, 100% { transform: scaleY(1); opacity: 1; }
    50% { transform: scaleY(0.5); opacity: 0.5; }
}

/* ABOUT SECTION */
.about {
    padding: var(--spacing-xl) 0;
    background: var(--color-black);
    position: relative;
}
.about-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}
.section-tag {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--color-red);
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 1rem;
}
.section-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 400;
    line-height: 1;
    margin-bottom: 1.5rem;
    letter-spacing: 2px;
}
.about-text {
    font-family: var(--font-body);
    font-size: 1.1rem;
    color: var(--color-gray-light);
    margin-bottom: 1rem;
    line-height: 1.7;
}
.about-badges {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}
.badge {
    padding: 0.5rem 1rem;
    background: rgba(220, 38, 38, 0.1);
    border: 1px solid rgba(220, 38, 38, 0.3);
    border-radius: 4px;
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--color-red-light);
    text-transform: uppercase;
    letter-spacing: 1px;
}
.about-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}
.about-moto-img {
    width: 100%;
    max-width: 400px;
    height: auto;
    filter: drop-shadow(0 0 25px rgba(220, 38, 38, 0.9)) drop-shadow(0 0 60px rgba(220, 38, 38, 0.5));
    transition: var(--transition-medium);
    z-index: 2;
    content-visibility: auto;
}
@media (hover: hover) and (pointer: fine) {
    .about-moto-img:hover {
        filter: drop-shadow(0 0 30px rgba(220, 38, 38, 1)) drop-shadow(0 0 80px rgba(220, 38, 38, 0.7));
        transform: scale(1.02);
    }
}
.visual-accent {
    position: absolute;
    width: 200px; height: 200px;
    background: var(--color-red);
    border-radius: 50%;
    opacity: 0.1;
    filter: blur(60px);
    z-index: 1;
}

/* SERVICE SECTIONS */
.service-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}
.service-section.alt { background: var(--color-black-light); }
.service-video-wrapper {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    z-index: 0;
}
.service-video {
    width: 100%; height: 100%;
    object-fit: cover;
    opacity: 0.4;
}
.service-overlay {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: linear-gradient(90deg, rgba(5,5,5,0.98) 0%, rgba(5,5,5,0.8) 50%, rgba(5,5,5,0.4) 100%);
}
.service-section.alt .service-overlay {
    background: linear-gradient(270deg, rgba(10,10,10,0.98) 0%, rgba(10,10,10,0.8) 50%, rgba(10,10,10,0.4) 100%);
}
.service-content-wrapper {
    position: relative;
    z-index: 1;
    max-width: 600px;
    padding: 4rem;
    margin-left: 5%;
}
.service-section.alt .service-content-wrapper {
    margin-left: auto;
    margin-right: 5%;
    text-align: right;
}
.service-section.alt .service-content-wrapper .service-features { align-items: flex-end; }
.service-section.alt .service-content-wrapper .service-features li { flex-direction: row-reverse; }
.service-section.alt .service-content-wrapper .service-features li::before {
    margin-right: 0;
    margin-left: 0.75rem;
}
.service-tag {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--color-red);
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 1rem;
    padding: 0.5rem 1rem;
    border: 1px solid rgba(220, 38, 38, 0.3);
    border-radius: 4px;
}
.service-title {
    font-family: var(--font-display);
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 400;
    line-height: 0.9;
    margin-bottom: 0.5rem;
    letter-spacing: 3px;
    color: var(--color-white);
}
.service-subtitle {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--color-red);
    text-transform: uppercase;
    letter-spacing: 4px;
    margin-bottom: 1.5rem;
}
.service-desc {
    font-family: var(--font-body);
    font-size: 1.1rem;
    color: var(--color-gray-light);
    margin-bottom: 2rem;
    line-height: 1.7;
}
.service-features {
    list-style: none;
    margin-bottom: 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}
.service-features li {
    display: flex;
    align-items: center;
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--color-gray-light);
}
.service-features li::before {
    content: '›';
    color: var(--color-red);
    font-size: 1.5rem;
    margin-right: 0.75rem;
    font-weight: 700;
}
.btn-service {
    display: inline-flex;
    align-items: center;
    padding: 1rem 2.5rem;
    background: transparent;
    border: 2px solid var(--color-red);
    color: var(--color-red);
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: 4px;
    transition: var(--transition-medium);
}
.btn-service:hover {
    background: var(--color-red);
    color: var(--color-white);
    box-shadow: var(--shadow-red);
}

/* SERVICE MOTO SVG */
.service-moto {
    position: absolute;
    right: 5%;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    width: 45%;
    max-width: 600px;
    pointer-events: none;
}
.service-moto img {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 0 20px rgba(220, 38, 38, 0.9)) drop-shadow(0 0 55px rgba(220, 38, 38, 0.5));
    content-visibility: auto;
}
@media (hover: hover) and (pointer: fine) {
    .service-moto img {
        transition: var(--transition-medium);
    }
    .service-moto img:hover {
        filter: drop-shadow(0 0 30px rgba(220, 38, 38, 1)) drop-shadow(0 0 70px rgba(220, 38, 38, 0.7));
    }
}
.service-section.alt .service-moto {
    right: auto;
    left: 5%;
}
.service-section.alt .service-moto img {
    transform: scaleX(-1);
}

/* REVIEWS SECTION */
.reviews {
    padding: var(--spacing-xl) 0;
    background: var(--color-black);
}
.reviews-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}
.reviews-header {
    text-align: center;
    margin-bottom: 4rem;
}
.reviews-meta {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1.5rem;
}
.rating {
    display: flex;
    align-items: center;
    gap: 1rem;
}
.stars {
    color: var(--color-red);
    font-size: 1.5rem;
    letter-spacing: 4px;
}
.rating-score {
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--color-white);
    letter-spacing: 2px;
}
.reviews-count {
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: var(--color-gray);
    text-transform: uppercase;
    letter-spacing: 1px;
}
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}
.review-card {
    background: var(--color-black-lighter);
    border: 1px solid rgba(220, 38, 38, 0.1);
    border-radius: 8px;
    padding: 1.5rem;
    transition: var(--transition-medium);
}
.review-card:hover {
    border-color: rgba(220, 38, 38, 0.3);
}
@media (hover: hover) and (pointer: fine) {
    .review-card:hover { transform: translateY(-5px); }
}
.review-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}
.reviewer-avatar {
    width: 50px; height: 50px;
    background: var(--gradient-red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--color-white);
}
.reviewer-info {
    display: flex;
    flex-direction: column;
}
.reviewer-name {
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 1rem;
    color: var(--color-white);
}
.reviewer-bike {
    font-family: var(--font-body);
    font-size: 0.85rem;
    color: var(--color-gray);
}
.review-stars {
    color: var(--color-red);
    font-size: 1rem;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}
.review-text {
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--color-gray-light);
    line-height: 1.6;
    font-style: italic;
}

/* FOOTER */
.footer {
    background: var(--color-black-light);
    border-top: 1px solid rgba(220, 38, 38, 0.2);
    padding: 4rem 0 2rem;
}
.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 3rem;
    margin-bottom: 3rem;
}
.footer-logo {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 400;
    letter-spacing: 2px;
    color: var(--color-white);
    margin-bottom: 1rem;
    display: block;
}
.footer-tagline {
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--color-gray);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}
.footer-social {
    display: flex;
    gap: 1rem;
}
.social-link {
    width: 44px; height: 44px;
    background: rgba(220, 38, 38, 0.1);
    border: 1px solid rgba(220, 38, 38, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-medium);
}
.social-link:hover {
    background: var(--color-red);
    border-color: var(--color-red);
    transform: translateY(-3px);
}
.social-link svg {
    width: 20px; height: 20px;
    color: var(--color-white);
}
.footer-title {
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}
.footer-links ul { list-style: none; }
.footer-links li { margin-bottom: 0.75rem; }
.footer-links a {
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--color-gray);
    transition: var(--transition-fast);
}
.footer-links a:hover { color: var(--color-red); }
.footer-phone { color: var(--color-red) !important; font-weight: 600; }
.btn-footer {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: var(--gradient-red);
    color: var(--color-white);
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 4px;
    transition: var(--transition-medium);
    box-shadow: var(--shadow-red);
}
.btn-footer:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(220, 38, 38, 0.5);
}
.btn-footer svg { width: 20px; height: 20px; }
.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(220, 38, 38, 0.1);
}
.footer-bottom p {
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: var(--color-gray);
}

/* WHATSAPP FIXED BUTTON */
.whatsapp-fixed {
    position: fixed;
    bottom: 2rem; right: 2rem;
    width: 60px; height: 60px;
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 100;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: var(--transition-medium);
}
.whatsapp-fixed svg {
    width: 30px; height: 30px;
    color: var(--color-white);
}
.whatsapp-fixed:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.6);
}
.whatsapp-pulse {
    position: absolute;
    width: 100%; height: 100%;
    border-radius: 50%;
    background: rgba(37, 211, 102, 0.4);
}
@media (prefers-reduced-motion: no-preference) {
    .whatsapp-pulse { animation: pulse-whatsapp 2s infinite; }
}
@keyframes pulse-whatsapp {
    0% { transform: scale(1); opacity: 1; }
    100% { transform: scale(1.5); opacity: 0; }
}

/* RESPONSIVE */
@media (max-width: 1024px) {
    .nav { display: none; }
    .menu-toggle { display: flex; }
    .about-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .about-badges { justify-content: center; }
    .about-visual { order: -1; }
    .about-moto-img { max-width: 300px; }
    .visual-accent { width: 150px; height: 150px; }
    .reviews-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-container { grid-template-columns: 1fr 1fr; }
    .service-moto {
        width: 35%;
        right: 2%;
    }
    .service-section.alt .service-moto {
        left: 2%;
    }
}
@media (max-width: 768px) {
    .header-container { padding: 0.75rem 1rem; }
    .logo-text { font-size: 1.5rem; }
    .btn-header { display: none; }
    .hero-content { padding: 5rem 1rem 3rem; }
    .hero-stats { flex-direction: column; gap: 1rem; }
    .stat-divider { width: 40px; height: 1px; }
    .hero-title { font-size: clamp(2.8rem, 10vw, 6rem); }
    .hero-tagline { font-size: clamp(0.95rem, 2.5vw, 1.4rem); letter-spacing: 4px; }
    .hero-subtitle { font-size: 0.95rem; }
    .stat-number { font-size: 2rem; }
    .section-title { font-size: clamp(2rem, 6vw, 3rem); }
    .service-title { font-size: clamp(2.2rem, 7vw, 3.5rem); }
    .service-subtitle { font-size: 1rem; }
    .service-desc { font-size: 0.95rem; }
    .about-text { font-size: 1rem; }
    .service-content-wrapper {
        padding: 1.5rem;
        margin: 0;
        text-align: center;
    }
    .service-section.alt .service-content-wrapper {
        margin: 0;
        text-align: center;
    }
    .service-section.alt .service-content-wrapper .service-features { align-items: center; }
    .service-section.alt .service-content-wrapper .service-features li { flex-direction: row; }
    .service-section.alt .service-content-wrapper .service-features li::before {
        margin-right: 0.75rem;
        margin-left: 0;
    }
    .service-overlay { background: rgba(5, 5, 5, 0.95) !important; }
    .service-video { display: none; }
    .service-moto {
        position: relative;
        right: auto;
        left: auto;
        top: auto;
        transform: none;
        width: 70%;
        max-width: 250px;
        margin: 0 auto 1.5rem;
        order: -1;
        pointer-events: auto;
    }
    .service-section.alt .service-moto {
        left: auto;
    }
    .service-section.alt .service-moto img {
        transform: none;
    }
    .service-section {
        flex-direction: column;
        padding-top: 1.5rem;
        min-height: auto;
        padding-bottom: 2rem;
    }
    .btn-service { 
        width: 100%; 
        justify-content: center;
        min-height: 48px;
    }
    .reviews-grid { grid-template-columns: 1fr; gap: 1rem; }
    .review-card { padding: 1.25rem; }
    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
        padding: 0 1rem;
    }
    .footer-social { justify-content: center; }
    .whatsapp-fixed {
        width: 56px; height: 56px;
        bottom: 1rem; right: 1rem;
    }
    .whatsapp-fixed svg { width: 28px; height: 28px; }
    .btn-hero, .btn-footer, .btn-mobile {
        min-height: 48px;
    }
}
@media (max-width: 480px) {
    .hero-title { font-size: clamp(2.2rem, 12vw, 3.2rem); }
    .hero-tagline { font-size: clamp(0.75rem, 3.5vw, 0.95rem); letter-spacing: 3px; }
    .hero-subtitle { font-size: 0.85rem; }
    .stat-number { font-size: 1.7rem; }
    .section-title { font-size: clamp(1.8rem, 8vw, 2.4rem); }
    .service-title { font-size: clamp(1.9rem, 9vw, 2.6rem); }
    .service-subtitle { font-size: 0.9rem; }
    .service-desc { font-size: 0.875rem; }
    .about-text { font-size: 0.9rem; }
    .btn-hero, .btn-service { width: 100%; justify-content: center; }
}
