:root {
  /* Colors - Automotive Dark Theme */
  --cor-fundo: #000000;
  --cor-fundo-alt: #0A0A0A;
  --cor-superficie: rgba(15, 15, 15, 0.85);
  
  --cor-texto: #FFFFFF;
  --cor-texto-secundario: #E2E8F0;
  --cor-texto-claro: #D1D5DB; /* Alto contraste para fundos escuros */
  
  --cor-primaria: #FF2D37; /* Lighter red for better contrast on dark backgrounds */
  --cor-primaria-hover: #E31B23;
  
  --cor-destaque: #25D366; /* WhatsApp */
  --cor-destaque-hover: #128C7E;

  --cor-borda: #1F2937;
  --cor-borda-escura: #374151;
  
  --cor-gradiente-red: linear-gradient(135deg, #E31B23 0%, #901116 100%);
  --cor-texto-gradiente: linear-gradient(to right, #FFFFFF, #94A3B8);

  /* Typography */
  --font-title: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-body: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-accent: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  /* Spacing */
  --spacing-xs: 4px;
  --spacing-sm: 8px;
  --spacing-md: 16px;
  --spacing-lg: 24px;
  --spacing-xl: 32px;
  --spacing-2xl: 48px;
  --spacing-3xl: 64px;
  
  /* Shadows */
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.5);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.8), 0 2px 4px -1px rgba(0, 0, 0, 0.5);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.9), 0 4px 6px -2px rgba(0, 0, 0, 0.7);
  --shadow-glass: 0 4px 30px rgba(0, 0, 0, 0.3);
  
  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Reset e Estilos Base */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; overflow-x: hidden; }
