/* ==========================================================================
   DESIGN SYSTEM & VARIABLES (CORES IDÊNTICAS AO LOGO: PRETO PURO & VERMELHO)
   ========================================================================== */
:root {
    /* Cores da Logo Oficial */
    --color-primary: #d80e17;           /* Vermelho Puro/Esportivo do Logo */
    --color-primary-hover: #ff2a35;     /* Vermelho Brilhante no Hover */
    --color-primary-rgb: 216, 14, 23;
    
    /* Fundo Preto Puro e Nuances (Logo Style) */
    --color-bg-deep: #000000;           /* Preto Puro (#000000) idêntico ao fundo do logo */
    --color-bg-soft: #08080c;           /* Preto muito sutil para alternância de seções */
    
    /* Cards Translúcidos (Glassmorphism Neon) */
    --color-card-bg: rgba(10, 10, 15, 0.7);
    --color-card-border: rgba(216, 14, 23, 0.15);
    --color-card-border-hover: rgba(216, 14, 23, 0.45);
    
    /* Cores de Texto (Contraste Premium) */
    --color-text-title: #ffffff;        /* Títulos em Branco Puro (#FFFFFF) do logo */
    --color-text-body: #ccd1db;         /* Parágrafos Cinza Claro de alta legibilidade */
    --color-text-muted: #828c9e;        /* Texto Secundário */
    
    /* Conversão */
    --color-whatsapp: #25d366;          /* Verde WhatsApp */
    --color-whatsapp-hover: #20ba59;
    
    /* Fontes */
    --font-headings: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    /* Transições */
    --transition-fast: all 0.2s ease;
    --transition-normal: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    
    /* Sombras e Bordas */
    --container-max-width: 1200px;
    --shadow-neon: 0 0 15px rgba(216, 14, 23, 0.25);
    --shadow-neon-hover: 0 0 25px rgba(216, 14, 23, 0.45);
    --shadow-dark: 0 16px 40px rgba(0, 0, 0, 0.9);
    --border-radius-sm: 8px;
    --border-radius-md: 16px;
    --border-radius-lg: 24px;
    --border-radius-pill: 50px;
}

/* ==========================================================================
   RESET & CONFIGURAÇÕES BÁSICAS
   ========================================================================== */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

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

body {
    font-family: var(--font-body);
    background-color: var(--color-bg-deep);
    color: var(--color-text-body);
    line-height: 1.6;
    overflow-x: hidden;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-fast);
}

button {
    font-family: inherit;
    border: none;
    background: none;
    cursor: pointer;
}

ul, ol {
    list-style: none;
}

/* Container */
.container {
    width: 100%;
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Títulos Globais */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-headings);
    font-weight: 700;
    color: var(--color-text-title);
    line-height: 1.2;
}

/* Seções */
section {
    padding: 7rem 0;
    position: relative;
    background-color: var(--color-bg-deep);
    border-bottom: 1px solid rgba(255, 255, 255, 0.02);
}

.section-dark {
    background-color: var(--color-bg-soft);
}

/* Cabeçalho da Seção */
.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 5rem auto;
}

.section-header .subtitle {
    color: var(--color-primary);
    font-family: var(--font-headings);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.875rem;
    display: block;
    margin-bottom: 0.75rem;
}

.section-header h2 {
    font-size: 1.85rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.section-header p {
    color: var(--color-text-muted);
    font-size: 1.1rem;
}

/* ==========================================================================
   BOTÕES ESTILO PÍLULA (COMPACTOS E HARMÔNICOS)
   ========================================================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    padding: 0.8rem 2rem;
    font-family: var(--font-headings);
    font-weight: 700;
    font-size: 0.92rem;
    border-radius: var(--border-radius-pill); /* 100% Arredondado */
    transition: var(--transition-normal);
    position: relative;
    overflow: hidden;
    z-index: 1;
    letter-spacing: 0.2px;
}

.btn-primary {
    background-color: var(--color-primary);
    color: var(--color-text-title);
    box-shadow: 0 4px 15px rgba(216, 14, 23, 0.35);
}

.btn-primary:hover {
    background-color: var(--color-primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(216, 14, 23, 0.5);
}

.btn-secondary {
    background-color: transparent;
    color: var(--color-text-title);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-2px);
}

.btn-whatsapp {
    background-color: var(--color-whatsapp);
    color: var(--color-text-title);
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.25);
}

