/* ==========================================================================
   MRA AUTO PEÇAS - VERSÃO 2.0 (Design Editorial, Fluido & Sofisticado)
   Identidade: Azul Marinho Oficial + Amarelo Ouro + Branco Puro
   ========================================================================== */

:root {
    --color-primary: #1b2754;        /* Azul Marinho Oficial */
    --color-primary-dark: #0b122b;   /* Azul Profundo */
    --color-primary-light: #253974;  /* Azul Médio */
    --color-secondary: #fbd100;      /* Amarelo Ouro Oficial */
    --color-secondary-hover: #e5be00;
    --color-yellow-saturated: #f9e000; /* Cor dos Boxs dos Carros solicitada */
    --color-yellow-saturated-hover: #edd500;
    --color-accent-green: #1a9e52;   /* Verde WhatsApp Alto Contraste */
    --color-accent-green-hover: #117838;
    --color-text-dark: #1e293b;
    --color-text-muted: #64748b;
    --color-bg-yellow: #fbd100;
    --color-bg-white: #ffffff;
    --color-bg-light: #f8fafc;
    --color-bg-navy: #111a3a;
    --color-bg-navy-dark: #070d21;
    --color-border: #e2e8f0;
    --color-border-dark: rgba(255, 255, 255, 0.12);
    
    --font-heading: 'Archivo', sans-serif;
    --font-black: 'Archivo Black', 'Archivo', sans-serif;
    --font-body: 'Archivo', sans-serif;
    --font-footer: 'Archivo', sans-serif;
    --font-stamina: 'Manrope', sans-serif;
    
    --shadow-sm: 0 2px 6px rgba(0,0,0,0.06);
    --shadow-md: 0 6px 16px rgba(0,0,0,0.08);
    --shadow-lg: 0 12px 28px rgba(0,0,0,0.12);
}

/* Reset Global e Base */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    color: var(--color-text-dark);
    background-color: var(--color-bg-white);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
    transition: all 0.2s ease;
}

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

/* ==========================================================================
   ANIMAÇÃO PULSOZAP
   ========================================================================== */