body { 
  font-family: var(--font-body); 
  color: var(--cor-texto); 
  background-color: var(--cor-fundo); 
  line-height: 1.6; 
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* Preload Guard: Disable transitions on load */
.preload * {
    -webkit-transition: none !important;
    -moz-transition: none !important;
    -ms-transition: none !important;
    -o-transition: none !important;
    transition: none !important;
}

h1, h2, h3, h4 { font-family: var(--font-title); letter-spacing: -0.04em; line-height: 1.1; }
h2 { font-size: clamp(32px, 5vw, 48px); margin-bottom: 24px; }

@keyframes shimmer {
  0% { background-position: -200% center; }
  100% { background-position: 200% center; }
}

em { 
  font-family: inherit; 
  font-style: normal; 
  font-weight: inherit; 
  background: linear-gradient(
    90deg, 
    var(--cor-primaria) 0%, 
    #ff4d5a 25%, 
    var(--cor-primaria) 50%, 
    #ff4d5a 75%, 
    var(--cor-primaria) 100%
  );
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shimmer 8s linear infinite;
  display: inline-block;
  padding-bottom: 0.1em;
  margin-bottom: -0.1em;
  vertical-align: bottom;
}
a { 
    text-decoration: none; 
    color: #FFFFFF; 
    transition: background-color 0.3s ease, transform 0.3s ease, opacity 0.3s ease; 
}
img { max-width: 100%; height: auto; display: block; border-radius: 12px; }

/* Utilities */
.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section-bg-alt { background-color: var(--cor-fundo-alt); }
.text-gradient { background: var(--cor-texto-gradiente); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.text-red { color: var(--cor-primaria); }

/* Buttons */
.btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 10px;
    padding: 16px 32px; border-radius: 12px; font-weight: 700; font-size: 15px;
    cursor: pointer; transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease; border: none;
}
.btn-primary { background: var(--cor-primaria); color: #FFF; }
.btn-primary:hover { background: var(--cor-primaria-hover); transform: translateY(-2px); box-shadow: 0 10px 20px rgba(227, 27, 35, 0.3); }

.btn-secondary { background: transparent; color: #FFF; border: 1px solid var(--cor-borda-escura); }
.btn-secondary:hover { border-color: #FFF; background: rgba(255, 255, 255, 0.05); transform: translateY(-2px); }

.btn-whatsapp { background: var(--cor-destaque); color: #FFF; }
.btn-whatsapp:hover { background: var(--cor-destaque-hover); transform: translateY(-2px); box-shadow: 0 10px 20px rgba(37, 211, 102, 0.2); }

/* WhatsApp Floating Button Premium */
.whatsapp-float {
    position: fixed; bottom: 30px; right: 20px; z-index: 1000;
    display: flex; align-items: center; gap: 12px;
    text-decoration: none;
    flex-direction: row;
    left: auto;
}
.wa-icon-box {
    width: 64px; height: 64px; background: #25D366; border-radius: 50%;
    display: grid; place-items: center; 
    box-shadow: 0 12px 30px rgba(37, 211, 102, 0.4), inset 0 -4px 10px rgba(0,0,0,0.1);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), background-color 0.3s ease;
    position: relative;
}
.wa-icon-box svg { width: 34px; height: 34px; fill: #FFF; filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1)); }

.wa-tooltip {
    background: #FFF; color: #111; padding: 10px 20px; border-radius: 99px;
    font-size: 14px; font-weight: 700; box-shadow: 0 10px 20px rgba(0,0,0,0.15);
    opacity: 0; transform: translateX(10px); transition: 0.3s;
    pointer-events: none; white-space: nowrap;
    position: relative;
}

.whatsapp-float:hover .wa-icon-box { transform: scale(1.1) rotate(5deg); }
.whatsapp-float:hover .wa-tooltip { opacity: 1; transform: translateX(0); }

@media (max-width: 768px) {
    .wa-tooltip { display: none; }
    .whatsapp-float { bottom: 20px; right: 20px; }
    .wa-icon-box { width: 56px; height: 56px; }
}

/* Scroll Animations */
.reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
    will-change: opacity, transform;
}
.reveal.active {
    opacity: 1 !important;
    transform: translateY(0) !important;
}

.fade-up { opacity: 0; transform: translateY(20px); transition: all 0.6s ease; }
.fade-up.active { opacity: 1 !important; transform: translateY(0) !important; }

@media (prefers-reduced-motion: reduce) {
    .reveal, .fade-up {
        opacity: 1 !important;
        transform: none !important;
    }
}

/* Sections */
section { padding: 100px 0; }
.section-header { text-align: center; margin-bottom: 64px; }
.section-header h2 em { color: var(--cor-primaria); }
.section-badge { 
    display: inline-block; padding: 6px 16px; background: rgba(227, 27, 35, 0.1); 
    border: 1px solid rgba(227, 27, 35, 0.2); border-radius: 99px; 
    font-size: 12px; font-weight: 700; text-transform: uppercase; color: var(--cor-primaria);
    margin-bottom: 20px;
}
/* =============================================
   NAVIGATION
   ============================================= */
.header {
    position: fixed; top: 0; left: 0; right: 0; z-index: 9999;
    border-bottom: 1px solid var(--cor-borda);
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}
.header::before {
    content: '';
    position: absolute; inset: 0;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: -1;
}
.header.scrolled::before {
    background: rgba(0, 0, 0, 0.97);
}
.header.scrolled {
    box-shadow: 0 4px 20px rgba(0,0,0,0.5);
}

.nav-container {
    display: flex; align-items: center; justify-content: space-between;
    max-width: 1200px; margin: 0 auto; padding: 0 24px; height: 72px;
}

.header .logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    position: relative;
    z-index: 10001;
}
.logo-img {
    height: 42px;
    width: auto;
    display: block;
    object-fit: contain;
}

.nav-links {
    display: flex; align-items: center; gap: 12px; list-style: none;
}
.nav-link {
    font-size: 14px; font-weight: 500; color: var(--cor-texto-claro);
    padding: 8px 12px; border-radius: 8px; 
    transition: background 0.2s ease, opacity 0.2s ease, transform 0.2s ease;
    text-decoration: none; display: block;
}
.nav-link:hover { color: #FFF; background: rgba(255, 255, 255, 0.05); }
.nav-link.active { color: var(--cor-primaria); }

.nav-cta {
    margin-left: 24px;
}
.nav-cta .btn-nav {
    display: inline-flex; align-items: center; padding: 10px 20px;
    background: var(--cor-primaria); color: #FFF; border-radius: 10px;
    font-size: 14px; font-weight: 700; text-decoration: none;
    transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
}
.nav-cta .btn-nav:hover { background: var(--cor-primaria-hover); transform: translateY(-1px); }

/* Hamburger */
.hamburger {
    display: none; flex-direction: column; gap: 5px;
    background: none; border: none; cursor: pointer; padding: 8px;
    position: relative; z-index: 1100;
}
.hamburger span {
    display: block; width: 24px; height: 2px; background: #FFF;
    border-radius: 2px; transition: transform 0.3s ease, opacity 0.3s ease;
}
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Menu Overlay */
.menu-overlay {
    display: none;
    position: fixed; inset: 0; background: rgba(0,0,0,0.5);
    z-index: 997; backdrop-filter: blur(4px);
}
.menu-overlay.active { display: block; }

/* Mobile */
@media (max-width: 992px) {
    .hamburger { display: flex; }

    .nav-links {
        position: fixed; top: 0; left: 0; width: 100%; height: 100vh;
        background: #080808; z-index: 1000;
        flex-direction: column; align-items: stretch;
        padding: 100px 24px 60px; gap: 4px;
        transform: translateX(101%);
        opacity: 0;
        visibility: hidden;
        transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease;
        overflow-y: auto;
        display: flex;
    }
    .nav-links.active { 
        transform: translateX(0) !important; 
        opacity: 1 !important;
        visibility: visible !important;
        display: flex !important;
    }

    .nav-link {
        font-size: 18px; padding: 16px; color: #FFF;
        border-bottom: 1px solid var(--cor-borda);
        border-radius: 0;
    }
    .nav-cta {
        margin-top: 16px;
        margin-left: 0;
    }
    .nav-cta .btn-nav {
        display: flex; width: 100%; justify-content: center;
        padding: 16px; font-size: 16px; border-radius: 12px;
    }
}
/* =============================================
   HERO SECTION - Full Background
   ============================================= */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    background-color: #000;
}

.hero-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    opacity: 0.85;
}

.hero::after {
    content: '';
    position: absolute; inset: 0; z-index: 1;
    background: 
        linear-gradient(to right, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.4) 35%, transparent 65%),
        linear-gradient(to top, rgba(0,0,0,0.3) 0%, transparent 30%);
}

.hero-container {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 24px; /* Reduced to allow better centering */
}

.hero-content {
    max-width: 700px;
    text-align: left;
}

.hero-badges-top {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 24px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 99px;
    font-size: 12px;
    font-weight: 600;
    color: rgba(255,255,255,0.85);
}

.pulse {
    display: inline-block;
    width: 8px; height: 8px;
    border-radius: 50%;
    background: #25D366;
    box-shadow: 0 0 0 0 rgba(37,211,102,0.4);
    animation: pulse-anim 2s infinite;
}
@keyframes pulse-anim {
    0% { box-shadow: 0 0 0 0 rgba(37,211,102,0.4); }
    70% { box-shadow: 0 0 0 10px rgba(37,211,102,0); }
    100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); }
}

