/* ==========================================================================
   DESIGN SYSTEM - QUALITY PARTS (SANTA LUZIA - MG)
   Inspirado na identidade visual da logo (Azul Elétrico & Dark Mode)
   e no layout de alta conversão da Top Usadão Auto Peças.
   ========================================================================== */

:root {
    /* Cores Principais */
    --bg-dark: #07090E;
    --bg-surface: #0E121B;
    --bg-card: #131924;
    --bg-card-hover: #192233;
    
    /* Azul Elétrico Logo Quality Parts */
    --blue-primary: #0075FF;
    --blue-hover: #0060D4;
    --blue-light: #3894FF;
    --blue-glow: rgba(0, 117, 255, 0.35);
    --blue-subtle: rgba(0, 117, 255, 0.12);
    
    /* Conversão & Ações */
    --whatsapp-green: #25D366;
    --whatsapp-hover: #1EBE5A;
    --whatsapp-glow: rgba(37, 211, 102, 0.3);

    /* Tipografia & Cores de Texto */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    --text-bright: #FFFFFF;
    --text-body: #CBD5E1;
    --text-muted: #64748B;
    
    /* Bordas & Sombras */
    --border-subtle: rgba(255, 255, 255, 0.08);
    --border-accent: rgba(0, 117, 255, 0.3);
    --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.5);
    --shadow-glow: 0 0 25px rgba(0, 117, 255, 0.25);
    
    /* Transições & Raio de Borda */
    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 20px;
    --radius-full: 9999px;
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

body {
    background-color: var(--bg-dark);
    color: var(--text-body);
    font-family: var(--font-body);
    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: color var(--transition-fast);
}

/* Layout Utilities */
.container {
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(0, 117, 255, 0.12);
    border: 1px solid rgba(0, 117, 255, 0.25);
    color: var(--blue-light);
    font-size: 0.78rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 5px 14px;
    border-radius: var(--radius-full);
    margin: 0 auto 12px auto;
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(1.75rem, 3.8vw, 2.25rem);
    font-weight: 700;
    color: #FFFFFF;
    line-height: 1.2;
    margin-bottom: 12px;
    text-align: center;
}

.section-subtitle {
    font-family: var(--font-body);
    font-size: 1rem;
    color: #94A3B8;
    line-height: 1.6;
    max-width: 580px;
    margin: 0 auto 36px auto;
    text-align: center;
}

/* Botões */
.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    background: linear-gradient(135deg, var(--whatsapp-green), #1fad55);
    color: #FFFFFF;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.05rem;
    padding: 0.9rem 1.75rem;
    border-radius: var(--radius-md);
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 20px var(--whatsapp-glow);
    transition: all var(--transition-normal);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 28px var(--whatsapp-glow);
    background: linear-gradient(135deg, #28e06e, var(--whatsapp-green));
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: var(--bg-card);
    color: var(--text-bright);
    border: 1px solid var(--border-accent);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1rem;
    padding: 0.85rem 1.6rem;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all var(--transition-normal);
}

.btn-secondary:hover {
    background: var(--blue-subtle);
    border-color: var(--blue-light);
    color: var(--blue-light);
}

/* HEADER & NAV */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(7, 9, 14, 0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border-subtle);
    padding: 0.85rem 0;
    transition: background var(--transition-normal);
}

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

.header-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.header-logo img {
    height: 44px;
    width: auto;
    border-radius: 6px;
}

.header-logo-text {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--text-bright);
    letter-spacing: -0.02em;
}

.header-logo-text span {
    color: var(--blue-primary);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 1.75rem;
}

.nav-links a {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-body);
}

.nav-links a:hover {
    color: var(--blue-light);
}

.nav-cta {
    background: var(--blue-primary) !important;
    color: #FFFFFF !important;
    font-family: var(--font-heading);
    font-weight: 700 !important;
    padding: 0.6rem 1.25rem;
    border-radius: var(--radius-full);
    box-shadow: 0 4px 15px var(--blue-glow);
    transition: all var(--transition-normal) !important;
}

.nav-cta:hover {
    background: var(--blue-hover) !important;
    transform: translateY(-1px);
    box-shadow: 0 6px 20px var(--blue-glow);
}

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
    padding: 5px;
}