.btn-whatsapp:hover {
    background-color: var(--color-whatsapp-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
}

/* Botão Flutuante do WhatsApp */
.whatsapp-float {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 60px;
    height: 60px;
    background-color: var(--color-whatsapp);
    color: var(--color-text-title);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5), 0 0 15px rgba(37, 211, 102, 0.3);
    z-index: 999;
    font-size: 1.8rem;
    transition: var(--transition-normal);
}

.whatsapp-float:hover {
    background-color: var(--color-whatsapp-hover);
    transform: scale(1.1) rotate(15deg);
}

/* ==========================================================================
   HEADER (MENU CENTRALIZADO COM MARGIN E ESTILO LOGO DO CLIENTE)
   ========================================================================== */
.header {
    background-color: rgba(0, 0, 0, 0.85); /* Fundo Preto Puro com transparência */
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: var(--transition-normal);
}

.header-scrolled {
    background-color: rgba(0, 0, 0, 0.98);
    padding: 0.2rem 0;
}

.header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 90px;
}

.logo-link {
    display: flex;
    align-items: center;
    gap: 0.85rem;
}

.logo-img {
    height: 46px;
    width: auto;
    border-radius: 6px; /* Mantém o formato original */
    border: 1.5px solid var(--color-primary);
}

/* Logo Estilizado igual à Marca Física (Branco e Vermelho Empilhados) */
.logo-text {
    font-family: var(--font-headings);
    font-size: 1.45rem;
    font-weight: 800;
    color: #ffffff; /* Branco do Logo */
    letter-spacing: -0.5px;
    display: flex;
    flex-direction: column; /* Empilhado */
    line-height: 1;
}

.logo-text span {
    font-size: 0.68rem;
    font-weight: 700;
    color: var(--color-primary); /* Vermelho do Logo */
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-top: 3px;
}

/* Centralização Perfeita e Harmônica do Menu de Navegação */
.nav-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin: 0 auto; /* Centraliza perfeitamente no espaço restante do cabeçalho */
}

.nav-link {
    font-family: var(--font-headings);
    font-size: 0.98rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.7);
    position: relative;
    padding: 0.4rem 0;
}

.nav-link:hover, .nav-link.active {
    color: var(--color-text-title);
}

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

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

.header .btn-header {
    padding: 0.7rem 1.6rem;
    font-size: 0.92rem;
    border-radius: var(--border-radius-pill);
}

.mobile-only-btn {
    display: none !important;
}

.desktop-only-btn {
    display: inline-flex !important;
}

/* Menu Mobile Toggle */
.mobile-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 28px;
    height: 18px;
    z-index: 1010;
}

.mobile-toggle span {
    height: 2.5px;
    width: 100%;
    background-color: var(--color-text-title);
    border-radius: 3px;
    transition: var(--transition-fast);
}

/* ==========================================================================
   HERO SECTION (ALINHAMENTO E ALTURA DE LINHA COMPACTA E HARMÔNICA)
   ========================================================================== */
.hero {
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.98) 0%, rgba(0, 0, 0, 0.9) 40%, rgba(0, 0, 0, 0.5) 75%, rgba(0, 0, 0, 0.15) 100%), 
                url('../assets/hero-bg.png?v=3.0') center/cover no-repeat;
    min-height: 100vh;
    padding-top: 100px;
    display: flex;
    align-items: center; /* Centraliza conteúdo verticalmente */
    position: relative;
    overflow: hidden;
}

.hero-content-wrapper {
    max-width: 820px;
    position: relative;
    z-index: 5;
    text-align: left;
    margin: auto 0; /* Centraliza verticalmente no viewport */
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background-color: rgba(0, 0, 0, 0.6);
    border: 1.5px solid rgba(216, 14, 23, 0.25);
    color: #dfd8d8;
    padding: 0.6rem 1.4rem;
    border-radius: var(--border-radius-pill);
    font-size: 0.82rem;
    font-family: var(--font-headings);
    font-weight: 700;
    margin-bottom: 2.25rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hero-badge svg {
    color: var(--color-primary);
}

.hero h1 {
    font-family: var(--font-headings); /* Outfit */
    font-size: clamp(2rem, 5.5vw, 3.4rem); /* Copiado exatamente da São Jorge */
    font-weight: 700; /* Copiado exatamente (Bold em vez de Black) */
    line-height: 1.15; /* Copiado exatamente */
    letter-spacing: normal; /* Copiado exatamente */
    margin-bottom: 1.5rem;
    color: #ffffff;
}

.hero h1 span {
    color: var(--color-primary); /* Vermelho do Logo */
}

.hero-desc {
    font-family: var(--font-body); /* Inter */
    font-size: 1.15rem; /* Copiado exatamente da São Jorge */
    font-weight: 400; /* Copiado exatamente */
    line-height: 1.7; /* Copiado exatamente */
    color: var(--color-text-body);
    margin-bottom: 3rem;
    max-width: 680px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1.25rem;
}

/* ==========================================================================
   CONFIDENCE BADGES — ESTRUTURA SÃO JORGE (DUAS FILEIRAS)
   ========================================================================== */
.badges-bar {
    background-color: #030305;
    padding: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.03);
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
    position: relative;
    z-index: 10;
}