.pulsozap {
    animation: pulsozap 2s infinite;
}
@keyframes pulsozap {
    0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
    70% { transform: scale(1.05); box-shadow: 0 0 0 16px rgba(37, 211, 102, 0); }
    100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* ==========================================================================
   BOTÕES PADRONIZADOS (CANTOS RETOS / SEM BORDAS ARREDONDADAS)
   ========================================================================== */
.btn-v2 {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
    gap: 8px !important;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.95rem;
    line-height: 1 !important;
    white-space: nowrap !important;
    padding: 13px 26px !important;
    border-radius: 0 !important;
    border: none;
    cursor: pointer;
    text-decoration: none !important;
    transition: transform 0.2s ease, background-color 0.2s ease, filter 0.2s ease, border-color 0.2s ease;
}

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

.btn-v2:active {
    transform: translateY(0);
}

.btn-v2 svg {
    width: 19px;
    height: 19px;
    flex-shrink: 0;
    fill: currentColor;
    display: inline-block;
    vertical-align: middle;
}

.btn-whatsapp-green {
    background-color: var(--color-accent-green);
    color: #ffffff !important;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.25);
}
.btn-whatsapp-green:hover {
    background-color: var(--color-accent-green-hover);
    color: #ffffff !important;
}

.btn-navy {
    background-color: var(--color-primary);
    color: #ffffff !important;
}
.btn-navy:hover {
    background-color: var(--color-primary-dark);
    color: #ffffff !important;
}

.btn-outline-navy {
    background-color: transparent;
    color: var(--color-primary) !important;
    border: 1.5px solid var(--color-primary) !important;
}
.btn-outline-navy:hover {
    background-color: var(--color-primary);
    color: #ffffff !important;
}

.btn-outline-white {
    background-color: transparent;
    color: #ffffff !important;
    border: 1px solid rgba(255, 255, 255, 0.4) !important;
}
.btn-outline-white:hover {
    background-color: #ffffff;
    color: var(--color-primary) !important;
    border-color: #ffffff !important;
}

.btn-sm {
    padding: 9px 16px !important;
    font-size: 0.85rem;
}

.btn-lg {
    padding: 16px 32px !important;
    font-size: 1.05rem;
}

/* ==========================================================================
   1. HEADER COM LOGO CENTRALIZADO E MENU HAMBÚRGUER
   ========================================================================== */
.unified-yellow-zone {
    background-color: var(--color-bg-yellow);
    background-image: linear-gradient(180deg, #ffd000 0%, #fbd100 70%, #f7c900 100%);
    position: relative;
    padding-bottom: 70px;
}

.site-header-v2 {
    padding: 22px 0 28px;
    border-bottom: 1px solid rgba(27, 39, 84, 0.12);
}

.header-grid-v2 {
    display: grid;
    grid-template-columns: 80px 1fr 80px;
    align-items: center;
    gap: 15px;
}

.header-seal-wrap {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.header-seal {
    max-width: 65px;
    height: auto;
}

.header-logo-wrap {
    display: flex;
    justify-content: center;
    align-items: center;
}

.header-logo {
    max-width: 250px;
    height: auto;
    filter: drop-shadow(0 2px 6px rgba(0,0,0,0.1));
}

.header-menu-wrap {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

/* Botão Hambúrguer */
.hamburger-toggle-btn {
    background: transparent;
    border: none;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 6px;
    width: 48px;
    height: 48px;
    border-radius: 0;
    background-color: rgba(27, 39, 84, 0.08);
    transition: background-color 0.2s ease, transform 0.2s ease;
}

.hamburger-toggle-btn:hover {
    background-color: rgba(27, 39, 84, 0.16);
    transform: scale(1.05);
}

.hamburger-line {
    width: 24px;
    height: 2.5px;
    background-color: var(--color-primary);
    border-radius: 0;
    transition: all 0.3s ease;
}

/* ==========================================================================
   DRAWER / MENU LATERAL OCULTO (OFF-CANVAS) - COERÊNCIA VISUAL DE MARCA
   ========================================================================== */
.drawer-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(10, 16, 38, 0.75);
    backdrop-filter: blur(6px);
    z-index: 100000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.35s ease, visibility 0.35s ease;
}

.drawer-overlay.active {
    opacity: 1;
    visibility: visible;
}

.drawer-menu {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    max-width: 390px;
    height: 100vh;
    background: linear-gradient(180deg, #0c142e 0%, #080d1f 100%);
    color: #ffffff;
    box-shadow: none;
    border-left: 2px solid rgba(251, 209, 0, 0.35);
    z-index: 100001;
    display: flex;
    flex-direction: column;
    transform: translateX(100%);
    visibility: hidden;
    pointer-events: none;
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.35s ease, box-shadow 0.35s ease;
    overflow-y: auto;
    border-radius: 0;
}

.drawer-menu.active {
    transform: translateX(0);
    visibility: visible;
    pointer-events: auto;
    box-shadow: -10px 0 35px rgba(0, 0, 0, 0.6);
}

.drawer-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 22px 26px;
    background-color: #060a17;
    border-bottom: 2px solid var(--color-secondary);
}

.drawer-header-title {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--color-secondary);
}

.drawer-close-btn {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    font-size: 1.6rem;
    color: var(--color-secondary);
    cursor: pointer;
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0;
    transition: all 0.2s ease;
}

.drawer-close-btn:hover {
    background-color: var(--color-secondary);
    color: var(--color-primary);
    border-color: var(--color-secondary);
}

.drawer-body {
    padding: 26px 24px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    flex-grow: 1;
}

.drawer-nav {
    width: 100%;
}

.drawer-nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.drawer-nav-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 18px;
    color: #ffffff;
    text-decoration: none;
    font-family: var(--font-heading);
    font-size: 1.12rem;
    font-weight: 700;
    border-left: 3px solid transparent;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 0;
    transition: all 0.2s ease;
}

.drawer-nav-item:hover {
    background: rgba(255, 255, 255, 0.07);
    color: var(--color-secondary);
    border-left-color: var(--color-secondary);
    padding-left: 22px;
}

.drawer-nav-item svg {
    fill: currentColor;
    opacity: 0.6;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.drawer-nav-item:hover svg {
    opacity: 1;
    transform: translateX(4px);
}

.drawer-social-wrap {
    padding: 6px 0;
}

.drawer-instagram-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #cbd5e1;
    text-decoration: none;
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 700;
    padding: 12px 18px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0;
    width: 100%;
    transition: all 0.2s ease;
}

.drawer-instagram-link:hover {
    color: var(--color-secondary);
    border-color: rgba(251, 209, 0, 0.5);
    background: rgba(255, 255, 255, 0.07);
    transform: translateY(-1px);
}

.drawer-instagram-link svg {
    fill: currentColor;
}

.drawer-services-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding-top: 18px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-drawer-outline-gold {
    background: transparent;
    border: 1px solid var(--color-secondary);
    color: var(--color-secondary);
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 0.88rem;
    padding: 12px 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-decoration: none;
    border-radius: 0;
    transition: all 0.2s ease;
}

.btn-drawer-outline-gold:hover {
    background: var(--color-secondary);
    color: var(--color-primary);
}

.btn-drawer-gold {
    background: var(--color-secondary);
    border: 1px solid var(--color-secondary);
    color: var(--color-primary);
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 0.88rem;
    padding: 12px 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-decoration: none;
    border-radius: 0;
    transition: all 0.2s ease;
}

.btn-drawer-gold:hover {
    background: #ffd000;
    box-shadow: 0 4px 12px rgba(251, 209, 0, 0.3);
}

/* ==========================================================================
   2. HERO CONTENT
   ========================================================================== */
.hero-content-v2 {
    text-align: center;
    max-width: 940px;
    margin: 30px auto 36px;
}

/* Eyebrow de Localização em Caixa Alta com Pin */
.city-badge-hero {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: transparent;
    margin-bottom: 14px;
    border: none;
    box-shadow: none;
}

.city-pin-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
    font-size: 1.2rem;
}