.mobile-toggle span {
    width: 24px;
    height: 2px;
    background-color: var(--text-bright);
    transition: all var(--transition-fast);
}

/* HERO SECTION */
.hero {
    position: relative;
    padding: 10rem 0 5rem 0;
    min-height: 85vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: right center;
    filter: brightness(0.7) contrast(1.05);
}

.hero-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        rgba(7, 9, 14, 0.95) 0%, 
        rgba(7, 9, 14, 0.85) 50%,
        rgba(7, 9, 14, 0.45) 100%);
    z-index: -1;
}

.hero-glow-1 {
    position: absolute;
    top: 20%;
    left: -10%;
    width: 450px;
    height: 450px;
    background: radial-gradient(circle, rgba(0, 117, 255, 0.25) 0%, rgba(0,0,0,0) 70%);
    z-index: -1;
    pointer-events: none;
}

.hero-glow-2 {
    position: absolute;
    bottom: 10%;
    right: -5%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(37, 211, 102, 0.15) 0%, rgba(0,0,0,0) 70%);
    z-index: -1;
    pointer-events: none;
}

.hero-content {
    max-width: 720px;
    margin: 0;
    text-align: left;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(0, 117, 255, 0.15);
    border: 1px solid var(--border-accent);
    color: var(--blue-light);
    padding: 0.4rem 1.1rem;
    border-radius: var(--radius-full);
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.hero h1 {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 5.5vw, 3.4rem);
    font-weight: 700;
    color: var(--text-bright);
    line-height: 1.15;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
    text-align: left;
}

.hero h1 .highlight {
    background: linear-gradient(135deg, var(--blue-light), #60A5FA);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-description {
    font-size: 1.15rem;
    color: #94A3B8;
    margin-bottom: 2.25rem;
    line-height: 1.7;
    max-width: 580px;
    text-align: left;
}

.hero-actions {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 1.25rem;
    flex-wrap: wrap;
    margin-bottom: 3.5rem;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    background: rgba(7, 9, 14, 0.65);
    backdrop-filter: blur(12px);
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    padding: 1.5rem 1rem;
    margin-top: 2.5rem;
    width: 100%;
}

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

.hero-stat h3 {
    font-family: var(--font-heading);
    font-size: 1.85rem;
    font-weight: 900;
    color: var(--blue-light);
    line-height: 1.15;
    margin-bottom: 0.35rem;
    letter-spacing: -0.01em;
}

.hero-stat p {
    font-size: 0.9rem;
    color: #94A3B8;
    font-weight: 500;
}

/* TRUST BAR */
.trust-bar {
    background: var(--bg-surface);
    border-top: 1px solid var(--border-subtle);
    border-bottom: 1px solid var(--border-subtle);
    padding: 1.5rem 0;
}

.trust-items {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    color: var(--text-bright);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.98rem;
}

.trust-item svg {
    color: var(--blue-light);
    flex-shrink: 0;
}

/* SOBRE NÓS SECTION */
.about {
    padding: 6rem 0;
    background: var(--bg-dark);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-image {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border-accent);
    box-shadow: var(--shadow-glow);
    cursor: pointer;
    transition: all var(--transition-normal);
}

.about-image img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    display: block;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.about-image:hover img {
    transform: scale(1.07);
}

.about-image:hover {
    border-color: var(--blue-primary);
    box-shadow: 0 12px 35px rgba(37, 99, 235, 0.35);
}

.about-content h2 {
    margin-bottom: 1.25rem;
}

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

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

.about-feature {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    background: var(--bg-surface);
    padding: 0.85rem 0.9rem;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-subtle);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-bright);
    min-height: 58px;
    height: 100%;
    box-sizing: border-box;
}

.about-feature svg {
    color: var(--blue-light);
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

/* DIFERENCIAIS SECTION */
.features {
    padding: 4.5rem 0;
    background: var(--bg-surface);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.25rem;
}

.feature-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    padding: 1.35rem 1.25rem;
    border-radius: var(--radius-md);
    transition: all var(--transition-normal);
}

.feature-card:hover {
    transform: translateY(-4px);
    background: var(--bg-card-hover);
    border-color: var(--border-accent);
    box-shadow: var(--shadow-glow);
}