/* Linha 1: Números Grandes em Destaque */
.badges-stats-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    padding: 2.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.badge-stat {
    text-align: center;
}

.badge-stat h3 {
    font-family: var(--font-headings);
    font-size: 1.6rem;
    font-weight: 700;
    font-style: italic;
    color: var(--color-primary);
    margin-bottom: 0.25rem;
    letter-spacing: -0.02em;
}

.badge-stat p {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    font-weight: 400;
}

/* Linha 2: Ícones Pequenos Inline */
.badges-icons-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2.5rem;
    padding: 1rem 0;
}

.badge-inline {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.badge-inline svg {
    color: var(--color-primary);
    flex-shrink: 0;
}

.badge-inline span {
    font-size: 0.82rem;
    color: var(--color-text-muted);
    font-weight: 500;
}

/* ==========================================================================
   SOBRE NÓS
   ========================================================================== */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.about-img-box {
    position: relative;
}

.about-img-box::before {
    content: '';
    position: absolute;
    top: -15px;
    left: -15px;
    width: 80px;
    height: 80px;
    border-top: 4px solid var(--color-primary);
    border-left: 4px solid var(--color-primary);
    z-index: 1;
}

.about-img-box::after {
    content: '';
    position: absolute;
    bottom: -15px;
    right: -15px;
    width: 80px;
    height: 80px;
    border-bottom: 4px solid rgba(255, 255, 255, 0.15);
    border-right: 4px solid rgba(255, 255, 255, 0.15);
    z-index: 1;
}

.about-img {
    border-radius: var(--border-radius-sm);
    box-shadow: var(--shadow-dark);
    position: relative;
    z-index: 2;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.about-content p {
    margin-bottom: 1.5rem;
    font-size: 1.08rem;
    color: var(--color-text-body);
}

.about-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 3rem;
}

.stat-item {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.stat-item::after {
    content: '';
    display: block;
    width: 40px;
    height: 3px;
    background-color: var(--color-primary);
    margin: 0.75rem auto 0 auto;
}

.stat-number {
    font-family: var(--font-headings);
    font-size: 2.75rem;
    font-weight: 900;
    color: var(--color-text-title);
    line-height: 1;
    margin-bottom: 0.25rem;
    text-shadow: var(--shadow-neon);
}

.stat-label {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ==========================================================================
   DIFERENCIAIS
   ========================================================================== */
.diff-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.diff-card {
    background-color: var(--color-card-bg);
    backdrop-filter: blur(12px);
    border: 1px solid var(--color-card-border);
    padding: 2.75rem 2.25rem;
    border-radius: var(--border-radius-md);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: var(--transition-normal);
}

.diff-card:hover {
    transform: translateY(-8px);
    border-color: var(--color-card-border-hover);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5), var(--shadow-neon);
}

.diff-card-icon {
    width: 56px;
    height: 56px;
    background-color: rgba(216, 14, 23, 0.08);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
    font-size: 1.5rem;
    margin-bottom: 1.75rem;
    transition: var(--transition-normal);
}

.diff-card:hover .diff-card-icon {
    background-color: var(--color-primary);
    color: var(--color-text-title);
}

.diff-card h3 {
    font-size: 1.35rem;
    margin-bottom: 0.85rem;
}

.diff-card p {
    color: var(--color-text-muted);
    font-size: 0.97rem;
    line-height: 1.6;
}

/* ==========================================================================
   CATEGORIAS DE PEÇAS — COM IMAGENS (SÃO JORGE)
   ========================================================================== */
.parts-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

a.part-card {
    text-decoration: none;
    color: inherit;
}

.part-card {
    background-color: var(--color-card-bg);
    border: 1px solid var(--color-card-border);
    border-radius: var(--border-radius-md);
    text-align: center;
    transition: var(--transition-normal);
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    cursor: pointer;
}

.part-card:hover {
    transform: translateY(-8px);
    border-color: var(--color-card-border-hover);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.6), var(--shadow-neon);
}

/* Wrapper da imagem com overflow hidden para zoom */
.part-img-wrapper {
    width: 100%;
    height: 200px;
    overflow: hidden;
    position: relative;
}

.part-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.part-card:hover .part-img-wrapper img {
    transform: scale(1.12);
}

/* Corpo do card abaixo da imagem */
.part-card-body {
    padding: 1.5rem 1.25rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    flex-grow: 1;
}

.part-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.part-card p {
    color: var(--color-text-muted);
    font-size: 0.85rem;
    margin-bottom: 1.25rem;
    flex-grow: 1;
    line-height: 1.5;
}

.part-card .btn-part {
    width: 100%;
    padding: 0.65rem 1rem;
    font-size: 0.8rem;
    border-radius: var(--border-radius-pill);
    background-color: var(--color-primary);
    border: 1px solid var(--color-primary);
    color: var(--color-text-title);
    font-weight: 600;
    display: inline-block;
    text-align: center;
    transition: var(--transition-normal);
}

.part-card:hover .btn-part {
    background-color: var(--color-primary-hover);
    border-color: var(--color-primary-hover);
}

/* ==========================================================================
   COMO COMPRAR
   ========================================================================== */
.steps-container {
    position: relative;
    margin-top: 3rem;
}

.steps-line {
    position: absolute;
    top: 35px;
    left: 12%;
    width: 76%;
    height: 3px;
    background: linear-gradient(90deg, var(--color-primary) 0%, rgba(216,14,23,0.1) 100%);
    box-shadow: 0 0 8px rgba(216,14,23,0.4);
    z-index: 1;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
    position: relative;
    z-index: 2;
}

.step-card {
    text-align: center;
}

.step-number-box {
    width: 72px;
    height: 72px;
    background-color: var(--color-bg-deep);
    border: 3px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.75rem auto;
    position: relative;
    transition: var(--transition-normal);
}

.step-number {
    font-family: var(--font-headings);
    font-size: 1.85rem;
    font-weight: 900;
    color: var(--color-primary-hover);
}

.step-card:hover .step-number-box {
    border-color: var(--color-primary);
    transform: scale(1.1);
    box-shadow: var(--shadow-neon-hover);
}

.step-card h3 {
    font-size: 1.35rem;
    margin-bottom: 0.85rem;
}

.step-card p {
    color: var(--color-text-muted);
    font-size: 0.95rem;
    padding: 0 0.5rem;
}

/* ==========================================================================
   FAQ
   ========================================================================== */
.faq-container {
    max-width: 850px;
    margin: 0 auto;
}

.faq-item {
    background-color: var(--color-card-bg);
    backdrop-filter: blur(12px);
    border: 1px solid var(--color-card-border);
    border-radius: var(--border-radius-sm);
    margin-bottom: 1.25rem;
    overflow: hidden;
    transition: var(--transition-normal);
}

.faq-item:hover {
    border-color: var(--color-card-border-hover);
}

.faq-header {
    width: 100%;
    padding: 1.75rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-align: left;
    background: none;
}

.faq-question {
    font-family: var(--font-headings);
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--color-text-title);
}