.city-name-text {
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 1rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--color-primary);
}

.hero-title-v2 {
    font-family: var(--font-heading);
    font-size: clamp(2.4rem, 4.4vw, 3.85rem);
    font-weight: 900;
    color: var(--color-primary);
    line-height: 1.1;
    letter-spacing: -0.8px;
    margin-bottom: 16px;
}

.hero-title-v2 span {
    color: #08112e;
    display: inline-block;
}

/* Composição Integrada: Pronta Entrega & Frete Grátis (Cantos Retos e Integrado) */
.hero-highlights-strip {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 28px;
    margin: 14px auto 26px;
    padding: 8px 12px;
    border-top: 2px solid rgba(27, 39, 84, 0.2);
    border-bottom: 2px solid rgba(27, 39, 84, 0.2);
    background: transparent;
}

.highlight-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.highlight-title {
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 1.25rem;
    color: var(--color-primary);
    letter-spacing: 0.8px;
    line-height: 1.15;
}

.highlight-sub {
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 600;
    color: #27376c;
    margin-top: 2px;
}

.highlight-separator {
    width: 2px;
    height: 34px;
    background-color: rgba(27, 39, 84, 0.22);
}

.hero-actions-v2 {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 16px;
}

.btn-hero-cta {
    padding: 17px 42px !important;
    font-size: 1.15rem !important;
    border-radius: 0 !important;
    box-shadow: 0 6px 22px rgba(26, 158, 82, 0.38) !important;
}

.hero-trabalhe-v2 {
    font-family: var(--font-body);
    font-size: 0.92rem;
    color: var(--color-primary);
    font-weight: 600;
    margin-top: 10px;
}

.hero-trabalhe-v2 a {
    text-decoration: underline;
    font-weight: 700;
}
.hero-trabalhe-v2 a:hover {
    color: #000000;
}

/* ==========================================================================
   3. CATEGORIAS DE VEÍCULOS (FUNDO AMARELO SATURADO & CARROS +10%)
   ========================================================================== */
.categories-unified-v2 {
    padding-top: 25px;
}

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

.section-label {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--color-primary);
    opacity: 0.85;
    display: block;
    margin-bottom: 6px;
}

.section-title-clean {
    font-family: var(--font-heading);
    font-size: 2.25rem;
    font-weight: 900;
    color: var(--color-primary);
    line-height: 1.2;
}

.categories-columns-v2 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    align-items: stretch;
    margin-top: 40px;
}

.category-col-v2 {
    display: flex;
    flex-direction: column;
    position: relative;
    padding-top: 42px;
}

.category-card-inner {
    background-color: var(--color-yellow-saturated);
    border: none;
    border-top: 4px solid var(--color-primary);
    border-radius: 0;
    padding: 0 16px 22px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    height: 100%;
    position: relative;
    transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), background-color 0.25s ease, box-shadow 0.25s ease;
}

.category-card-inner:hover {
    transform: translateY(-5px);
    background-color: var(--color-yellow-saturated-hover);
    box-shadow: 0 14px 30px rgba(27, 39, 84, 0.2);
}

/* Veículo posicionado sobrepondo a borda superior do retângulo (+10% ampliado) */
.category-photo-overlap {
    margin-top: -46px;
    width: 100%;
    aspect-ratio: 280 / 160;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
    z-index: 2;
}

.category-photo-overlap img {
    width: 110% !important;
    max-width: 295px !important;
    height: auto !important;
    aspect-ratio: 280 / 160;
    object-fit: contain;
    filter: drop-shadow(0 12px 22px rgba(0,0,0,0.22));
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.category-card-inner:hover .category-photo-overlap img {
    transform: scale(1.05) translateY(-3px);
}

.category-name-v2 {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 900;
    color: var(--color-primary);
    margin-bottom: 6px;
    white-space: nowrap !important;
}

.category-list-v2 {
    font-family: var(--font-body);
    font-size: 0.88rem;
    color: #1e2a52;
    line-height: 1.45;
    margin-bottom: 18px;
    flex-grow: 1;
    min-height: 44px;
    text-align: center;
}

.category-cta-v2 {
    width: 100%;
    max-width: 210px;
    margin: 0 auto;
    background-color: var(--color-accent-green);
    color: #ffffff !important;
    font-size: 0.88rem;
    padding: 10px 16px !important;
    border-radius: 0 !important;
    box-shadow: 0 4px 12px rgba(26, 158, 82, 0.25);
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 6px !important;
}

.category-cta-v2:hover {
    background-color: var(--color-accent-green-hover);
    color: #ffffff !important;
    transform: translateY(-2px);
}

/* ==========================================================================
   5. MARCAS PARCEIRAS (FUNDO BRANCO PURO & SEM MOLDURAS)
   ========================================================================== */
.brands-clean-section {
    background-color: #ffffff;
    padding: 70px 0;
}

.brands-clean-section .section-title-clean {
    font-size: 2rem;
}

.brands-clean-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 36px 28px;
    align-items: center;
    justify-items: center;
    margin-top: 40px;
}