.feature-icon {
    width: 42px;
    height: 42px;
    background: var(--blue-subtle);
    border: 1px solid var(--border-accent);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--blue-light);
    margin-bottom: 0.85rem;
}

.feature-icon svg {
    width: 20px;
    height: 20px;
}

.feature-card h3 {
    font-family: var(--font-heading);
    font-size: 1.02rem;
    font-weight: 600;
    color: #FFFFFF;
    margin-bottom: 6px;
}

.feature-card p {
    font-family: var(--font-body);
    font-size: 0.85rem;
    color: #94A3B8;
    line-height: 1.5;
}

/* CATEGORIAS / PEÇAS SECTION */
.categories {
    padding: 6rem 0;
    background: var(--bg-dark);
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
    gap: 1.75rem;
}

.category-card {
    background: var(--bg-surface);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    overflow: hidden;
    cursor: pointer;
    transition: all var(--transition-normal);
    display: flex;
    flex-direction: column;
}

.category-card:hover {
    transform: translateY(-6px);
    border-color: var(--blue-primary);
    box-shadow: var(--shadow-glow);
}

.category-img {
    height: 200px;
    overflow: hidden;
    position: relative;
}

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

.category-card:hover .category-img img {
    transform: scale(1.08);
}

.category-card h3 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-bright);
    padding: 1.25rem 1.25rem 0.5rem 1.25rem;
}

.category-card p {
    font-size: 0.92rem;
    color: var(--text-body);
    padding: 0 1.25rem 1.25rem 1.25rem;
    flex-grow: 1;
}

.category-btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.25rem;
    background: rgba(0, 117, 255, 0.08);
    border-top: 1px solid var(--border-subtle);
    color: var(--blue-light);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.92rem;
    transition: background var(--transition-fast);
}

.category-card:hover .category-btn {
    background: var(--blue-primary);
    color: #FFFFFF;
}

/* COMO FUNCIONA SECTION */
.how-it-works {
    padding: 6rem 0;
    background: var(--bg-surface);
}

.how-it-works-header {
    text-align: center;
    max-width: 650px;
    margin: 0 auto 3.5rem auto;
}

.steps-grid {
    position: relative;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.75rem;
    padding: 1.5rem 0;
}

/* Linha conectora horizontal contínua */
.steps-grid::before {
    content: '';
    position: absolute;
    top: 55px;
    left: 8%;
    right: 8%;
    height: 2px;
    background: linear-gradient(90deg, 
        rgba(37, 99, 235, 0.15) 0%, 
        rgba(59, 130, 246, 0.85) 50%, 
        rgba(37, 99, 235, 0.15) 100%);
    box-shadow: 0 0 10px rgba(59, 130, 246, 0.5);
    z-index: 0;
}

.step-card {
    background: transparent;
    border: 1px solid transparent;
    padding: 2rem 1rem;
    border-radius: var(--radius-lg);
    position: relative;
    z-index: 1;
    text-align: center;
    overflow: hidden;
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    cursor: default;
}

/* Luz de foco (Spotlight effect) que APARECE APENAS ao passar o mouse */
.step-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(
        320px circle at var(--mouse-x, 50%) var(--mouse-y, 50%),
        rgba(59, 130, 246, 0.3),
        transparent 70%
    );
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
    z-index: 1;
}

.step-card:hover::after {
    opacity: 1;
}