.faq-icon {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.03);
    color: var(--color-primary);
    font-weight: bold;
    font-size: 1.3rem;
    transition: var(--transition-normal);
}

.faq-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-normal);
}

.faq-content {
    padding: 0 2rem 2rem 2rem;
    color: var(--color-text-body);
    font-size: 1rem;
    line-height: 1.6;
    border-top: 1px solid rgba(255, 255, 255, 0.02);
}

/* Classe Ativa do FAQ */
.faq-item.active {
    border-color: var(--color-primary);
    box-shadow: 0 10px 25px rgba(0,0,0,0.4), var(--shadow-neon);
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
    background-color: var(--color-primary);
    color: var(--color-text-title);
}

/* ==========================================================================
   LOCALIZAÇÃO E CONTATO
   ========================================================================== */
.location-grid {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 5rem;
    align-items: start;
}

.contact-info-panel {
    display: flex;
    flex-direction: column;
    gap: 2.25rem;
    background-color: var(--color-card-bg);
    padding: 3rem 2.5rem;
    border-radius: var(--border-radius-md);
    border: 1px solid var(--color-card-border);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.info-block {
    display: flex;
    gap: 1.25rem;
}

.info-icon {
    width: 48px;
    height: 48px;
    background-color: rgba(216, 14, 23, 0.08);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
    font-size: 1.3rem;
    flex-shrink: 0;
}

.info-text h3 {
    font-size: 1.15rem;
    margin-bottom: 0.35rem;
    font-weight: 700;
}

.info-text p, .info-text a {
    color: var(--color-text-body);
    font-size: 0.98rem;
}

.info-text a:hover {
    color: var(--color-primary);
}

.working-hours {
    list-style: none;
    font-size: 0.98rem;
    color: var(--color-text-body);
}

.working-hours li {
    display: flex;
    justify-content: space-between;
    padding: 0.35rem 0;
    border-bottom: 1px dashed rgba(255, 255, 255, 0.05);
}

.map-wrapper {
    width: 100%;
    height: 480px;
    border-radius: var(--border-radius-md);
    overflow: hidden;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.5);
    border: 1px solid var(--color-card-border);
}

