/* ==========================================================================
   Mineiro Peças Muriaé - Design System & Stylesheet
   Layout: A Casa do Latoeiro (Pills, Glassmorphism, Radiants, Grid)
   Colorimetria Oficial da Logo: Laranja Elétrico (#FF5500), Carbono (#0B0C10) & Branco (#FFFFFF)
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. Variáveis Globais & Reset (Cores da Logo do Mineiro Peças)
   -------------------------------------------------------------------------- */
:root {
    /* Color Palette (Logo Mineiro Peças) */
    --primary: #FF5500;
    --primary-hover: #E04B00;
    --primary-light: rgba(255, 85, 0, 0.12);
    --primary-glow: rgba(255, 85, 0, 0.35);
    --cyan-highlight: #FF7722;
    
    --bg-dark: #0B0C10;
    --bg-card: #12141D;
    --bg-card-hover: #1A1D2B;
    --bg-header: rgba(11, 12, 16, 0.9);
    
    --text-main: #FFFFFF;
    --text-muted: #94A3B8;
    --text-heading: #F8FAFC;
    
    --border-color: rgba(255, 255, 255, 0.08);
    --border-glow: rgba(255, 85, 0, 0.3);
    
    --whatsapp-green: #25D366;
    
    /* Typography */
    --font-heading: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    
    /* Layout (Idêntico ao A Casa do Latoeiro) */
    --max-width: 1240px;
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-full: 9999px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

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

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

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

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

/* --------------------------------------------------------------------------
   2. Componentes Globais & Utilitários
   -------------------------------------------------------------------------- */
.section-tag {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.4rem 1.2rem;
    background: var(--primary-light);
    border: 1px solid var(--border-glow);
    border-radius: var(--radius-full);
    color: var(--primary);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin: 0 auto 0.75rem auto;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-heading);
    line-height: 1.2;
    margin-bottom: 1rem;
    text-align: center;
}

.section-subtitle {
    color: var(--text-muted);
    font-size: 1.1rem;
    max-width: 680px;
    margin: 0 auto 3rem auto;
    text-align: center;
}

/* Alinhamento dos cabeçalhos das seções */
.features, .categories, .how-it-works, .faq, .location {
    text-align: center;
}

.features-grid, .categories-grid, .steps-grid, .faq-list, .location-grid {
    text-align: left;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    background: linear-gradient(135deg, var(--primary) 0%, #E04B00 100%);
    color: #FFFFFF;
    font-weight: 700;
    font-size: 1rem;
    padding: 0.9rem 2rem;
    border-radius: var(--radius-full);
    box-shadow: 0 4px 20px var(--primary-glow);
    transition: var(--transition);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(255, 85, 0, 0.5);
    background: linear-gradient(135deg, #FF6611 0%, #F05500 100%);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: var(--text-main);
    font-weight: 600;
    font-size: 1rem;
    padding: 0.9rem 2rem;
    border-radius: var(--radius-full);
    transition: var(--transition);
}

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

/* --------------------------------------------------------------------------
   3. Header / Navegação
   -------------------------------------------------------------------------- */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    background: rgba(11, 12, 16, 0.4);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition);
    padding: 0.85rem 0;
}

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

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

.header-logo img {
    height: 56px;
    width: auto;
    object-fit: contain;
    mix-blend-mode: screen;
    filter: brightness(1.1);
}

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

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

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

.nav-links a {
    color: #FFFFFF;
    font-weight: 500;
    font-size: 0.95rem;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}

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

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

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

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

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

/* --------------------------------------------------------------------------
   4. Hero Section (Layout A Casa do Latoeiro com Cores da Logo)
   -------------------------------------------------------------------------- */
.hero {
    position: relative;
    padding-top: 10rem;
    padding-bottom: 2.5rem;
    overflow: hidden;
    background: #0B0C10;
}

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

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    opacity: 0.4;
    filter: brightness(0.85) contrast(1.1);
}