.step-card:hover {
    transform: translateY(-5px);
    background: rgba(19, 25, 36, 0.6);
    border-color: rgba(59, 130, 246, 0.4);
    box-shadow: 0 10px 30px rgba(37, 99, 235, 0.2);
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #1D4ED8 0%, #2563EB 50%, #3B82F6 100%);
    color: #FFFFFF;
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 1.5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem auto;
    box-shadow: 0 0 25px rgba(37, 99, 235, 0.75), 0 0 10px rgba(59, 130, 246, 0.9);
    border: 3px solid #3B82F6;
    position: relative;
    z-index: 2;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.step-card:hover .step-number {
    transform: scale(1.12);
    box-shadow: 0 0 35px rgba(59, 130, 246, 1), 0 0 20px rgba(96, 165, 250, 1);
}

.step-card h3 {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 600;
    color: #FFFFFF;
    margin-bottom: 8px;
    position: relative;
    z-index: 2;
}

.step-card p {
    font-family: var(--font-body);
    font-size: 0.85rem;
    color: #94A3B8;
    line-height: 1.5;
    position: relative;
    z-index: 2;
}

/* FAQ SECTION */
.faq {
    padding: 5rem 0;
    background: var(--bg-dark);
    text-align: center;
}

.faq-list {
    max-width: 780px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    text-align: left;
}

.faq-item {
    background: var(--bg-surface);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: border-color var(--transition-fast);
}

.faq-item.active {
    border-color: var(--border-accent);
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 1.25rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #FFFFFF;
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 1rem;
    text-align: left;
    cursor: pointer;
    gap: 1rem;
}

.faq-question svg {
    color: var(--blue-light);
    transition: transform var(--transition-normal);
    flex-shrink: 0;
}

.faq-item.active .faq-question svg {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease-out;
}

.faq-answer-content {
    padding: 0 1.5rem 1.5rem 1.5rem;
    color: #D9E2EC;
    font-family: var(--font-body);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* LOCALIZAÇÃO SECTION */
.location {
    padding: 6rem 0;
    background: var(--bg-surface);
}

.location-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 2.5rem;
    align-items: stretch;
}

.location-map {
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border-subtle);
    min-height: 400px;
}

.location-map iframe {
    width: 100%;
    height: 100%;
    min-height: 400px;
    border: none;
}

.location-info {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    padding: 2.5rem;
    border-radius: var(--radius-lg);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.location-item {
    display: flex;
    gap: 1.25rem;
    margin-bottom: 2rem;
}

.location-item-icon {
    width: 48px;
    height: 48px;
    background: var(--blue-subtle);
    border: 1px solid var(--border-accent);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--blue-light);
    flex-shrink: 0;
}

.location-item-icon svg {
    width: 24px;
    height: 24px;
}

.location-item h4 {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text-bright);
    margin-bottom: 0.35rem;
}

.location-item p {
    color: var(--text-body);
    font-size: 0.98rem;
}

/* PRE-FOOTER CTA */
.cta {
    padding: 5rem 0;
    background: var(--bg-dark);
}

.cta-box {
    background: linear-gradient(135deg, rgba(0, 117, 255, 0.12), rgba(37, 211, 102, 0.08));
    border: 1px solid var(--border-accent);
    padding: 3.5rem 2rem;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-glow);
}

.cta-box h2 {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 3.5vw, 2.75rem);
    font-weight: 800;
    color: var(--text-bright);
    margin-bottom: 1rem;
}

.cta-box p {
    font-size: 1.15rem;
    color: var(--text-body);
    max-width: 650px;
    margin: 0 auto 1.5rem auto;
}

.cta-subtitle {
    display: block;
    font-family: var(--font-heading);
    font-weight: 800;
    color: var(--blue-light);
    letter-spacing: 0.05em;
    font-size: 0.9rem;
    margin-bottom: 2rem;
}

.cta-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.25rem;
    flex-wrap: wrap;
}

.btn-whatsapp-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: var(--whatsapp-green);
    color: #FFFFFF;
    font-family: var(--font-heading);
    font-weight: 700;
    padding: 0.9rem 2rem;
    border-radius: var(--radius-full);
    box-shadow: 0 4px 20px var(--whatsapp-glow);
}

.btn-whatsapp-pill:hover {
    background: var(--whatsapp-hover);
    transform: translateY(-2px);
}

.btn-phone-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: var(--bg-card);
    color: var(--text-bright);
    border: 1px solid var(--border-subtle);
    font-family: var(--font-heading);
    font-weight: 700;
    padding: 0.9rem 2rem;
    border-radius: var(--radius-full);
}

.btn-phone-pill:hover {
    border-color: var(--blue-light);
    color: var(--blue-light);
}

/* FOOTER */
.footer {
    background: #040508;
    border-top: 1px solid var(--border-subtle);
    padding: 4.5rem 0 2rem 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2.2fr 1fr 1fr 1.5fr;
    gap: 3rem;
    margin-bottom: 3.5rem;
}

.footer-brand img {
    height: 48px;
    margin-bottom: 1.25rem;
    border-radius: 6px;
}

.footer-brand p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

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

.footer-social a {
    width: 44px;
    height: 44px;
    background: var(--bg-surface);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-body);
    position: relative;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.footer-social a svg {
    position: relative;
    z-index: 2;
    transition: transform 0.3s ease;
}