.hero h1 {
    font-size: clamp(38px, 6vw, 64px);
    line-height: 1.1;
    color: #FFF;
    margin-bottom: 20px;
    text-shadow: 0 10px 30px rgba(0,0,0,0.5);
    text-wrap: balance;
}

@media (max-width: 480px) {
    .hero h1 { font-size: 40px; }
}

.hero p {
    font-size: clamp(15px, 1.5vw, 17px);
    color: rgba(255,255,255,0.75);
    line-height: 1.6;
    max-width: 540px;
    margin-bottom: 32px;
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

@media (max-width: 768px) {
    .hero-bg {
        object-position: center top;
        object-fit: cover;
        transform: none;
        width: 100%;
        height: 100%;
        z-index: 0;
    }
    .hero::before { display: none !important; }
    .hero::after {
        content: '';
        position: absolute;
        inset: 0;
        z-index: 1;
        background: linear-gradient(to bottom, transparent 0%, transparent 45%, rgba(0, 0, 0, 0.5) 65%, rgba(0, 0, 0, 0.9) 85%, #000000 100%);
    }
    .hero { align-items: flex-end; }
    .hero-container { position: relative; z-index: 2; padding: 260px 24px 24px; }
    .hero-badges-top { display: none !important; }
    .hero h1, .hero-title { color: #FFFFFF; text-shadow: none !important; }
    .hero h1 em, .hero-title em { color: var(--cor-primaria); font-style: normal; display: inline; text-shadow: none !important; }
    .hero p { color: rgba(255,255,255,0.85); text-shadow: 0 2px 8px rgba(0,0,0,0.9); }
    .hero-content { text-align: center; max-width: 100%; }
    .hero-actions { justify-content: center; }
    .hero-actions .btn-secondary { display: none !important; }
    .services-section .section-header,
    .services-section .section-title,
    .about-content,
    .about-content h2,
    .about-content p {
        text-align: center !important;
    }
    .about-actions {
        display: flex !important;
        justify-content: center !important;
        width: 100% !important;
        margin-top: 24px;
    }
}
:root { --card-pad: 32px; --card-gap: 24px; }

.section-carousel-base { width: 100%; max-width: 1248px; margin: 0 auto; padding: 100px 24px; }
.section-carousel-base .section-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 48px; text-align: left; }
.section-carousel-base .section-title { font-family: var(--font-title); font-size: clamp(28px, 4vw, 42px); font-weight: 800; color: #FFF; line-height: 1.15; letter-spacing: -0.04em; }
.section-carousel-base .section-title em { display: inline-block; margin-top: 8px; }

.nav-buttons { display: flex; gap: 12px; }
.nav-btn { 
    width: 48px; height: 48px; border-radius: 50%; border: 1px solid var(--cor-borda); 
    background: transparent; cursor: pointer; display: flex; align-items: center; justify-content: center; 
    transition: background-color 0.3s ease, border-color 0.3s ease, transform 0.3s ease; color: #FFF; 
}
.nav-btn:hover { background: var(--cor-primaria); border-color: var(--cor-primaria); color: #fff; }
.nav-btn svg { width: 20px; height: 20px; stroke: currentColor; fill: none; stroke-width: 2; }

.carousel-wrapper { overflow: hidden; width: 100%; padding-bottom: 30px; margin-bottom: -30px; }
.cards-track { display: flex; gap: var(--card-gap); transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1); }

.card { 
    background: #111; border-radius: 24px; padding: var(--card-pad) var(--card-pad) 0; 
    width: 380px; flex: 0 0 380px;
    display: flex; flex-direction: column; overflow: hidden; 
    border: 1px solid var(--cor-borda); transition: background-color 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: 0 20px 40px rgba(0,0,0,0.5); border-color: var(--cor-primaria); }

.card-icon { 
    width: 56px; height: 56px; margin-bottom: 24px; color: var(--cor-primaria); 
    background: rgba(227, 27, 35, 0.1); border-radius: 14px; display: grid; place-items: center; 
}
.card-icon svg { width: 28px; height: 28px; stroke: currentColor; fill: none; stroke-width: 1.5; }

.card-title { font-size: 22px; font-weight: 700; color: #FFF; margin-bottom: 12px; }
.card-desc { font-size: 15px; color: var(--cor-texto-secundario); line-height: 1.6; margin-bottom: 24px; flex: 1; }

.service-card-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 20px;
    background: rgba(227, 27, 35, 0.1);
    color: #E31B23;
    border: 1px solid rgba(227, 27, 35, 0.3);
    border-radius: 12px;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    width: 100%;
    margin-top: auto;
}

.service-card-btn:hover {
    background: var(--cor-primaria, #E31B23);
    color: #FFFFFF;
    border-color: var(--cor-primaria, #E31B23);
    box-shadow: 0 8px 24px rgba(227, 27, 35, 0.35);
    transform: translateY(-2px);
}

.service-card-btn svg {
    width: 18px;
    height: 18px;
    stroke: currentColor;
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    transition: transform 0.3s ease;
}

.service-card-btn:hover svg {
    transform: translateX(3px);
}

@media (max-width: 600px) {
    .service-card {
        padding: 24px !important;
    }
}

.card-image { 
    width: calc(100% + (var(--card-pad) * 2)); max-width: none; margin-left: calc(var(--card-pad) * -1); 
    height: 200px; object-fit: cover; display: block; transition: 0.5s;
}
.card:hover .card-image { transform: scale(1.05); }

.dots { display: flex; gap: 8px; margin-top: 48px; justify-content: center; }
.dot { width: 8px; height: 8px; border-radius: 50%; background: var(--cor-borda); cursor: pointer; transition: 0.3s; }
.dot.active { width: 24px; border-radius: 99px; background: var(--cor-primaria); }

@media (max-width: 992px) { 
    .card { width: 340px; flex: 0 0 340px; } 
}
@media (max-width: 768px) {
    :root { --card-pad: 24px; }
    .card { width: calc(100vw - 48px); flex: 0 0 calc(100vw - 48px); }
    .section-carousel-base .section-header { flex-direction: row; align-items: center; justify-content: space-between; gap: 10px; margin-bottom: 32px; }
    .section-carousel-base .section-title { font-size: 24px; }
    .nav-buttons { gap: 8px; }
    .nav-btn { width: 40px; height: 40px; }
}
/* =============================================
   ABOUT SECTION
   ============================================= */
.about-section {
    padding: 100px 0;
    background: var(--cor-fundo);
}
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    text-wrap: balance;
}
.about-content h2 {
    font-size: clamp(28px, 4vw, 44px);
    line-height: 1.1;
    margin-bottom: 24px;
    text-wrap: balance;
}
.about-content p {
    color: var(--cor-texto-secundario);
    line-height: 1.7;
    margin-bottom: 16px;
    font-size: 16px;
}
.about-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 24px;
}
.about-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    font-weight: 600;
    color: #FFF;
}
.about-list li svg {
    width: 18px;
    height: 18px;
    color: var(--cor-primaria);
    flex-shrink: 0;
}

.about-image-wrapper {
    position: relative;
}
.about-image {
    width: 100%;
    border-radius: 24px;
    object-fit: cover;
    aspect-ratio: 4/5;
}
.about-decorator {
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 80%;
    height: 80%;
    border: 2px solid var(--cor-primaria);
    border-radius: 24px;
    z-index: -1;
    opacity: 0.3;
}

/* Features Section */
.features-section {
    padding: 100px 0;
}
.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}
.feature-card {
    background: var(--cor-fundo);
    border: 1px solid var(--cor-borda);
    border-radius: 20px;
    padding: 32px 28px;
    transition: background-color 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
}
.feature-card:hover {
    border-color: var(--cor-primaria);
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(227, 27, 35, 0.1);
}
.feature-icon {
    font-size: 32px;
    margin-bottom: 16px;
}
.feature-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: #FFF;
    margin-bottom: 10px;
}
.feature-card p {
    font-size: 14px;
    color: var(--cor-texto-secundario);
    line-height: 1.6;
}