.hero-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(11, 12, 16, 0.55) 0%, rgba(11, 12, 16, 0.88) 100%),
                radial-gradient(circle at 50% 30%, rgba(255, 85, 0, 0.2) 0%, rgba(11, 12, 16, 0) 70%);
    z-index: 2;
}

.hero-glow-1 {
    position: absolute;
    top: -10%;
    right: 15%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 85, 0, 0.25) 0%, rgba(0, 0, 0, 0) 70%);
    pointer-events: none;
    filter: blur(60px);
    z-index: 2;
}

.hero-glow-2 {
    position: absolute;
    bottom: -10%;
    left: 10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 119, 34, 0.15) 0%, rgba(0, 0, 0, 0) 70%);
    pointer-events: none;
    filter: blur(50px);
    z-index: 2;
}

.hero .container {
    position: relative;
    z-index: 3;
}

.hero-content {
    max-width: 840px;
    margin: 0 auto;
    text-align: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.45rem 1.25rem;
    background: rgba(255, 85, 0, 0.12);
    border: 1px solid rgba(255, 85, 0, 0.35);
    border-radius: var(--radius-full);
    color: var(--cyan-highlight);
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.hero h1 {
    font-family: var(--font-heading);
    font-size: 3.6rem;
    font-weight: 800;
    line-height: 1.15;
    color: var(--text-heading);
    margin-bottom: 1.25rem;
    letter-spacing: -0.03em;
    text-shadow: 0 4px 18px rgba(0, 0, 0, 0.7);
}

.hero h1 .highlight {
    background: linear-gradient(135deg, #FF8833 0%, #FF5500 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-description {
    font-size: 1.2rem;
    color: #E2E8F0;
    line-height: 1.6;
    margin-bottom: 2.5rem;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.8);
}

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

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    max-width: 750px;
    margin: 4.5rem auto 0 auto;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    align-items: center;
    justify-content: center;
}

.hero-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: transparent;
    border: none;
    padding: 0.25rem 0.5rem;
    transition: var(--transition);
}

.hero-stat:hover {
    transform: translateY(-2px);
}

.hero-stat h3 {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1.15;
    margin-bottom: 0.2rem;
    letter-spacing: -0.01em;
}

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

/* --------------------------------------------------------------------------
   5. Trust Bar (Faixa Escura Inferior Empilhada)
   -------------------------------------------------------------------------- */
.trust-bar {
    background: #04060A;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding: 1.35rem 0;
}

.trust-items {
    display: flex;
    align-items: center;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #CBD5E1;
    font-weight: 600;
    font-size: 0.95rem;
}

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

/* --------------------------------------------------------------------------
   6. Sobre Nós Section
   -------------------------------------------------------------------------- */
.about {
    padding: 6rem 0;
    position: relative;
}

.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-color);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    max-width: 580px;
    height: 440px;
    width: 100%;
    margin: 0 auto;
    cursor: pointer;
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.about-image-badge {
    position: absolute;
    bottom: 1.5rem;
    right: 1.5rem;
    background: rgba(11, 12, 16, 0.92);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.18);
    padding: 0.75rem 1.6rem;
    border-radius: var(--radius-full);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
    transition: var(--transition);
}

.about-image-badge:hover {
    background: rgba(18, 20, 29, 0.98);
    border-color: var(--primary);
    transform: translateY(-2px);
}

.about-image-badge a {
    color: #FFFFFF;
    font-weight: 700;
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.about-content h2 {
    font-family: var(--font-heading);
    font-size: 2.4rem;
    font-weight: 700;
    margin-bottom: 1.25rem;
}

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

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

.about-feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    padding: 1rem 1.15rem;
    border-radius: var(--radius-md);
    font-size: 0.95rem;
    font-weight: 600;
    min-height: 56px;
    height: 100%;
    transition: var(--transition);
}

.about-feature:hover {
    border-color: var(--border-glow);
    transform: translateY(-2px);
}

.about-feature svg {
    color: var(--primary);
    width: 22px;
    height: 22px;
    flex-shrink: 0;
}

/* --------------------------------------------------------------------------
   7. Diferenciais Section
   -------------------------------------------------------------------------- */