.footer-social a:hover svg {
    transform: scale(1.12);
}

/* Lanterna de foco do Instagram (Rosa/Roxo/Laranja) */
.footer-social a.social-instagram::after,
a.social-instagram::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(
        60px circle at var(--mouse-x, 50%) var(--mouse-y, 50%),
        rgba(255, 255, 255, 0.45) 0%,
        rgba(225, 48, 108, 0.8) 40%,
        transparent 75%
    );
    opacity: 0;
    transition: opacity 0.25s ease;
    pointer-events: none;
    z-index: 1;
}

.footer-social a.social-instagram:hover,
a.social-instagram:hover {
    background: linear-gradient(135deg, #833AB4 0%, #E1306C 50%, #F77737 100%);
    border-color: #E1306C;
    color: #FFFFFF;
    box-shadow: 0 0 22px rgba(225, 48, 108, 0.75), 0 0 10px rgba(247, 119, 55, 0.6);
    transform: translateY(-3px) scale(1.08);
}

.footer-social a.social-instagram:hover::after,
a.social-instagram:hover::after {
    opacity: 1;
}

/* Lanterna de foco do WhatsApp (Verde WhatsApp) */
.footer-social a.social-whatsapp::after,
a.social-whatsapp::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(
        60px circle at var(--mouse-x, 50%) var(--mouse-y, 50%),
        rgba(255, 255, 255, 0.45) 0%,
        rgba(37, 211, 102, 0.8) 40%,
        transparent 75%
    );
    opacity: 0;
    transition: opacity 0.25s ease;
    pointer-events: none;
    z-index: 1;
}

.footer-social a.social-whatsapp:hover,
a.social-whatsapp:hover {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    border-color: #25D366;
    color: #FFFFFF;
    box-shadow: 0 0 22px rgba(37, 211, 102, 0.8), 0 0 10px rgba(18, 140, 126, 0.6);
    transform: translateY(-3px) scale(1.08);
}

.footer-social a.social-whatsapp:hover::after,
a.social-whatsapp:hover::after {
    opacity: 1;
}

.footer-col h4 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-bright);
    margin-bottom: 1.25rem;
}

.footer-col a {
    display: block;
    color: var(--text-body);
    font-size: 0.92rem;
    margin-bottom: 0.75rem;
}

.footer-col a:hover {
    color: var(--blue-light);
}

.footer-bottom {
    border-top: 1px solid var(--border-subtle);
    padding-top: 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
    font-size: 0.88rem;
    color: var(--text-muted);
}

.footer-bottom-right {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.footer-bottom-links {
    display: flex;
    gap: 1.5rem;
}

.local-request-tag {
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--text-muted);
    opacity: 0.6;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

/* ==========================================================================
   MODAL LOCAL REQUEST™ - PRÉ-ATENDIMENTO INTELIGENTE (DARK LAYOUT REFINADO)
   ========================================================================== */

.local-request-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    background: rgba(4, 6, 12, 0.75);
    backdrop-filter: blur(8px);
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--transition-normal);
    padding: 1rem 2rem 1rem 1rem;
}

.local-request-modal.active {
    opacity: 1;
    pointer-events: all;
}

.modal-content {
    background: #0B0F17;
    color: #FFFFFF;
    width: 100%;
    max-width: 360px;
    border-radius: 12px;
    padding: 0.85rem 1rem 0.6rem 1rem;
    position: relative;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.9);
    border: 1px solid #1E293B;
    transform: translateY(20px);
    transition: transform var(--transition-normal);
}

.local-request-modal.active .modal-content {
    transform: translateY(0);
}

.modal-close {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    background: #1E293B;
    border: none;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #94A3B8;
    font-size: 0.95rem;
    transition: all var(--transition-fast);
}

.modal-close:hover {
    background: #334155;
    color: #FFFFFF;
}

.modal-header {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    text-align: left;
    margin-bottom: 0.6rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid #1E293B;
}

.modal-header img {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--blue-primary);
}

.modal-header-info {
    display: flex;
    flex-direction: column;
}

.modal-company-name {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.1rem;
    color: #FFFFFF;
    line-height: 1.15;
}