.brand-clean-item {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px;
    transition: transform 0.2s ease, opacity 0.2s ease;
    opacity: 0.88;
}

.brand-clean-item:hover {
    transform: scale(1.1);
    opacity: 1;
}

.brand-clean-item img {
    max-height: 48px;
    max-width: 120px;
    object-fit: contain;
}

/* ==========================================================================
   6. CASADINHA VISUAL: ENTREGA 24H & ATENDIMENTO ESPECIALIZADO (SPLIT 50/50)
   ========================================================================== */
.benefits-split-section {
    width: 100%;
    margin: 0;
    padding: 0;
    overflow: hidden;
    border: none;
}

.benefits-split-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    width: 100%;
    margin: 0;
    padding: 0;
    gap: 0;
}

.benefit-split-half {
    display: flex;
    flex-direction: column;
    justify-content: center;
    border: none;
    border-radius: 0;
    box-shadow: none;
    position: relative;
    box-sizing: border-box;
}

.benefit-split-content {
    width: 100%;
}

.benefit-icon-wrap {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.benefit-split-title {
    font-family: var(--font-heading);
    font-size: 1.85rem;
    font-weight: 900;
    line-height: 1.25;
    margin-bottom: 12px;
    letter-spacing: -0.02em;
}

.benefit-split-desc {
    font-size: 1.05rem;
    line-height: 1.55;
    margin-bottom: 0;
}

/* Metade Esquerda - Entrega 24h (Navy Elegante) */
.benefit-split-delivery {
    background: linear-gradient(145deg, #0d1532 0%, #17224d 100%);
    color: #ffffff;
    padding: 70px 50px 70px 40px;
    align-items: flex-end;
}

.benefit-split-delivery .benefit-split-content {
    max-width: 560px;
    margin-left: auto;
    text-align: left;
}

.benefit-icon-delivery {
    color: var(--color-secondary);
    animation: motoFloat 2s ease-in-out infinite alternate;
}

.benefit-icon-delivery .delivery-icon-svg {
    width: 48px;
    height: auto;
    aspect-ratio: 640 / 512;
    fill: currentColor;
    display: block;
}

.benefit-split-delivery .benefit-split-title {
    color: #ffffff;
}

.benefit-split-delivery .benefit-split-desc {
    color: #cbd5e1;
}

/* Metade Direita - Consultoria Técnica (Amarelo Hero) */
.benefit-split-specialists {
    background: var(--color-bg-yellow);
    color: var(--color-primary);
    padding: 70px 40px 70px 50px;
    align-items: flex-start;
}

.benefit-split-specialists .benefit-split-content {
    max-width: 560px;
    margin-right: auto;
    text-align: left;
}

.benefit-icon-specialists {
    color: var(--color-primary);
    font-size: 2.2rem;
}

.benefit-split-specialists .benefit-split-title {
    color: var(--color-primary);
}

.benefit-split-specialists .benefit-split-desc {
    color: var(--color-primary);
    font-weight: 500;
}

.benefit-split-specialists .benefit-split-desc b {
    font-weight: 800;
    color: var(--color-primary);
}

.benefit-split-action {
    margin-top: 24px;
}

.btn-benefit-action {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 13px 24px;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 0.95rem;
    border-radius: 0;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.25);
    transition: all 0.2s ease;
}

.btn-benefit-action:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(37, 211, 102, 0.35);
}

@keyframes motoFloat {
    0% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(-4px);
    }
}

/* ==========================================================================
   7. DEPOIMENTOS EDITORIAL (SEM BORDAS DE CAIXAS)
   ========================================================================== */
.testimonials-editorial-section {
    background-color: #ffffff;
    padding: 75px 0;
}

.testimonials-editorial-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 50px;
    margin-top: 40px;
}

.testimonial-item-v2 {
    display: flex;
    flex-direction: column;
    border-left: 3px solid var(--color-secondary);
    padding-left: 22px;
}

.testimonial-user-v2 {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 10px;
}

.testimonial-avatar-clean {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--color-primary);
    color: #ffffff;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.testimonial-name-clean h3 {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 800;
    color: var(--color-primary);
}