.features {
    padding: 4.5rem 0;
    background: #090A0E;
    position: relative;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}

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

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

.feature-icon {
    width: 42px;
    height: 42px;
    background: var(--primary-light);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    margin-bottom: 1rem;
}

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

.feature-card h3 {
    font-family: var(--font-heading);
    font-size: 1.12rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-heading);
}

.feature-card p {
    color: var(--text-muted);
    font-size: 0.88rem;
    line-height: 1.5;
}

/* --------------------------------------------------------------------------
   8. Categorias em Destaque Section
   -------------------------------------------------------------------------- */
.categories {
    padding: 6rem 0;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.category-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    overflow: hidden;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.category-card:hover {
    border-color: var(--border-glow);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.category-img {
    height: 180px;
    width: 100%;
    overflow: hidden;
    position: relative;
}

.category-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

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

.category-info {
    padding: 1.25rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.category-card h3 {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text-heading);
    margin-bottom: 0.5rem;
}

.category-card p {
    color: var(--text-muted);
    font-size: 0.88rem;
    margin-bottom: 1.25rem;
    flex-grow: 1;
}

.category-btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: var(--primary);
    font-weight: 700;
    font-size: 0.9rem;
    padding-top: 0.75rem;
    border-top: 1px solid var(--border-color);
}

/* --------------------------------------------------------------------------
   9. Como Funciona Section (Timeline Horizontal A Casa do Latoeiro)
   -------------------------------------------------------------------------- */
.how-it-works {
    padding: 6rem 0;
    background: #08090C;
    position: relative;
}

.timeline-wrapper {
    position: relative;
    margin-top: 4rem;
}

.timeline-line {
    position: absolute;
    top: 25px;
    left: 12%;
    width: 76%;
    height: 2px;
    background: linear-gradient(90deg, rgba(255, 85, 0, 0.15) 0%, rgba(255, 85, 0, 0.6) 50%, rgba(255, 85, 0, 0.15) 100%);
    z-index: 1;
}

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

.step-card {
    background: transparent;
    border: none;
    padding: 0 0.5rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.step-number {
    width: 52px;
    height: 52px;
    background: linear-gradient(135deg, var(--primary) 0%, #E04B00 100%);
    color: #FFFFFF;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.3rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.75rem;
    box-shadow: 0 0 25px var(--primary-glow), 0 0 10px rgba(255, 85, 0, 0.5);
    border: 2px solid rgba(255, 255, 255, 0.25);
    transition: var(--transition);
}

.step-card:hover .step-number {
    transform: scale(1.12);
    box-shadow: 0 0 35px var(--primary-glow), 0 0 15px rgba(255, 85, 0, 0.8);
}

.step-card h3 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--text-heading);
    margin-bottom: 0.75rem;
    line-height: 1.25;
}

.step-card p {
    color: var(--text-muted);
    font-size: 0.92rem;
    line-height: 1.55;
}

/* --------------------------------------------------------------------------
   10. FAQ Section
   -------------------------------------------------------------------------- */
.faq {
    padding: 6rem 0;
}

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

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

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

.faq-question {
    width: 100%;
    padding: 1.35rem 1.5rem;
    background: transparent;
    color: var(--text-heading);
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    text-align: left;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.faq-question svg {
    transition: var(--transition);
    color: var(--primary);
    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.35rem 1.5rem;
    color: var(--text-muted);
    font-size: 0.98rem;
    line-height: 1.6;
}

/* --------------------------------------------------------------------------
   11. Localização / Contato Section
   -------------------------------------------------------------------------- */
.location {
    padding: 6rem 0;
    background: #08090C;
}

.location-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 3rem;
    align-items: center;
}

.location-map {
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border-color);
    height: 420px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

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

.location-info {
    display: flex;
    flex-direction: column;
    gap: 1.75rem;
}

.location-item {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
}

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

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

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

/* --------------------------------------------------------------------------
   12. Pre-Footer CTA Section
   -------------------------------------------------------------------------- */
.cta {
    padding: 5rem 0;
}

.cta-box {
    background: radial-gradient(circle at 50% 50%, rgba(255, 85, 0, 0.25) 0%, rgba(18, 20, 29, 1) 90%);
    border: 1px solid var(--border-glow);
    border-radius: var(--radius-lg);
    padding: 4rem 2rem;
    text-align: center;
    box-shadow: 0 20px 50px rgba(255, 85, 0, 0.15);
}

.cta-subtitle {
    color: var(--primary);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 0.9rem;
}

.cta-box h2 {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    font-weight: 800;
    margin: 0.75rem 0 1rem 0;
}

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

/* --------------------------------------------------------------------------
   13. Footer
   -------------------------------------------------------------------------- */
.footer {
    background: #050608;
    border-top: 1px solid var(--border-color);
    padding: 5rem 0 2rem 0;
}

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

.footer-brand img {
    height: 70px;
    max-width: 260px;
    width: auto;
    object-fit: contain;
    margin-bottom: 1.25rem;
    filter: brightness(1.1);
    mix-blend-mode: screen;
}

.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: rgba(255, 255, 255, 0.06);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-main);
    transition: var(--transition);
}