.modal-company-subtitle {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--blue-light);
}

/* Indicador de progresso */
.modal-indicator {
    margin-bottom: 0.75rem;
}

.modal-indicator-text {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--blue-light);
    margin-bottom: 0.3rem;
}

.indicator-label {
    color: var(--blue-light);
}

.indicator-step {
    color: var(--blue-light);
}

.modal-progress-bar {
    width: 100%;
    height: 4px;
    background: #1E293B;
    border-radius: 2px;
    overflow: hidden;
}

.modal-progress-fill {
    height: 100%;
    width: 33%;
    background: linear-gradient(90deg, var(--blue-primary) 0%, var(--blue-light) 100%);
    border-radius: 2px;
    transition: width 0.3s ease;
}

.modal-title {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 800;
    color: #FFFFFF;
    margin-bottom: 0.1rem;
    text-align: left;
}

.modal-subtitle {
    font-size: 0.78rem;
    color: #94A3B8;
    text-align: left;
    margin-bottom: 0.75rem;
}

.modal-form {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.form-group label {
    font-size: 0.78rem;
    font-weight: 700;
    color: #F8FAFC;
    display: flex;
    align-items: center;
    gap: 0.35rem;
}

.form-group label svg {
    color: var(--blue-light);
}

.form-group input {
    width: 100%;
    padding: 0.55rem 0.75rem;
    border: 1px solid #1E293B;
    border-radius: 6px;
    font-size: 0.85rem;
    font-family: var(--font-body);
    color: #FFFFFF;
    background: #131924;
    transition: all var(--transition-fast);
}

.form-group input::placeholder {
    color: #64748B;
}

.form-group input:focus {
    outline: none;
    border-color: var(--blue-primary);
    background: #161E2E;
    box-shadow: 0 0 0 3px var(--blue-glow);
}

.form-group input.error {
    border-color: #EF4444;
    background: rgba(239, 68, 68, 0.1);
}

.btn-modal-submit {
    width: 100%;
    background: #22C55E;
    color: #FFFFFF;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 0.76rem;
    padding: 0.68rem 0.4rem;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    margin-top: 0.35rem;
    box-shadow: 0 4px 15px rgba(34, 197, 94, 0.3);
    transition: all var(--transition-fast);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.35rem;
    text-transform: uppercase;
    letter-spacing: 0.01em;
    white-space: nowrap;
}

.btn-modal-submit:hover {
    background: #16A34A;
    box-shadow: 0 6px 20px rgba(34, 197, 94, 0.45);
}

.modal-value-prop-box {
    background: rgba(6, 78, 59, 0.25);
    border: 1px solid rgba(34, 197, 94, 0.3);
    border-radius: 8px;
    padding: 0.7rem 0.85rem;
    margin-top: 0.85rem;
    display: flex;
    align-items: center;
    gap: 0.65rem;
}

.value-prop-check {
    width: 20px;
    height: 20px;
    min-width: 20px;
    border-radius: 50%;
    background: #22C55E;
    color: #0D121D;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-value-prop-box span {
    font-size: 0.8rem;
    color: #E2E8F0;
    line-height: 1.35;
    font-weight: 500;
}

.modal-footer-tag {
    text-align: right;
    font-size: 0.68rem;
    color: #64748B;
    margin-top: 0.6rem;
    letter-spacing: 0.04em;
    font-weight: 600;
}

/* RESPONSIVIDADE MOBILE */
@media (max-width: 992px) {
    .local-request-modal {
        justify-content: center;
        padding: 1rem;
    }

    .about-grid, .location-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .mobile-toggle {
        display: flex;
    }

    .hero {
        padding-top: 7rem;
    }

    .hero-stats {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .footer-bottom-right {
        flex-direction: column;
        gap: 0.75rem;
        align-items: center;
    }
}

/* FLOATING WHATSAPP BUTTON */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #25D366;
    color: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4), 0 0 20px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: all 0.3s ease;
    animation: floatWhatsApp 3s ease-in-out infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1) translateY(-3px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.6), 0 0 30px rgba(37, 211, 102, 0.7);
    color: #FFFFFF;
}

.whatsapp-float svg {
    width: 32px;
    height: 32px;
    fill: currentColor;
}

@keyframes floatWhatsApp {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-8px);
    }
}
