/* ==========================================================================
   Foco System - Folha de Estilos Otimizada & Estruturada
   Eletrônica Pesada, Módulos, Painéis e Tacógrafos | Jundiaí - SP
   ========================================================================== */

:root {
    --bg-base: #0a0f1d;
    --bg-surface: #101726;
    --bg-card: #162032;
    --bg-card-hover: #1c2a42;
    --bg-elevated: #1f2d47;
    --border-subtle: #23334d;
    --border-hover: #3b82f6;
    --border-focus: #60a5fa;

    --text-primary: #f8fafc;
    --text-secondary: #94a3b8;
    --text-muted: #64748b;

    --primary: #2563eb;
    --primary-hover: #1d4ed8;
    --primary-light: rgba(37, 99, 235, 0.12);
    
    --accent-amber: #f59e0b;
    --accent-amber-light: rgba(245, 158, 11, 0.12);
    
    --whatsapp: #25d366;
    --whatsapp-hover: #20bd5a;
    --whatsapp-light: rgba(37, 211, 102, 0.15);

    --font-heading: 'Plus Jakarta Sans', 'Inter', -apple-system, sans-serif;
    --font-body: 'Inter', -apple-system, sans-serif;
    
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 18px;
    --radius-full: 9999px;

    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.2);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.25);
    --shadow-lg: 0 10px 25px -5px rgba(0, 0, 0, 0.4), 0 8px 10px -6px rgba(0, 0, 0, 0.3);
    
    --transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

/* ==========================================================================
   Reset & Base
   ========================================================================== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
    font-family: var(--font-body);
    background-color: var(--bg-base);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}
h1, h2, h3, h4, .faq-question { font-family: var(--font-heading); }
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: var(--transition); }
ul { list-style: none; }
.container { width: 100%; max-width: 1240px; margin: 0 auto; padding: 0 24px; }

/* Títulos Principais Compartilhados */
.hero-title, .section-header h2, .fleet-content h2, .cta-content h2 {
    letter-spacing: -0.02em;
    color: #ffffff;
    font-weight: 800;
}

/* ==========================================================================
   Componentes Base Reutilizáveis (Cards, Ícones, Badges, Botões)
   ========================================================================== */