.testimonial-name-clean span {
    font-size: 0.8rem;
    color: #64748b;
    display: flex;
    align-items: center;
    gap: 4px;
}

.testimonial-stars-clean {
    color: #f59e0b;
    font-size: 1.1rem;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.testimonial-quote-clean {
    font-size: 0.95rem;
    line-height: 1.65;
    color: #334155;
    font-style: normal;
}

/* ==========================================================================
   9. AS 4 FILIAIS (COLUNAS ARQUITETURAIS LIMPAS E CENTRALIZADAS)
   ========================================================================== */
.branches-architectural-section {
    background-color: var(--color-bg-navy-dark);
    color: #ffffff;
    padding: 80px 0 85px;
    position: relative;
}

.branches-architectural-section .section-label {
    color: var(--color-secondary);
}

.branches-architectural-section .section-title-clean {
    color: #ffffff;
}

.branches-architectural-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 45px;
    align-items: stretch;
}

.branch-col-v2 {
    display: flex;
    flex-direction: column;
    background-color: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-top: 3px solid var(--color-secondary);
    border-radius: 0;
    padding: 16px 16px 22px;
    align-items: center;
    text-align: center;
    transition: transform 0.25s ease, border-color 0.25s ease, background-color 0.25s ease, box-shadow 0.25s ease;
}

.branch-col-v2:hover {
    transform: translateY(-5px);
    background-color: rgba(255, 255, 255, 0.07);
    border-color: rgba(255, 255, 255, 0.16);
    border-top-color: #ffffff;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.35);
}

.branch-image-frame {
    width: 100%;
    height: 160px;
    overflow: hidden;
    margin-bottom: 16px;
    position: relative;
    background-color: #060b1b;
    border-radius: 0;
}

.branch-image-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.branch-col-v2:hover .branch-image-frame img {
    transform: scale(1.06);
}

.branch-badge-clean {
    position: absolute;
    top: 10px;
    left: 10px;
    background-color: var(--color-secondary);
    color: var(--color-primary-dark);
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 0.7rem;
    padding: 3px 8px;
    border-radius: 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.branch-meta-clean {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    flex-grow: 1;
    width: 100%;
}

.branch-city-clean {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 6px;
}

.branch-addr-clean {
    font-family: var(--font-body);
    font-size: 0.88rem;
    color: #94a3b8;
    line-height: 1.45;
    margin-bottom: 14px;
    min-height: 44px;
    text-align: center;
}

/* Bloco Unificado de 3 Ações por Unidade */
.branch-actions-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    width: 100%;
    margin-top: auto;
    padding-top: 6px;
}

/* 1. Botão Abrir WhatsApp */
.branch-btn-whatsapp {
    width: 100%;
    max-width: 210px;
    font-size: 0.85rem;
    padding: 10px 14px !important;
    border-radius: 0 !important;
}

/* 2. Telefone Clicável com Ícone */
.branch-phone-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 700;
    color: #ffffff;
    text-decoration: none;
    transition: color 0.2s ease, transform 0.2s ease;
}

.branch-phone-link svg {
    width: 15px;
    height: 15px;
    fill: var(--color-secondary);
    flex-shrink: 0;
    transition: fill 0.2s ease, transform 0.2s ease;
}

.branch-phone-link:hover {
    color: var(--color-secondary);
    transform: translateY(-1px);
}

/* 3. Como chegar (Texto Sublinhado sem Aparência de Botão) */
.branch-route-link {
    font-family: var(--font-body);
    font-size: 0.85rem;
    color: #94a3b8;
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: color 0.2s ease;
    cursor: pointer;
}

.branch-route-link:hover {
    color: #ffffff;
}

/* ==========================================================================
   10. NOVO RODAPÉ ENXUTO (FONTE PADRÃO ARCHIVO PRESERVADA, STAMINA INTACTA)
   ========================================================================== */
.main-footer-v2 {
    background-color: var(--color-bg-navy-dark);
    color: #ffffff;
    padding: 55px 0 65px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    text-align: center;
    font-family: var(--font-body);
}

.footer-clean-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 14px;
    max-width: 600px;
    margin: 0 auto 30px;
}

.footer-logo {
    max-width: 175px;
    height: auto;
    filter: brightness(0) invert(1);
    opacity: 0.92;
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.footer-logo:hover {
    opacity: 1;
    transform: scale(1.02);
}

.footer-about-text {
    font-size: 0.92rem;
    color: #94a3b8;
    line-height: 1.6;
}

.footer-social-wrap {
    margin-top: 6px;
}

.footer-instagram-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 1.7rem;
    opacity: 0.85;
    text-decoration: none;
    transition: transform 0.2s ease, opacity 0.2s ease, color 0.2s ease;
}

.footer-instagram-icon:hover {
    transform: scale(1.18);
    opacity: 1;
    color: var(--color-secondary);
}