/* Stats */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}
.stat-card {
    text-align: center;
    padding: 40px 24px;
    background: var(--cor-fundo-alt);
    border: 1px solid var(--cor-borda);
    border-radius: 20px;
}
.stat-number {
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 900;
    color: #FFF;
    line-height: 1;
    margin-bottom: 8px;
}
.stat-number span { color: var(--cor-primaria); }
.stat-label {
    font-size: 15px;
    color: var(--cor-texto-secundario);
}

@media (max-width: 992px) {
    .features-grid { grid-template-columns: repeat(2, 1fr); }
    .stats-grid { grid-template-columns: repeat(3, 1fr); }
    .how-steps { grid-template-columns: repeat(3, 1fr); gap: 32px; }
    .how-progress-line { display: none; }
}
@media (max-width: 768px) {
    .about-grid { grid-template-columns: 1fr; gap: 40px; }
    .about-image-wrapper { display: block; order: -1; }
    .about-image { aspect-ratio: 16/9; }
    .features-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
    .stats-grid { grid-template-columns: 1fr; }
}
/* =============================================
   TESTIMONIALS - Infinite Vertical Marquee
   ============================================= */
.testimonials-section {
    background: var(--cor-fundo-alt);
    padding: 120px 0;
    overflow: hidden;
}