.footer-social a.social-instagram:hover {
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
    color: #FFFFFF;
    border-color: #d6249f;
    box-shadow: 0 6px 20px rgba(214, 36, 159, 0.45);
    transform: translateY(-2px);
}

.footer-social a.social-whatsapp:hover {
    background: #25D366;
    color: #FFFFFF;
    border-color: #25D366;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.45);
    transform: translateY(-2px);
}

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

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

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

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

.footer-legal-links {
    display: flex;
    align-items: center;
    gap: 0.85rem;
}

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

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

.legal-divider {
    color: var(--border-color);
}

/* --------------------------------------------------------------------------
   14. Botão Flutuante WhatsApp
   -------------------------------------------------------------------------- */
.whatsapp-float {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 62px;
    height: 62px;
    background: var(--whatsapp-green);
    color: #FFFFFF;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
    z-index: 90;
    transition: var(--transition);
    animation: pulseWhatsapp 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 12px 35px rgba(37, 211, 102, 0.6);
}

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

/* --------------------------------------------------------------------------
   15. Componente Local Request™ Modal (Fiel à Imagem de Referência)
   -------------------------------------------------------------------------- */
.lr-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(5, 6, 9, 0.5);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    z-index: 1000;
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    padding: 1.25rem;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

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

.lr-modal-container {
    background: #FFFFFF;
    color: #1E293B;
    width: 100%;
    max-width: 320px;
    border-radius: 18px;
    padding: 1.15rem;
    position: relative;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.35);
    transform: translateX(30px) scale(0.95);
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    border: 1px solid rgba(226, 232, 240, 0.8);
}

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

.lr-modal-close {
    position: absolute;
    top: 0.85rem;
    right: 0.85rem;
    width: 24px;
    height: 24px;
    background: #F1F5F9;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #64748B;
    font-size: 0.75rem;
    font-weight: 700;
    transition: var(--transition);
}

.lr-modal-close:hover {
    background: #E2E8F0;
    color: #0F172A;
}

.lr-header {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    margin-bottom: 0.75rem;
}

.lr-logo-wrapper {
    position: relative;
    width: 34px;
    height: 34px;
    background: #0B0C10;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2px;
}

.lr-logo-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.lr-status-dot {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 9px;
    height: 9px;
    background: #22C55E;
    border: 1.5px solid #FFFFFF;
    border-radius: 50%;
}

.lr-header-title h3 {
    font-family: var(--font-heading);
    font-size: 0.98rem;
    font-weight: 800;
    color: #0F172A;
    line-height: 1.15;
}

.lr-header-title span {
    font-size: 0.75rem;
    color: #64748B;
    font-weight: 500;
}

.lr-title-block {
    margin-bottom: 0.75rem;
}

.lr-title-block h2 {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 800;
    color: #0F172A;
    margin-bottom: 0.05rem;
    letter-spacing: -0.02em;
}

.lr-title-block p {
    font-size: 0.78rem;
    color: #64748B;
}