.footer-bottom-bar {
    padding-top: 22px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.82rem;
    color: #64748b;
}

/* Tag Stamina no Rodapé */
.stamina-footer-container {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    background-color: transparent;
    padding: 0;
    margin: 0;
    z-index: 10;
    pointer-events: none;
}

.stamina-badge-link {
    pointer-events: auto;
    width: fit-content;
    max-width: 90%;
    background-color: #252525;
    border-radius: 14px 14px 0 0;
    border: none;
    padding: 10px 28px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    text-decoration: none;
    color: rgba(255, 255, 255, 0.85);
    font-family: var(--font-stamina);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.03em;
    box-shadow: none;
    transition: background-color 0.3s ease, color 0.3s ease;
    cursor: pointer;
}

.stamina-badge-logo {
    height: 11px;
    width: auto;
    display: block;
    transform: translateY(-2px);
    transition: transform 0.35s cubic-bezier(0.25, 1, 0.5, 1);
}

.stamina-badge-link:hover {
    background-color: #2e2e2e;
    color: #ffffff;
}

.stamina-badge-link:hover .stamina-badge-logo {
    transform: translateY(-2px) scale(1.05);
}

/* ==========================================================================
   11. BOTÃO FLUTUANTE DE WHATSAPP (SEMPRE VISÍVEL DESDE O INÍCIO)
   ========================================================================== */
.whatsapp-float-btn {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 62px;
    height: 62px;
    background-color: var(--color-accent-green);
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 22px rgba(0, 0, 0, 0.3);
    z-index: 99999 !important;
    text-decoration: none;
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
    transition: transform 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease;
}

.whatsapp-float-btn:hover {
    transform: scale(1.1);
    background-color: var(--color-accent-green-hover);
    box-shadow: 0 8px 26px rgba(0, 0, 0, 0.4);
}

.whatsapp-float-btn img {
    width: 34px;
    height: 34px;
    filter: brightness(0) invert(1);
}

/* ==========================================================================
   RESPONSIVIDADE (MEDIA QUERIES)
   ========================================================================== */
@media (max-width: 1024px) {
    .brands-clean-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 25px 20px;
    }
    .branches-architectural-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 28px 20px;
    }
    .footer-grid-v2 {
        grid-template-columns: repeat(2, 1fr);
        gap: 35px;
    }
}