.testimonials-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 80px;
    padding: 0 24px;
}

.testimonials-header .testimonials-badge {
    padding: 6px 16px;
    border: 1px solid var(--cor-borda-escura);
    border-radius: 99px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--cor-texto-claro);
    margin-bottom: 24px;
    display: inline-block;
}

.testimonials-header h2 {
    font-size: clamp(28px, 4vw, 44px);
    font-weight: 900;
    color: #FFF;
    margin-bottom: 16px;
    line-height: 1.15;
}

.testimonials-header p {
    font-size: 16px;
    color: var(--cor-texto-secundario);
    line-height: 1.6;
}

/* GRID MARQUEE INFINITO SUPER FLUIDO */
.testimonials-grid {
    display: flex;
    justify-content: center;
    gap: 24px;
    height: 720px;
    overflow: hidden;
    position: relative;
    padding: 0 24px;
    max-width: 1200px;
    margin: 0 auto;
    -webkit-mask-image: linear-gradient(to bottom, transparent, black 8%, black 92%, transparent);
    mask-image: linear-gradient(to bottom, transparent, black 8%, black 92%, transparent);
}

.testimonials-col {
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 360px;
    flex-shrink: 0;
}

.marquee-inner {
    display: flex;
    flex-direction: column;
    gap: 24px;
    will-change: transform;
}