.lr-form-group {
    margin-bottom: 0.55rem;
}

.lr-form-group label {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    font-size: 0.78rem;
    font-weight: 700;
    color: #334155;
    margin-bottom: 0.2rem;
}

.lr-emoji {
    font-size: 0.82rem;
}

.lr-input {
    width: 100%;
    padding: 0.48rem 0.7rem;
    border: 1.5px solid #E2E8F0;
    border-radius: 8px;
    font-size: 0.82rem;
    color: #0F172A;
    background: #F8FAFC;
    transition: var(--transition);
}

.lr-input::placeholder {
    color: #94A3B8;
}

.lr-input:focus {
    outline: none;
    border-color: var(--primary);
    background: #FFFFFF;
    box-shadow: 0 0 0 3px rgba(255, 85, 0, 0.12);
}

.lr-input.invalid {
    border-color: #EF4444 !important;
    background-color: #FEF2F2 !important;
}

.lr-submit-btn {
    width: 100%;
    padding: 0.65rem 0.85rem;
    background: linear-gradient(135deg, var(--primary) 0%, #E04B00 100%);
    color: #FFFFFF;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 0.82rem;
    letter-spacing: 0.02em;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    box-shadow: 0 4px 12px rgba(255, 85, 0, 0.3);
    margin-top: 0.75rem;
    margin-bottom: 0.5rem;
    transition: var(--transition);
}

.lr-submit-btn:hover {
    background: linear-gradient(135deg, #FF6611 0%, #F05500 100%);
    transform: translateY(-1px);
    box-shadow: 0 6px 18px rgba(255, 85, 0, 0.4);
}

.lr-btn-dot {
    font-size: 0.65rem;
    color: #FFFFFF;
    animation: pulseDot 1.5s infinite;
}

@keyframes pulseDot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.2); }
}

.lr-note-box {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    background: #F1F5F9;
    border: 1px solid #E2E8F0;
    border-radius: 6px;
    padding: 0.45rem 0.65rem;
    text-align: left;
}

.lr-note-icon {
    font-size: 0.82rem;
    line-height: 1;
    flex-shrink: 0;
}

.lr-note-box p {
    font-size: 0.72rem;
    color: #475569;
    font-weight: 500;
    line-height: 1.25;
    margin: 0;
}

/* Modal Legal Generico (Termos / Privacidade) */
.legal-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(5, 6, 9, 0.85);
    backdrop-filter: blur(8px);
    z-index: 1100;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

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

.legal-modal-content {
    background: var(--bg-card);
    color: var(--text-main);
    border: 1px solid var(--border-color);
    width: 100%;
    max-width: 640px;
    max-height: 80vh;
    overflow-y: auto;
    border-radius: var(--radius-lg);
    padding: 2rem;
    position: relative;
}

.legal-modal-content h2 {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.legal-modal-content p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 1rem;
    line-height: 1.6;
}

/* --------------------------------------------------------------------------
   16. Responsividade (Mobile First Breakpoints)
   -------------------------------------------------------------------------- */
@media (max-width: 1024px) {
    .hero h1 {
        font-size: 2.8rem;
    }
    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .steps-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .header .nav-links {
        position: fixed;
        top: 68px;
        left: 0;
        width: 100%;
        background: var(--bg-dark);
        border-bottom: 1px solid var(--border-color);
        flex-direction: column;
        padding: 2rem;
        gap: 1.25rem;
        transform: translateY(-150%);
        transition: var(--transition);
    }
    .header .nav-links.active {
        transform: translateY(0);
    }
    .mobile-toggle {
        display: flex;
    }
    .hero {
        padding-top: 8rem;
        padding-bottom: 3rem;
    }
    .hero h1 {
        font-size: 2.2rem;
    }
    .hero-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
    }
    .about-grid, .location-grid {
        grid-template-columns: 1fr;
    }
    .features-grid, .steps-grid, .categories-grid {
        grid-template-columns: 1fr;
    }
    .cta-box h2 {
        font-size: 2rem;
    }
    .footer-grid {
        grid-template-columns: 1fr;
    }
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}