@media (max-width: 768px) {
    .container-v2 {
        padding: 0 16px;
    }

    .header-grid-v2 {
        grid-template-columns: 50px 1fr 50px;
    }
    .header-logo {
        max-width: 190px;
    }
    .header-seal {
        max-width: 50px;
    }
    .hero-title-v2 {
        font-size: clamp(1.85rem, 6.8vw, 2.5rem);
    }
    
    /* Destaques Pronta Entrega e Frete Grátis no Mobile */
    .hero-highlights-strip {
        flex-direction: row;
        gap: 16px;
        padding: 8px 6px;
        margin-bottom: 22px;
    }
    .highlight-title {
        font-size: 1.05rem;
    }
    .highlight-sub {
        font-size: 0.8rem;
    }
    .highlight-separator {
        height: 28px;
    }
    
    .hero-actions-v2 {
        flex-direction: column;
        width: 100%;
    }
    .hero-actions-v2 .btn-v2 {
        width: 100%;
    }
    
    /* 1. TÍTULO "PEÇAS PARA TODAS AS CATEGORIAS" (20% menor que o H1) */
    .categories-unified-v2 .section-title-clean {
        font-size: clamp(1.48rem, 5.44vw, 2.0rem);
    }
    .section-title-clean {
        font-size: clamp(1.48rem, 5.44vw, 2.0rem);
    }
    
    /* 2. BOXES DOS CARROS (MESMA DIMENSÃO RIGOROSA, 2 COLUNAS, MESMA PROPORÇÃO RELATIVA DAS FOTOS) */
    .categories-columns-v2 {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 1fr;
        gap: 26px 10px;
        align-items: stretch;
        margin-top: 25px;
        width: 100%;
    }
    .category-col-v2 {
        display: flex;
        flex-direction: column;
        height: 100%;
        padding-top: 28px;
        width: 100%;
        box-sizing: border-box;
    }
    .category-card-inner {
        background-color: var(--color-yellow-saturated);
        border: none;
        border-top: 4px solid var(--color-primary);
        border-radius: 0;
        padding: 0 8px 14px;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        align-items: center;
        text-align: center;
        height: 100%;
        width: 100%;
        box-sizing: border-box;
    }
    .category-photo-overlap {
        margin-top: -30px;
        width: 100%;
        height: 72px;
        aspect-ratio: 280 / 160;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 6px;
        z-index: 2;
    }
    .category-photo-overlap img {
        width: 100% !important;
        max-width: 100% !important;
        max-height: 100% !important;
        height: auto !important;
        aspect-ratio: 280 / 160;
        object-fit: contain;
        filter: drop-shadow(0 8px 14px rgba(0,0,0,0.2));
    }
    
    .category-name-v2 {
        font-size: clamp(0.85rem, 3.4vw, 1.05rem);
        white-space: nowrap !important;
        margin-bottom: 4px;
        min-height: 24px;
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
    }
    .category-list-v2 {
        font-size: clamp(0.68rem, 2.5vw, 0.74rem);
        min-height: 48px;
        line-height: 1.35;
        margin-bottom: 10px;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        flex-grow: 1;
        width: 100%;
    }
    .category-cta-v2 {
        font-size: clamp(0.7rem, 2.6vw, 0.78rem);
        padding: 8px 4px !important;
        width: 100%;
        max-width: 100%;
        border-radius: 0 !important;
        margin-top: auto;
        white-space: nowrap !important;
        gap: 5px !important;
    }
    .category-cta-v2 svg {
        width: 13px !important;
        height: 13px !important;
        flex-shrink: 0;
    }

    /* 3. ÁREA DAS MARCAS (ESPAÇAMENTO LATERAL SIMÉTRICO E CENTRALIZAÇÃO RIGOROSA) */
    .brands-clean-section {
        padding: 45px 0;
        width: 100%;
        overflow: hidden;
    }
    .brands-clean-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 16px 8px;
        margin-top: 25px;
        width: 100%;
        max-width: 100%;
        padding: 0;
        margin-left: auto;
        margin-right: auto;
        align-items: center;
        justify-items: center;
        box-sizing: border-box;
    }
    .brand-clean-item {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
        padding: 4px 2px;
        box-sizing: border-box;
    }
    .brand-clean-item img {
        max-height: 32px;
        max-width: 100% !important;
        width: auto;
        height: auto;
        object-fit: contain;
        margin: 0 auto;
        display: block;
    }

    /* BENEFÍCIOS */
    .benefits-split-grid {
        grid-template-columns: 1fr;
    }
    .benefit-split-half {
        padding: 48px 24px !important;
        align-items: center !important;
        text-align: center;
    }
    .benefit-split-delivery .benefit-split-content,
    .benefit-split-specialists .benefit-split-content {
        max-width: 100%;
        margin: 0 auto;
        text-align: center;
    }
    .benefit-split-half .benefit-icon-wrap {
        justify-content: center;
        margin-left: auto;
        margin-right: auto;
    }
    .benefit-split-title {
        font-size: 1.45rem;
    }
    .benefit-split-action {
        display: flex;
        justify-content: center;
        width: 100%;
    }
    .btn-benefit-action {
        width: 100%;
        max-width: 320px;
    }

    /* DEPOIMENTOS */
    .testimonials-editorial-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    /* 4. ÁREA DOS ENDEREÇOS (GRADE 2 COLUNAS NO MESMO CONCEITO DOS BOXES DE CARROS) */
    .branches-architectural-section {
        padding: 50px 0 60px;
    }
    .branches-architectural-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 1fr;
        gap: 16px 10px;
        width: 100%;
        max-width: 100%;
        margin: 25px auto 0;
        align-items: stretch;
    }
    .branch-col-v2 {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        height: 100%;
        width: 100%;
        padding: 10px 8px 14px;
        box-sizing: border-box;
    }
    .branch-image-frame {
        width: 100%;
        height: 95px;
        overflow: hidden;
        margin-bottom: 10px;
        position: relative;
        border-radius: 0;
    }
    .branch-badge-clean {
        position: absolute;
        top: 5px;
        left: 5px;
        font-size: 0.62rem;
        padding: 2px 5px;
        letter-spacing: 0.3px;
    }
    .branch-meta-clean {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        flex-grow: 1;
        width: 100%;
    }
    .branch-city-clean {
        font-size: clamp(0.92rem, 3.6vw, 1.12rem);
        margin-bottom: 4px;
        white-space: nowrap;
    }
    .branch-addr-clean {
        font-size: clamp(0.68rem, 2.5vw, 0.76rem);
        line-height: 1.35;
        margin-bottom: 10px;
        min-height: 38px;
        text-align: center;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .branch-actions-block {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 8px;
        width: 100%;
        margin-top: auto;
        padding-top: 4px;
    }
    .branch-btn-whatsapp {
        width: 100% !important;
        max-width: 100% !important;
        font-size: clamp(0.7rem, 2.6vw, 0.78rem) !important;
        padding: 8px 4px !important;
        white-space: nowrap !important;
        gap: 4px !important;
    }
    .branch-btn-whatsapp svg {
        width: 13px !important;
        height: 13px !important;
        flex-shrink: 0;
    }
    .branch-phone-link {
        font-size: clamp(0.72rem, 2.7vw, 0.82rem);
        gap: 4px;
        white-space: nowrap;
    }
    .branch-phone-link svg {
        width: 12px !important;
        height: 12px !important;
        flex-shrink: 0;
    }
    .branch-route-link {
        font-size: clamp(0.68rem, 2.4vw, 0.76rem);
    }

    .footer-grid-v2 {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .footer-bottom-bar {
        flex-direction: column;
        text-align: center;
    }

    .whatsapp-float-btn {
        bottom: 18px;
        right: 18px;
        width: 56px;
        height: 56px;
    }
    .whatsapp-float-btn img {
        width: 30px;
        height: 30px;
    }
}

/* ==========================================================================
   12. MODAL DE SELEÇÃO DE LOJA (WHATSAPP 4 UNIDADES) - DESIGN MINIMALISTA
   ========================================================================== */
.store-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(11, 18, 43, 0.78);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    z-index: 9999999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.25s ease, visibility 0.25s ease;
}