/* Superfícies & Cards */
.service-card, .location-info-card, .map-container-card, .faq-item {
    background-color: var(--bg-card);
    border: 1px solid var(--border-subtle);
}
.service-card, .location-info-card, .map-container-card {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

/* Bolhas de Ícones */
.trust-icon, .card-icon, .feature-icon, .loc-icon-bubble {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.trust-icon, .feature-icon {
    width: 42px;
    height: 42px;
    background-color: var(--primary-light);
    border-radius: var(--radius-sm);
    color: #60a5fa;
    font-size: 1.2rem;
}
.card-icon, .loc-icon-bubble {
    width: 52px;
    height: 52px;
    border-radius: var(--radius-md);
    color: #60a5fa;
    font-size: 1.5rem;
}
.card-icon { background-color: var(--primary-light); }
.loc-icon-bubble {
    background-color: rgba(37, 99, 235, 0.15);
    border: 1px solid rgba(59, 130, 246, 0.3);
}

/* Badges & Tags */
.hero-badge, .section-tag, .card-pill, .cta-badge, .footer-badges span {
    display: inline-flex;
    align-items: center;
    border-radius: var(--radius-full);
}
.hero-badge {
    gap: 8px;
    background-color: var(--bg-surface);
    border: 1px solid var(--border-subtle);
    padding: 8px 16px;
    font-size: 0.85rem;
    font-weight: 600;
    color: #93c5fd;
    margin-bottom: 24px;
}
.hero-badge i { color: var(--primary); }
.section-tag {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #60a5fa;
    background-color: var(--primary-light);
    padding: 6px 14px;
    margin-bottom: 12px;
    border: 1px solid rgba(96, 165, 250, 0.2);
}
.card-pill {
    position: absolute;
    top: 14px;
    right: 14px;
    background-color: rgba(10, 15, 29, 0.85);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    color: #93c5fd;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 5px 12px;
    border: 1px solid rgba(147, 197, 253, 0.25);
}
.cta-badge {
    display: inline-block;
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #4ade80;
    background-color: rgba(74, 222, 128, 0.12);
    padding: 4px 12px;
    margin-bottom: 12px;
}
.footer-badges span {
    font-size: 0.8rem;
    font-weight: 500;
    color: #93c5fd;
    background-color: rgba(37, 99, 235, 0.12);
    padding: 5px 12px;
    gap: 6px;
}

/* Botões Globais */
.btn, .btn-nav-whatsapp, .btn-mobile-whatsapp, .btn-card-whatsapp, .btn-maps, .btn-waze {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    border: 1px solid transparent;
}
.btn {
    padding: 15px 28px;
    border-radius: var(--radius-md);
    font-size: 1rem;
}
.btn-primary {
    background-color: var(--primary);
    color: #fff;
    box-shadow: 0 4px 14px rgba(37, 99, 235, 0.35);
}
.btn-primary:hover {
    background-color: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(37, 99, 235, 0.45);
}
.btn-whatsapp-hero, .btn-whatsapp-cta {
    background-color: var(--whatsapp);
    color: #fff;
    box-shadow: 0 4px 14px rgba(37, 211, 102, 0.3);
}
.btn-whatsapp-hero:hover, .btn-whatsapp-cta:hover {
    background-color: var(--whatsapp-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(37, 211, 102, 0.45);
}
.btn-whatsapp-cta {
    font-weight: 700;
    font-size: 1.05rem;
    padding: 16px 36px;
}
.btn-outline {
    background-color: rgba(22, 32, 50, 0.6);
    border-color: var(--border-subtle);
    color: var(--text-primary);
}
.btn-outline:hover {
    background-color: var(--bg-card);
    border-color: var(--border-hover);
    transform: translateY(-2px);
}
.btn-nav-whatsapp {
    gap: 8px;
    background-color: rgba(37, 211, 102, 0.12);
    color: var(--whatsapp);
    border-color: rgba(37, 211, 102, 0.35);
    padding: 9px 18px;
    border-radius: var(--radius-full);
    font-size: 0.9rem;
}
.btn-nav-whatsapp:hover {
    background-color: var(--whatsapp);
    color: #fff;
    border-color: var(--whatsapp);
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.25);
}
.btn-mobile-whatsapp {
    display: flex;
    background-color: var(--whatsapp);
    color: #fff;
    padding: 14px;
    border-radius: var(--radius-sm);
    margin-top: 8px;
}
.btn-card-whatsapp {
    display: flex;
    width: 100%;
    gap: 8px;
    background-color: rgba(37, 211, 102, 0.08);
    color: var(--whatsapp);
    border-color: rgba(37, 211, 102, 0.3);
    padding: 11px 16px;
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
}
.btn-card-whatsapp:hover {
    background-color: var(--whatsapp);
    color: #fff;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.25);
}
.btn-maps {
    background-color: var(--primary);
    color: #fff;
    padding: 13px 20px;
    border-radius: var(--radius-sm);
    font-size: 0.95rem;
}
.btn-maps:hover { background-color: var(--primary-hover); }
.btn-waze {
    background-color: rgba(30, 41, 59, 0.8);
    border-color: var(--border-subtle);
    color: var(--text-primary);
    padding: 13px 20px;
    border-radius: var(--radius-sm);
    font-size: 0.95rem;
}
.btn-waze:hover { background-color: var(--bg-card-hover); border-color: var(--border-hover); }

/* ==========================================================================
   Navbar / Header
   ========================================================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 86px;
    background-color: rgba(10, 15, 29, 0.90);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--border-subtle);
    z-index: 990;
    transition: var(--transition);
}
.navbar.scrolled {
    height: 74px;
    background-color: rgba(10, 15, 29, 0.96);
    box-shadow: var(--shadow-md);
}
.nav-container {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.logo {
    display: inline-flex;
    align-items: center;
    line-height: 0;
}
.logo-img {
    height: 60px;
    max-height: 60px;
    width: auto;
    object-fit: contain;
    transition: var(--transition);
    filter: drop-shadow(0 2px 10px rgba(0, 0, 0, 0.5));
}
.navbar.scrolled .logo-img {
    height: 50px;
    max-height: 50px;
}
.logo:hover .logo-img {
    transform: scale(1.03);
    filter: drop-shadow(0 4px 16px rgba(37, 99, 235, 0.45));
}
.nav-links { display: none; align-items: center; gap: 28px; }
.nav-item {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-secondary);
    position: relative;
    padding: 6px 0;
}
.nav-item:hover { color: var(--text-primary); }
.nav-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary);
    transition: var(--transition);
}
.nav-item:hover::after { width: 100%; }
.nav-action { display: none; }
.mobile-menu-btn {
    background: none;
    border: none;
    color: var(--text-primary);
    font-size: 1.4rem;
    cursor: pointer;
    padding: 6px;
}
.mobile-nav {
    position: fixed;
    top: 80px;
    left: 0;
    width: 100%;
    background-color: var(--bg-surface);
    border-bottom: 1px solid var(--border-subtle);
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    transform: translateY(-150%);
    opacity: 0;
    transition: var(--transition);
    z-index: 989;
    box-shadow: var(--shadow-lg);
}
.mobile-nav.active { transform: translateY(0); opacity: 1; }
.mobile-link {
    font-size: 1.05rem;
    font-weight: 500;
    padding: 12px 16px;
    border-radius: var(--radius-sm);
    background-color: var(--bg-card);
}
.mobile-link:hover { background-color: var(--bg-card-hover); }

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 140px 0 80px;
    background: var(--bg-base) url('https://images.unsplash.com/photo-1601584115197-04ecc0da31d7?auto=format&fit=crop&w=1920&q=80') center/cover no-repeat;
}
.hero-bg-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(10, 15, 29, 0.94) 0%, rgba(10, 15, 29, 0.88) 55%, rgba(16, 23, 38, 0.82) 100%);
    z-index: 1;
}
.hero-content { position: relative; z-index: 2; max-width: 860px; }
.hero-title { font-size: 2.5rem; line-height: 1.15; margin-bottom: 20px; }
.hero-title .highlight { color: #60a5fa; position: relative; }
.hero-subtitle {
    font-size: 1.15rem;
    color: var(--text-secondary);
    line-height: 1.65;
    margin-bottom: 36px;
    max-width: 760px;
}
.hero-buttons { display: flex; flex-direction: column; gap: 16px; margin-bottom: 50px; }

/* Trust Bar / Métricas */
.trust-bar {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.trust-item {
    display: flex;
    align-items: center;
    gap: 14px;
    background-color: rgba(16, 23, 38, 0.7);
    border: 1px solid var(--border-subtle);
    padding: 14px 18px;
    border-radius: var(--radius-md);
}
.trust-info { display: flex; flex-direction: column; }
.trust-info strong { font-size: 0.95rem; color: var(--text-primary); font-weight: 600; }
.trust-info span { font-size: 0.8rem; color: var(--text-secondary); }

/* ==========================================================================
   Seção Cabeçalho
   ========================================================================== */
.section-header { text-align: center; margin-bottom: 50px; }
.section-header h2 { font-size: 2.1rem; margin-bottom: 12px; }
.section-header p {
    color: var(--text-secondary);
    font-size: 1.05rem;
    max-width: 650px;
    margin: 0 auto;
}

/* ==========================================================================
   Brands Section / Carrossel de Fabricantes & Marcas (Só Logos)
   ========================================================================== */
.brands-section {
    padding: 60px 0 70px;
    background-color: var(--bg-base);
    border-bottom: 1px solid var(--border-subtle);
    position: relative;
    overflow: hidden;
}
.brands-header { margin-bottom: 36px; }
.brands-carousel-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 20px 0;
    -webkit-mask-image: linear-gradient(to right, transparent, black 12%, black 88%, transparent);
    mask-image: linear-gradient(to right, transparent, black 12%, black 88%, transparent);
}
.brands-track {
    display: flex;
    align-items: center;
    gap: 52px;
    width: max-content;
    animation: marqueeScroll 32s linear infinite;
    will-change: transform;
}
.brands-carousel-wrapper:hover .brands-track { animation-play-state: paused; }
.brand-item {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 60px;
    padding: 0 10px;
    flex-shrink: 0;
    opacity: 0.88;
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s ease;
    cursor: pointer;
}
.brand-item img {
    height: 44px;
    max-width: 160px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.35));
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), filter 0.3s ease;
}
.brand-item:hover { opacity: 1; transform: scale(1.12); }
.brand-item:hover img { filter: drop-shadow(0 6px 20px rgba(59, 130, 246, 0.45)); }