.map-iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

/* ==========================================================================
   CTA FINAL DE CONVERSÃO
   ========================================================================== */
.cta-final {
    background: linear-gradient(180deg, var(--color-bg-deep) 0%, #030514 100%);
    position: relative;
    padding: 7rem 0;
    overflow: hidden;
}

.cta-final::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(216, 14, 23, 0.12) 0%, transparent 60%);
    filter: blur(50px);
    pointer-events: none;
}

.cta-content {
    max-width: 750px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    text-align: center;
}

.cta-content h2 {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    letter-spacing: -1px;
}

.cta-content h2 span {
    color: var(--color-primary-hover);
}

.cta-content p {
    font-size: 1.25rem;
    color: var(--color-text-body);
    margin-bottom: 3rem;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.cta-buttons .btn {
    padding: 1.1rem 2.75rem;
    font-size: 1.05rem;
}

/* ==========================================================================
   FOOTER (RODAPÉ NEON)
   ========================================================================== */
.footer {
    background-color: #020204;
    color: var(--color-text-muted);
    padding: 6rem 0 2.5rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.02);
}

.footer-top {
    display: grid;
    grid-template-columns: 1.25fr 0.75fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 5rem;
}

.footer-brand .logo-link {
    margin-bottom: 1.75rem;
}

.footer-desc {
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.75rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.01);
    border: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-text-muted);
    font-size: 1.1rem;
    transition: var(--transition-fast);
}

.social-icon:hover {
    transform: translateY(-4px);
}

.social-icon.social-instagram:hover {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: #ffffff;
    border-color: transparent;
    box-shadow: 0 0 15px rgba(220, 39, 67, 0.4);
}