.store-modal-overlay.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.store-modal-container {
    background-color: #ffffff;
    width: 100%;
    max-width: 540px;
    border-radius: 14px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
    position: relative;
    padding: 30px 24px 24px;
    max-height: 90vh;
    overflow-y: auto;
    transform: translateY(20px) scale(0.97);
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.store-modal-overlay.active .store-modal-container {
    transform: translateY(0) scale(1);
}

.store-modal-close {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background-color: #f1f5f9;
    border: none;
    font-size: 22px;
    line-height: 1;
    color: var(--color-primary);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.2s ease, transform 0.2s ease, color 0.2s ease;
}

.store-modal-close:hover {
    background-color: #e2e8f0;
    color: #ef4444;
    transform: rotate(90deg);
}

.store-modal-header {
    text-align: center;
    margin-bottom: 20px;
    padding-top: 4px;
}

.store-modal-title {
    font-family: var(--font-black);
    font-size: clamp(1.35rem, 3.8vw, 1.65rem);
    color: var(--color-primary);
    line-height: 1.2;
}

.store-modal-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
}

.store-card-modal {
    background-color: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    padding: 14px 12px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.store-card-modal:hover {
    border-color: #cbd5e1;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.06);
    transform: translateY(-2px);
}

.store-card-btn {
    width: 100% !important;
    padding: 12px 14px !important;
    font-size: 0.95rem !important;
    font-weight: 800 !important;
    border-radius: 6px !important;
    box-shadow: 0 3px 8px rgba(26, 158, 82, 0.25) !important;
}

.store-card-btn svg {
    width: 18px !important;
    height: 18px !important;
}

.store-card-address {
    font-size: 0.78rem;
    color: var(--color-text-muted);
    line-height: 1.35;
    text-align: center;
}

@media (max-width: 600px) {
    .store-modal-container {
        padding: 24px 16px 18px;
        border-radius: 12px;
    }
    .store-modal-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    .store-card-modal {
        padding: 12px 12px;
        gap: 8px;
    }
}

/* ==========================================================================
   13. LIGHTBOX FORMULÁRIO TRABALHE CONOSCO (YAYFORMS)
   ========================================================================== */
.careers-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(11, 18, 43, 0.82);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    z-index: 99999999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.25s ease, visibility 0.25s ease;
}

.careers-modal-overlay.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.careers-modal-container {
    background-color: #203383; /* Fundo idêntico ao formulário YayForms */
    width: 100%;
    max-width: 660px;
    height: 85vh;
    max-height: 720px;
    min-height: 480px;
    border-radius: 16px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.55);
    border: 1px solid rgba(255, 255, 255, 0.12);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transform: translateY(20px) scale(0.97);
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.careers-modal-overlay.active .careers-modal-container {
    transform: translateY(0) scale(1);
}

.careers-modal-close {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.18);
    border: none;
    font-size: 22px;
    line-height: 1;
    color: #ffffff;
    cursor: pointer;
    z-index: 20;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.2s ease, transform 0.2s ease, color 0.2s ease;
}

.careers-modal-close:hover {
    background-color: #ef4444;
    color: #ffffff;
    transform: rotate(90deg);
}

.careers-modal-body {
    width: 100%;
    height: 100%;
    flex: 1;
    position: relative;
    background-color: #203383; /* Fundo idêntico ao formulário YayForms */
    border-radius: 16px;
    overflow: hidden;
}

.careers-modal-body [data-yf-widget],
.careers-modal-body .yf-v1-widget,
.careers-modal-body iframe {
    width: 100% !important;
    height: 100% !important;
    border: none !important;
    display: block;
    background-color: #203383;
}

@media (max-width: 600px) {
    .careers-modal-container {
        width: 100%;
        height: 92vh;
        max-height: 92vh;
        border-radius: 12px;
    }
    .careers-modal-close {
        top: 10px;
        right: 10px;
        width: 32px;
        height: 32px;
        font-size: 20px;
    }
}