/* Animações contínuas ultra-suaves */
.col-1 .marquee-inner { animation: scrollVerticalUp 42s linear infinite !important; }
.col-2 .marquee-inner { animation: scrollVerticalDown 48s linear infinite !important; }
.col-3 .marquee-inner { animation: scrollVerticalUp 40s linear infinite !important; }

/* Pausa suave ao passar o mouse para leitura */
.testimonials-grid:hover .marquee-inner {
    animation-play-state: paused !important;
}

@keyframes scrollVerticalUp {
    0% { transform: translateY(0); }
    100% { transform: translateY(calc(-50% - 12px)); }
}

@keyframes scrollVerticalDown {
    0% { transform: translateY(calc(-50% - 12px)); }
    100% { transform: translateY(0); }
}

/* CARD */
.testimonial-card {
    background: var(--cor-bg-card, #111);
    border: 1px solid var(--cor-borda);
    border-radius: 24px;
    padding: 32px;
    flex-shrink: 0;
    transition: 0.3s ease;
}
.testimonial-card:hover {
    transform: translateY(-4px) scale(1.01);
    border-color: var(--cor-primaria);
    box-shadow: 0 20px 40px rgba(227, 27, 35, 0.1);
}

.testimonial-stars {
    display: flex;
    gap: 4px;
    margin-bottom: 16px;
    color: #F59E0B;
    font-size: 15px;
}

.testimonial-text {
    font-size: 15px;
    line-height: 1.7;
    color: var(--cor-texto-secundario);
    margin-bottom: 24px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 14px;
}

.client-avatar {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: var(--cor-primaria);
    display: grid;
    place-items: center;
    font-size: 14px;
    font-weight: 700;
    color: #FFF;
    flex-shrink: 0;
    letter-spacing: 0.5px;
}

.author-info h3,
.client-info h3 {
    font-size: 15px;
    font-weight: 700;
    color: #FFF;
    margin-bottom: 2px;
}

.author-info p,
.client-info p {
    font-size: 13px;
    color: var(--cor-texto-claro);
}

/* RESPONSIVE */
@media (max-width: 1024px) {
    .col-3 { display: none; }
}
@media (max-width: 768px) {
    .col-2 { display: none; }
    .testimonials-grid { height: 600px; }
}
/* DIFERENCIAIS */
.features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 32px; max-width: 1248px; margin: 0 auto; padding: 0 24px; }
.feature-card { 
    background: #111; padding: 48px; border-radius: 24px; border: 1px solid var(--cor-borda);
    transition: background-color 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
}
.feature-card:hover { border-color: var(--cor-primaria); transform: translateY(-5px); }
.feature-icon { font-size: 32px; color: var(--cor-primaria); margin-bottom: 24px; }
.feature-card h3 { font-size: 20px; color: #FFF; margin-bottom: 16px; }
.feature-card p { font-size: 15px; color: var(--cor-texto-secundario); line-height: 1.6; }

/* MÉTRICAS */
.metrics-section { background: var(--cor-primaria); padding: 80px 0; color: #FFF; }
.metrics-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 40px; text-align: center; }
.metric-item h3 { font-size: 48px; font-weight: 800; margin-bottom: 8px; }
.metric-item p { font-size: 14px; text-transform: uppercase; letter-spacing: 0.1em; opacity: 0.9; }

/* COMO FUNCIONA */
.steps-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 24px; margin-top: 48px; }
.step-card { background: #111; padding: 32px; border-radius: 20px; border: 1px solid var(--cor-borda); position: relative; }
.step-number { 
    position: absolute; top: 24px; right: 24px; font-size: 44px; font-weight: 900; 
    color: rgba(227, 27, 35, 0.08); line-height: 1; pointer-events: none;
    font-family: var(--font-title);
}
.step-card h3 { font-size: 18px; color: #FFF; margin-bottom: 12px; }
.step-card p { font-size: 14px; color: var(--cor-texto-secundario); line-height: 1.5; }

/* ESTRUTURA */
.amenities-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 20px; margin-top: 40px; }
.amenity-item { 
    background: #111; padding: 24px; border-radius: 16px; text-align: center; 
    border: 1px solid var(--cor-borda); transition: 0.3s;
}
.amenity-item:hover { border-color: var(--cor-primaria); background: rgba(227, 27, 35, 0.05); }
.amenity-item i { font-size: 24px; color: var(--cor-primaria); margin-bottom: 12px; display: block; }
.amenity-item span { font-size: 14px; font-weight: 600; color: #FFF; }

/* FAQ */
.faq-section { background: var(--cor-fundo-alt); }
.faq-grid { max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; gap: 16px; }
.faq-item { background: #111; border: 1px solid var(--cor-borda); border-radius: 16px; overflow: hidden; transition: 0.3s; }
.faq-item.is-open { border-color: var(--cor-primaria); background: #161616; }
.faq-question { padding: 24px; cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 20px; transition: 0.3s; }
.faq-question:hover { background: rgba(255, 255, 255, 0.02); }
.faq-question h3 { font-size: 17px; font-weight: 600; color: #FFF; transition: 0.3s; }
.faq-item.is-open .faq-question h3 { color: var(--cor-primaria); }

.faq-icon { width: 24px; height: 24px; position: relative; transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1); flex-shrink: 0; }
.faq-icon::before, .faq-icon::after { content: ''; position: absolute; background: var(--cor-primaria); border-radius: 2px; }
.faq-icon::before { width: 14px; height: 2px; top: 11px; left: 5px; }
.faq-icon::after { width: 2px; height: 14px; top: 5px; left: 11px; transition: 0.4s; }
.faq-item.is-open .faq-icon { transform: rotate(135deg); }
.faq-item.is-open .faq-icon::after { opacity: 0; }

.faq-answer { 
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.faq-item.is-open .faq-answer { grid-template-rows: 1fr; }
.faq-answer-content { overflow: hidden; }
.faq-answer p { padding: 0 24px 24px; font-size: 15px; line-height: 1.6; color: var(--cor-texto-secundario); }

/* GALLERY */
.gallery-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; margin-top: 48px; }
.gallery-item { border-radius: 20px; overflow: hidden; border: 1px solid var(--cor-borda); aspect-ratio: 16/10; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: 0.5s; }
.gallery-item:hover img { transform: scale(1.1); }

/* PREMIUM CTA */
.final-premium-cta { padding: 100px 0; }
.premium-cta-card { 
    display: grid; grid-template-columns: 1.4fr 1fr; gap: 48px; 
    background: var(--cor-bg-card); border: 1px solid var(--cor-borda); 
    border-radius: 40px; overflow: hidden; align-items: center;
}
.premium-cta-content { padding: 64px; }
.premium-badge { 
    display: inline-block; padding: 8px 16px; background: rgba(227, 27, 35, 0.1); 
    color: var(--cor-primaria); border-radius: 100px; font-size: 12px; 
    font-weight: 600; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 24px;
}
.premium-cta-content h2 { 
    font-size: clamp(32px, 4vw, 48px); 
    line-height: 1.1; 
    margin-bottom: 24px; 
    text-wrap: balance;
}
.premium-cta-content p { color: var(--cor-texto-secundario); font-size: 18px; margin-bottom: 40px; }
.premium-cta-btns { display: flex; gap: 16px; }
.premium-cta-image { height: 100%; min-height: 400px; }
.premium-cta-image img { width: 100%; height: 100%; object-fit: cover; }

@media (max-width: 992px) {
    .premium-cta-card { grid-template-columns: 1fr; }
    .premium-cta-image { order: -1; min-height: 300px; }
    .premium-cta-content { padding: 40px 32px; text-align: center; }
    .premium-cta-btns { justify-content: center; flex-direction: column; }
}

/* CONTATO */
.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 64px; align-items: start; }
.contact-info { display: flex; flex-direction: column; gap: 32px; }
.info-item { display: flex; gap: 20px; }
.info-icon { width: 48px; height: 48px; background: rgba(227, 27, 35, 0.1); border-radius: 12px; display: grid; place-items: center; color: var(--cor-primaria); flex-shrink: 0; }
.info-text h3 { font-size: 16px; color: #FFF; margin-bottom: 4px; }
.info-text p { font-size: 14px; color: var(--cor-texto-secundario); }

.map-wrapper { border-radius: 24px; overflow: hidden; border: 1px solid var(--cor-borda); height: 400px; }
.map-wrapper iframe { width: 100%; height: 100%; border: none; }

@media (max-width: 768px) {
    .contact-grid { grid-template-columns: 1fr; gap: 40px; }
    .steps-grid { grid-template-columns: 1fr; gap: 16px; }
    .amenities-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
    .metric-item h3 { font-size: 36px; }
    .feature-card { padding: 32px 24px; }
}
/* =============================================
   FOOTER
   ============================================= */
.footer {
    background: #080808;
    border-top: 1px solid var(--cor-borda);
    padding: 80px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 48px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.footer-brand p {
    font-size: 14px;
    line-height: 1.7;
    color: var(--cor-texto-claro);
    margin-top: 16px;
    max-width: 280px;
}

.footer-social {
    display: flex;
    gap: 12px;
    margin-top: 24px;
}
.social-link {
    width: 40px; height: 40px;
    border-radius: 10px;
    background: var(--cor-borda);
    display: grid; place-items: center;
    color: var(--cor-texto-claro);
    transition: background-color 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
}
.social-link:hover {
    background: var(--cor-primaria);
    color: #FFF;
    transform: translateY(-2px);
}

.footer-nav h2 {
    font-size: 18px;
    font-weight: 700;
    color: #FFF;
    margin-bottom: 20px;
}
.footer-nav ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.footer-nav ul li a,
.footer-nav ul li span {
    font-size: 14px;
    color: var(--cor-texto-secundario);
    text-decoration: none;
    transition: color 0.2s ease;
}
.footer-nav ul li a:hover {
    color: #FFF;
}

.footer-bottom {
    margin-top: 60px;
    padding: 24px;
    border-top: 1px solid var(--cor-borda);
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}
.copyright, .credits {
    font-size: 13px;
    color: var(--cor-texto-claro);
}
.credits a {
    color: var(--cor-primaria);
    font-weight: 600;
    text-decoration: none;
}
.credits a:hover { text-decoration: underline; }

@media (max-width: 992px) {
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
    .footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 600px) {
    .footer-grid { grid-template-columns: 1fr; gap: 32px; }
    .footer-bottom { flex-direction: column; text-align: center; padding: 24px; }
}