@keyframes marqueeScroll {
    0% { transform: translate3d(0, 0, 0); }
    100% { transform: translate3d(-33.333333%, 0, 0); }
}

/* ==========================================================================
   Services Section (Cards de Serviços)
   ========================================================================== */
.services { padding: 90px 0; background-color: var(--bg-surface); }
.services-grid { display: grid; grid-template-columns: 1fr; gap: 32px; }
.service-card {
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}
.service-card:hover {
    transform: translateY(-6px);
    border-color: var(--border-hover);
    box-shadow: var(--shadow-lg);
}
.card-media {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
    background-color: var(--bg-base);
}
.card-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.service-card:hover .card-media img { transform: scale(1.05); }
.card-body { padding: 28px; display: flex; flex-direction: column; flex-grow: 1; }
.card-header-inner {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
    padding-bottom: 18px;
    border-bottom: 1px solid var(--border-subtle);
}
.card-header-inner h3 { font-size: 1.35rem; font-weight: 700; color: #ffffff; line-height: 1.2; }
.service-brand {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--accent-amber);
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin-top: 4px;
}
.service-list { display: flex; flex-direction: column; gap: 10px; margin-bottom: 26px; flex-grow: 1; }
.service-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.92rem;
    color: var(--text-secondary);
    line-height: 1.4;
}
.service-list li i { color: #3b82f6; font-size: 0.85rem; margin-top: 3px; flex-shrink: 0; }
.card-footer-cta { margin-top: auto; }

/* ==========================================================================
   Fleet Solutions Section (Frotas de Caminhões)
   ========================================================================== */
.fleet-section { padding: 90px 0; background-color: var(--bg-base); }
.fleet-wrapper { display: grid; grid-template-columns: 1fr; gap: 48px; align-items: center; }
.fleet-visual {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border-subtle);
    box-shadow: var(--shadow-lg);
}
.fleet-visual img { width: 100%; height: 100%; max-height: 480px; object-fit: cover; }
.fleet-badge-card {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background-color: rgba(16, 23, 38, 0.92);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 16px;
}
.fleet-badge-card i { font-size: 1.8rem; color: var(--accent-amber); }
.fleet-badge-card strong { display: block; font-size: 1rem; color: #ffffff; }
.fleet-badge-card span { font-size: 0.85rem; color: var(--text-secondary); }
.fleet-content h2 { font-size: 2.1rem; margin-bottom: 16px; line-height: 1.2; }
.fleet-desc { color: var(--text-secondary); font-size: 1.05rem; line-height: 1.65; margin-bottom: 30px; }
.fleet-features { display: flex; flex-direction: column; gap: 20px; margin-bottom: 36px; }
.feature-item { display: flex; align-items: flex-start; gap: 16px; }
.feature-item h4 { font-size: 1.05rem; font-weight: 700; color: #ffffff; margin-bottom: 4px; }
.feature-item p { font-size: 0.92rem; color: var(--text-secondary); line-height: 1.5; }
.fleet-cta-box .btn { width: 100%; }

/* ==========================================================================
   Location Section (Endereço e Iframe Google Maps)
   ========================================================================== */
.location-section {
    padding: 90px 0;
    background-color: var(--bg-surface);
    border-top: 1px solid var(--border-subtle);
}
.location-grid { display: grid; grid-template-columns: 1fr; gap: 32px; }
.location-info-card { padding: 36px 30px; display: flex; flex-direction: column; }
.location-header {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    margin-bottom: 28px;
    padding-bottom: 22px;
    border-bottom: 1px solid var(--border-subtle);
}
.location-header h3 { font-size: 1.3rem; font-weight: 700; color: #ffffff; margin-bottom: 6px; }
.address-text { font-size: 0.95rem; color: var(--text-secondary); line-height: 1.5; }
.location-details-list { display: flex; flex-direction: column; gap: 20px; margin-bottom: 32px; }
.detail-row { display: flex; align-items: flex-start; gap: 14px; }
.detail-row i { color: #60a5fa; font-size: 1.1rem; margin-top: 3px; flex-shrink: 0; }
.detail-row div { display: flex; flex-direction: column; font-size: 0.92rem; color: var(--text-secondary); }
.detail-row strong { color: #ffffff; font-weight: 600; margin-bottom: 2px; }
.tel-link { color: var(--whatsapp); font-weight: 600; font-size: 1.1rem; }
.tel-link:hover { text-decoration: underline; }
.email-detail-link { color: #93c5fd; font-weight: 500; font-size: 1.02rem; transition: var(--transition); word-break: break-all; }
.email-detail-link:hover { color: #ffffff; text-decoration: underline; }
.location-buttons { display: flex; flex-direction: column; gap: 12px; margin-top: auto; }

.map-container-card { overflow: hidden; display: flex; flex-direction: column; min-height: 400px; }
.map-card-header {
    background-color: var(--bg-base);
    padding: 12px 20px;
    border-bottom: 1px solid var(--border-subtle);
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-secondary);
}
.map-status-dot { width: 8px; height: 8px; background-color: var(--whatsapp); border-radius: 50%; }
.iframe-responsive-wrapper { position: relative; width: 100%; height: 100%; min-height: 380px; flex-grow: 1; }
.iframe-responsive-wrapper iframe { position: absolute; inset: 0; width: 100%; height: 100%; }

/* ==========================================================================
   FAQ Section (Accordion)
   ========================================================================== */
.faq-section { padding: 90px 0; background-color: var(--bg-base); }
.faq-accordion { max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; gap: 16px; }
.faq-item {
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: var(--transition);
}
.faq-item.active { border-color: var(--border-hover); }
.faq-question {
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    padding: 22px 24px;
    color: #ffffff;
    font-size: 1.05rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}
.faq-question i { font-size: 0.9rem; color: #60a5fa; transition: transform 0.3s ease; flex-shrink: 0; }
.faq-item.active .faq-question i { transform: rotate(180deg); }
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.35s ease;
    padding: 0 24px;
}
.faq-item.active .faq-answer { max-height: 250px; padding: 0 24px 22px; }
.faq-answer p { color: var(--text-secondary); font-size: 0.95rem; line-height: 1.6; }

/* ==========================================================================
   CTA Section
   ========================================================================== */
.cta {
    padding: 80px 0;
    background: linear-gradient(135deg, #111827 0%, #162032 100%);
    border-top: 1px solid var(--border-subtle);
    border-bottom: 1px solid var(--border-subtle);
}
.cta-container { display: flex; flex-direction: column; gap: 30px; text-align: center; }
.cta-content h2 { font-size: 2rem; margin-bottom: 12px; }
.cta-content p { color: var(--text-secondary); font-size: 1.05rem; max-width: 620px; margin: 0 auto; }

/* ==========================================================================
   Footer
   ========================================================================== */
.footer {
    background-color: #070b14;
    padding: 70px 0 0;
    border-top: 1px solid var(--border-subtle);
}
.footer-content { display: grid; grid-template-columns: 1fr; gap: 40px; padding-bottom: 50px; }
.footer-brand .logo { margin-bottom: 16px; display: inline-flex; }
.footer-logo-img { height: 72px; max-height: 72px; }
.footer-brand p {
    color: var(--text-secondary);
    font-size: 0.92rem;
    line-height: 1.6;
    margin-bottom: 20px;
    max-width: 440px;
}
.footer-badges { display: flex; gap: 12px; flex-wrap: wrap; }
.footer-contact h4 { font-size: 1.1rem; color: #ffffff; margin-bottom: 20px; }
.footer-contact p {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: var(--text-secondary);
    font-size: 0.92rem;
    margin-bottom: 14px;
    line-height: 1.5;
}
.footer-contact i { color: #60a5fa; font-size: 1.1rem; margin-top: 3px; flex-shrink: 0; }
.footer-contact a { color: var(--whatsapp); font-weight: 600; }
.footer-contact a.footer-email-link { color: var(--text-primary); font-weight: 500; word-break: break-all; transition: var(--transition); }
.footer-contact a.footer-email-link:hover { color: #60a5fa; text-decoration: underline; }
.footer-bottom {
    background-color: #04070d;
    padding: 24px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}
.footer-bottom-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    text-align: center;
    font-size: 0.82rem;
    color: var(--text-muted);
}

/* ==========================================================================
   WhatsApp Floating Widget
   ========================================================================== */
.whatsapp-floating-widget {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 999;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 12px;
}
.whatsapp-tooltip {
    background-color: var(--bg-surface);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    padding: 14px 18px;
    max-width: 270px;
    box-shadow: var(--shadow-lg);
    opacity: 0;
    transform: translateY(10px);
    transition: var(--transition);
    pointer-events: none;
}
.whatsapp-tooltip.show { opacity: 1; transform: translateY(0); pointer-events: auto; }
.tooltip-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 6px;
    font-size: 0.85rem;
}
.tooltip-brand-status { display: flex; align-items: center; gap: 8px; }
.tooltip-close {
    background: none;
    border: none;
    font-size: 1.25rem;
    line-height: 1;
    color: var(--text-muted);
    cursor: pointer;
    padding: 2px 6px;
    border-radius: 4px;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}
.tooltip-close:hover { color: var(--text-primary); background-color: var(--bg-card); }
.status-online {
    display: flex;
    align-items: center;
    gap: 5px;
    color: var(--whatsapp);
    font-size: 0.75rem;
    font-weight: 600;
}
.status-dot { width: 6px; height: 6px; background-color: var(--whatsapp); border-radius: 50%; }
.whatsapp-tooltip p { font-size: 0.82rem; color: var(--text-secondary); line-height: 1.4; }
.whatsapp-float-btn {
    width: 60px;
    height: 60px;
    background-color: var(--whatsapp);
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4);
    position: relative;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.whatsapp-float-btn:hover {
    transform: scale(1.08);
    background-color: var(--whatsapp-hover);
    box-shadow: 0 6px 22px rgba(37, 211, 102, 0.55);
}
.float-pulse {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 2px solid var(--whatsapp);
    animation: pulseRing 2.2s infinite cubic-bezier(0.25, 0, 0, 1);
    pointer-events: none;
}
@keyframes pulseRing {
    0% { transform: scale(0.95); opacity: 0.8; }
    70%, 100% { transform: scale(1.4); opacity: 0; }
}

/* ==========================================================================
   Responsividade (Breakpoints Mobile, Tablet & Desktop)
   ========================================================================== */
@media (max-width: 639px) {
    .logo-img { height: 48px; max-height: 48px; max-width: 210px; }
    .navbar.scrolled .logo-img { height: 42px; max-height: 42px; max-width: 190px; }
    .brands-section { padding: 50px 0 60px; }
    .brand-item { height: 50px; padding: 0 8px; }
    .brand-item img { height: 38px; max-width: 150px; }
    .brands-track { gap: 36px; animation-duration: 22s; }
}

@media (min-width: 640px) {
    .trust-bar { grid-template-columns: repeat(3, 1fr); }
    .hero-buttons, .location-buttons { flex-direction: row; }
}

@media (min-width: 768px) {
    .hero-title { font-size: 3.2rem; }
    .section-header h2 { font-size: 2.4rem; }
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .cta-container {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        text-align: left;
    }
    .cta-content { flex: 1; }
    .cta-content p { margin: 0; }
    .footer-content { grid-template-columns: 1.4fr 1fr; gap: 60px; }
    .footer-bottom-inner { flex-direction: row; justify-content: space-between; }
}

@media (min-width: 1024px) {
    .mobile-menu-btn { display: none; }
    .nav-links { display: flex; }
    .nav-action { display: block; }
    .services-grid { grid-template-columns: repeat(3, 1fr); }
    .fleet-wrapper { grid-template-columns: 1fr 1fr; }
    .location-grid { grid-template-columns: 1fr 1.25fr; }
}