.social-icon.social-whatsapp:hover {
    background-color: var(--color-whatsapp, #25d366);
    color: #ffffff;
    border-color: var(--color-whatsapp, #25d366);
    box-shadow: 0 0 15px rgba(37, 211, 102, 0.4);
}

.footer-column h3 {
    color: var(--color-text-title);
    font-size: 1.15rem;
    margin-bottom: 1.75rem;
    position: relative;
    padding-bottom: 0.6rem;
    font-weight: 700;
}

.footer-column h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 35px;
    height: 2px;
    background-color: var(--color-primary);
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: var(--color-text-title);
    padding-left: 6px;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    font-size: 0.95rem;
}

.footer-contact-item {
    display: flex;
    gap: 0.85rem;
}

.footer-contact-item svg {
    color: var(--color-primary);
    flex-shrink: 0;
    margin-top: 3px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 2.25rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-legal-links {
    display: flex;
    gap: 1.75rem;
}

.footer-legal-links a:hover {
    color: var(--color-text-title);
}

/* ==========================================================================
   RESPONSIVIDADE (MEDIA QUERIES)
   ========================================================================== */

/* Notebooks / Desktop Menores (1024px) */
@media (max-width: 1024px) {
    .hero h1 {
        font-size: 1.9rem;
    }
    .about-grid, .location-grid {
        gap: 3rem;
    }
    .diff-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .parts-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .footer-top {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }
    .steps-line {
        display: none;
    }
    .steps-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Tablets (768px) */
@media (max-width: 768px) {
    section {
        padding: 5rem 0;
    }
    
    .section-header {
        margin-bottom: 3.5rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    /* Header Mobile */
    .mobile-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background-color: #030615;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        padding-top: 3.5rem;
        gap: 2.25rem;
        transition: var(--transition-normal);
        z-index: 999;
    }
    
    .nav-menu.open {
        left: 0;
    }
    
    .mobile-only-btn {
        display: inline-flex !important;
        width: 80%;
        margin-top: 1rem;
    }
    
    .desktop-only-btn {
        display: none !important;
    }
    
    /* Toggle ativo animation */
    .mobile-toggle.open span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .mobile-toggle.open span:nth-child(2) {
        opacity: 0;
    }
    
    .mobile-toggle.open span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -6px);
    }
    
    /* Hero */
    .hero {
        padding-top: 90px;
        min-height: auto;
        padding-bottom: 6rem;
        background: linear-gradient(180deg, rgba(0, 0, 0, 0.98) 0%, rgba(0, 0, 0, 0.9) 70%, rgba(0, 0, 0, 0.95) 100%), 
                    url('../assets/hero-bg.png') center/cover no-repeat;
    }
    
    .hero-content-wrapper {
        text-align: center;
    }
    
    .hero h1 {
        font-size: 1.65rem;
    }
    
    .hero-desc {
        margin-left: auto;
        margin-right: auto;
        font-size: 1.15rem;
    }
    
    .hero-actions {
        justify-content: center;
    }
    
    .hero-actions .btn {
        width: 100%;
    }
    
    /* Badges */
    .badges-stats-row {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .badges-icons-row {
        flex-wrap: wrap;
        gap: 1.5rem;
    }
    
    /* Sobre Nós */
    .about-grid {
        grid-template-columns: 1fr;
        gap: 3.5rem;
    }
    
    .about-img-box {
        max-width: 450px;
        margin: 0 auto;
    }
    
    /* Diferenciais & Peças */
    .parts-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    /* Localização */
    .location-grid {
        grid-template-columns: 1fr;
        gap: 3.5rem;
    }
    
    .map-wrapper {
        height: 380px;
    }
    
    /* Footer */
    .footer-top {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

/* Celulares (480px) */
@media (max-width: 480px) {
    .hero h1 {
        font-size: 1.35rem;
    }
    
    .badges-stats-row {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .badges-icons-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
        padding: 1rem 0;
    }
    
    .diff-grid {
        grid-template-columns: 1fr;
    }
    
    .parts-grid {
        grid-template-columns: 1fr;
    }
    
    .steps-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
    
    .whatsapp-float {
        bottom: 1.5rem;
        right: 1.5rem;
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
}

/* ==========================================================================
   SOBRE NÓS - INTERAÇÕES DE ZOOM E WHATSAPP (AESTHETIC UPGRADE)
   ========================================================================== */
.about-img-box {
    position: relative;
    border-radius: var(--border-radius-lg, 24px);
    overflow: hidden;
    box-shadow: var(--shadow-dark, 0 16px 40px rgba(0, 0, 0, 0.9)), var(--shadow-neon, 0 0 15px rgba(216, 14, 23, 0.15));
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition-normal);
}

.about-img-box:hover {
    border-color: var(--color-primary, #d80e17);
    box-shadow: var(--shadow-dark), var(--shadow-neon-hover, 0 0 25px rgba(216, 14, 23, 0.45));
}

.about-img-link {
    display: block;
    width: 100%;
    height: 100%;
    position: relative;
    cursor: pointer;
}

.about-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1); /* Zoom ultra-suave */
}

.about-img-box:hover .about-img {
    transform: scale(1.08); /* Zoom sutil e elegante */
}

/* Overlay do WhatsApp */
.about-img-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.3) 50%, rgba(0, 0, 0, 0.1) 100%);
    opacity: 0.8;
    transition: opacity 0.4s ease, background 0.4s ease;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 2rem;
}

.about-img-box:hover .about-img-overlay {
    opacity: 1;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.5) 50%, rgba(0, 0, 0, 0.2) 100%);
}

.about-img-overlay-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    color: #ffffff;
    font-family: var(--font-headings);
    font-weight: 700;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.about-img-box:hover .about-img-overlay-content {
    transform: translateY(-5px);
}

/* Ícone com Efeito Pulse */
.whatsapp-pulse-icon {
    width: 64px;
    height: 64px;
    background-color: var(--color-whatsapp, #25d366);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
    animation: whatsappPulse 2s infinite;
    transition: transform 0.3s ease;
}

.about-img-box:hover .whatsapp-pulse-icon {
    transform: scale(1.1);
    background-color: var(--color-whatsapp-hover, #20ba59);
}

@keyframes whatsappPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    70% {
        box-shadow: 0 0 0 20px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

