/* ==========================================================================
   VVARAIS 2026 - Ultra Modern Design System & Stylesheet
   Identidade Visual: Branco, Vermelho e Fontes Pretas
   Pure Vanilla CSS - Zero Third-Party Frameworks
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. Font Face Declarations (Local WOFF2 Fonts)
   -------------------------------------------------------------------------- */
@font-face {
    font-family: 'Outfit';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url('../fontes/outfit-1.woff2') format('woff2');
}
@font-face {
    font-family: 'Outfit';
    font-style: normal;
    font-weight: 600;
    font-display: swap;
    src: url('../fontes/outfit-2.woff2') format('woff2');
}
@font-face {
    font-family: 'Outfit';
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    src: url('../fontes/outfit-3.woff2') format('woff2');
}
@font-face {
    font-family: 'Outfit';
    font-style: normal;
    font-weight: 800;
    font-display: swap;
    src: url('../fontes/outfit-4.woff2') format('woff2');
}

/* --------------------------------------------------------------------------
   2. Design Tokens & CSS Variables (White, Red, Black Palette)
   -------------------------------------------------------------------------- */
:root {
    /* Main Backgrounds */
    --primary-bg: #ffffff;
    --secondary-bg: #f8fafc;
    --card-bg: #ffffff;
    --card-hover-bg: #f8fafc;
    
    /* Brand Accent Colors */
    --brand-red: #d90429;
    --brand-red-hover: #ef233c;
    --brand-red-dark: #a0001c;
    --accent-green: #25d366;
    
    /* Typography Colors (High Contrast Black / Dark Slate) */
    --text-main: #0d1b2a;      /* Bold Black/Slate text */
    --text-muted: #334155;     /* Dark readable text */
    --text-subtle: #64748b;    /* Muted text */
    
    /* Borders & Shadows */
    --border-light: #e2e8f0;
    --border-red: rgba(217, 4, 41, 0.3);
    
    --shadow-sm: 0 2px 5px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 10px 30px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 20px 45px rgba(0, 0, 0, 0.12);
    --shadow-red: 0 8px 25px rgba(217, 4, 41, 0.3);
    --glass-backdrop: blur(12px);
    
    /* Layout */
    --container-max: 1280px;
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-full: 9999px;
    
    --font-family: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-smooth: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

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

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

body {
    font-family: var(--font-family);
    background-color: var(--primary-bg);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

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

ul, ol {
    list-style: none;
}

button, input, textarea, select {
    font-family: inherit;
    font-size: inherit;
}

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

/* --------------------------------------------------------------------------
   4. Header & Navigation (Wider 4-Column Mega Menu)
   -------------------------------------------------------------------------- */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: var(--glass-backdrop);
    -webkit-backdrop-filter: var(--glass-backdrop);
    border-bottom: 2px solid var(--border-light);
    transition: all var(--transition-fast);
    padding: 0.85rem 0;
}

.site-header.scrolled {
    background: #ffffff;
    padding: 0.6rem 0;
    box-shadow: var(--shadow-md);
    border-bottom-color: var(--brand-red);
}

.header-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
}

.logo-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: -0.5px;
    color: var(--text-main);
}

.logo-brand img {
    height: 45px;
    width: auto;
    object-fit: contain;
}

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

.nav-link {
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--text-main);
    position: relative;
    padding: 0.5rem 0;
}

.nav-link:hover, .nav-link.active {
    color: var(--brand-red);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 3px;
    background: var(--brand-red);
    transition: width var(--transition-fast);
    border-radius: var(--radius-full);
}

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

.has-dropdown {
    position: relative;
}

.has-dropdown > a {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
}

.has-dropdown svg {
    width: 16px;
    height: 16px;
    transition: transform var(--transition-fast);
    color: var(--brand-red);
}

.has-dropdown:hover svg {
    transform: rotate(180deg);
}

.mega-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    width: 1160px;
    max-width: 95vw;
    background: #ffffff;
    border: 2px solid var(--border-light);
    border-top: 5px solid var(--brand-red);
    border-radius: var(--radius-md);
    padding: 2rem;
    box-shadow: var(--shadow-lg);
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-fast);
    z-index: 1100;
}

.has-dropdown:hover .mega-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

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

.mega-menu-grid a {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0.85rem;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--text-main);
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: var(--radius-sm);
    transition: all var(--transition-fast);
}

.mega-menu-grid a:hover {
    background: rgba(217, 4, 41, 0.08);
    border-color: var(--brand-red);
    color: var(--brand-red);
    transform: translateX(2px);
}

.mega-menu-grid a svg {
    width: 16px;
    height: 16px;
    color: var(--brand-red);
    flex-shrink: 0;
}

.header-cta-group {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.btn-phone {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-main);
    font-weight: 700;
    font-size: 0.9rem;
    padding: 0.5rem 1rem;
    border-radius: var(--radius-full);
    border: 2px solid var(--border-light);
    background: #ffffff;
    transition: all var(--transition-fast);
}

.btn-phone:hover {
    background: var(--secondary-bg);
    border-color: var(--brand-red);
    color: var(--brand-red);
}

.btn-wsp {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #25d366, #128c7e);
    color: #ffffff !important;
    font-weight: 800;
    font-size: 0.95rem;
    padding: 0.65rem 1.4rem;
    border-radius: var(--radius-full);
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.35);
    transition: all var(--transition-fast);
}

.btn-wsp:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.55);
    color: #ffffff !important;
}

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--text-main);
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-toggle svg {
    width: 28px;
    height: 28px;
}

/* --------------------------------------------------------------------------
   5. Hero Section & Motion Animations
   -------------------------------------------------------------------------- */
.hero-section {
    position: relative;
    padding: 9.5rem 0 4.5rem;
    background: radial-gradient(circle at 85% 15%, rgba(217, 4, 41, 0.08), transparent 45%),
                radial-gradient(circle at 10% 85%, rgba(0, 0, 0, 0.03), transparent 45%),
                #ffffff;
    overflow: hidden;
    border-bottom: 1px solid var(--border-light);
}

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

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(217, 4, 41, 0.08);
    border: 1px solid var(--brand-red);
    padding: 0.4rem 1rem;
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 800;
    color: var(--brand-red);
    margin-bottom: 1.25rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    animation: badgePulse 3s infinite ease-in-out;
}

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

.hero-title {
    font-size: 3.25rem;
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -1px;
    margin-bottom: 1.25rem;
    color: #000000;
}

.hero-title span {
    color: var(--brand-red);
}

.hero-subtitle {
    font-size: 1.15rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
    max-width: 560px;
    line-height: 1.7;
    font-weight: 500;
}

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

.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    background: linear-gradient(135deg, var(--brand-red), var(--brand-red-hover));
    color: #ffffff;
    font-weight: 800;
    font-size: 1rem;
    padding: 0.95rem 2rem;
    border-radius: var(--radius-full);
    box-shadow: var(--shadow-red);
    transition: all var(--transition-fast);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(217, 4, 41, 0.4);
    color: #ffffff;
}

.btn-hero-wsp {
    background: linear-gradient(135deg, #25d366, #128c7e) !important;
    color: #ffffff !important;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4) !important;
}

.btn-hero-wsp:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.6) !important;
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: #ffffff;
    color: var(--text-main);
    border: 2px solid var(--border-light);
    font-weight: 700;
    font-size: 1rem;
    padding: 0.95rem 1.75rem;
    border-radius: var(--radius-full);
    transition: all var(--transition-fast);
}

.btn-secondary:hover {
    background: var(--secondary-bg);
    border-color: var(--brand-red);
    color: var(--brand-red);
}

.hero-image-wrapper {
    position: relative;
}

.hero-img-card {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 3px solid #ffffff;
    outline: 1px solid var(--border-light);
    background: #ffffff;
}

.hero-img-card img {
    width: 100%;
    height: 440px;
    object-fit: cover;
    display: block;
    transition: transform var(--transition-smooth);
    animation: heroFloat 6s ease-in-out infinite;
}

@keyframes heroFloat {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-8px) scale(1.02); }
}

.hero-floating-badge {
    position: absolute;
    bottom: -20px;
    left: -20px;
    background: #ffffff;
    border: 2px solid var(--brand-red);
    border-radius: var(--radius-md);
    padding: 1.25rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    box-shadow: var(--shadow-md);
    animation: badgeFloat 4s ease-in-out infinite alternate;
}

@keyframes badgeFloat {
    0% { transform: translateY(0); }
    100% { transform: translateY(-6px); }
}

.badge-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(217, 4, 41, 0.1);
    color: var(--brand-red);
    display: flex;
    align-items: center;
    justify-content: center;
}

.badge-icon svg {
    width: 26px;
    height: 26px;
}

.badge-text strong {
    display: block;
    font-size: 1.1rem;
    color: #000000;
}

.badge-text span {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* --------------------------------------------------------------------------
   6. Infinite Marquee Tag Cloud
   -------------------------------------------------------------------------- */
.marquee-container {
    background: #ffffff;
    border-top: 3px solid var(--brand-red);
    border-bottom: 3px solid var(--brand-red);
    padding: 0.85rem 0;
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    box-shadow: var(--shadow-sm);
}

.marquee-track {
    display: inline-flex;
    gap: 1.25rem;
    animation: marqueeScroll 25s linear infinite;
}

.marquee-container:hover .marquee-track {
    animation-play-state: paused;
}

@keyframes marqueeScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.tag-item {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--brand-red);
    color: #ffffff !important;
    font-weight: 700;
    font-size: 0.9rem;
    padding: 0.45rem 1.15rem;
    border-radius: var(--radius-full);
    box-shadow: 0 2px 8px rgba(217, 4, 41, 0.25);
    transition: all var(--transition-fast);
}

.tag-item svg {
    width: 14px;
    height: 14px;
    color: #ffffff;
}

.tag-item:hover {
    background: var(--brand-red-hover);
    transform: translateY(-2px);
}

/* --------------------------------------------------------------------------
   7. Neighborhood Page Content Styling (Spacious Typography & Feature List)
   -------------------------------------------------------------------------- */
.bairro-content-card {
    line-height: 1.8;
    color: var(--text-muted);
}

.bairro-lead {
    font-size: 1.15rem;
    font-weight: 500;
    color: #0d1b2a;
    margin-bottom: 1.5rem;
}

.bairro-content-card p {
    font-size: 1.05rem;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.bairro-section-title {
    font-size: 1.65rem;
    font-weight: 800;
    color: #000000;
    margin: 2.5rem 0 1.25rem 0;
    border-bottom: 2px solid var(--border-light);
    padding-bottom: 0.5rem;
}

.bairro-features-list {
    margin: 1.5rem 0 2.25rem 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
}

.bairro-features-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.85rem;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-left: 4px solid var(--brand-red);
    padding: 1.1rem 1.35rem;
    border-radius: var(--radius-sm);
    font-size: 1rem;
    color: #0d1b2a;
    line-height: 1.6;
}

.bairro-features-list li svg {
    width: 22px;
    height: 22px;
    color: var(--brand-red);
    flex-shrink: 0;
    margin-top: 2px;
}

/* --------------------------------------------------------------------------
   8. Contact Form Section with Attendant Image & Refined Input Icons
   -------------------------------------------------------------------------- */
.contact-section-grid {
    display: grid;
    grid-template-columns: 1fr 1.25fr;
    align-items: center;
    gap: 3rem;
}

.attendant-card {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 3px solid #ffffff;
    outline: 2px solid var(--border-light);
    box-shadow: var(--shadow-lg);
}

.attendant-card img {
    width: 100%;
    height: 480px;
    object-fit: cover;
}

.attendant-badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: var(--glass-backdrop);
    border: 2px solid var(--brand-red);
    border-radius: var(--radius-md);
    padding: 1rem 1.25rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    box-shadow: var(--shadow-md);
}

.input-icon-group {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
}

.input-icon-group svg {
    position: absolute;
    left: 14px;
    width: 20px;
    height: 20px;
    color: var(--brand-red);
    pointer-events: none;
    z-index: 3;
}

.input-icon-group input.form-control,
.input-icon-group textarea.form-control {
    width: 100%;
    padding: 0.85rem 1rem 0.85rem 2.85rem !important;
    background: #ffffff !important;
    border: 2px solid #cbd5e1 !important;
    border-radius: var(--radius-sm) !important;
    color: #0d1b2a !important;
    font-size: 0.95rem !important;
    font-weight: 600 !important;
    transition: all var(--transition-fast) !important;
}

.input-icon-group textarea.form-control {
    padding-top: 0.85rem !important;
    min-height: 110px !important;
}

.input-icon-group input.form-control:focus,
.input-icon-group textarea.form-control:focus {
    outline: none !important;
    border-color: var(--brand-red) !important;
    box-shadow: 0 0 0 3px rgba(217, 4, 41, 0.15) !important;
}

/* --------------------------------------------------------------------------
   9. 2-Column FAQ Accordion
   -------------------------------------------------------------------------- */
.faq-grid-2col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    max-width: var(--container-max);
    margin: 0 auto;
}

.faq-item {
    background: #ffffff;
    border: 2px solid var(--border-light);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: border-color var(--transition-fast);
    box-shadow: var(--shadow-sm);
    height: fit-content;
}

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

.faq-header {
    padding: 1.25rem 1.5rem;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: none;
    border: none;
    color: #000000;
    font-size: 1.05rem;
    font-weight: 800;
    text-align: left;
    cursor: pointer;
    gap: 1rem;
}

.faq-header svg {
    width: 20px;
    height: 20px;
    transition: transform var(--transition-fast);
    color: var(--brand-red);
    flex-shrink: 0;
}

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

.faq-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s cubic-bezier(0, 1, 0, 1), padding 0.35s ease;
    padding: 0 1.5rem;
}

.faq-item.active .faq-content {
    max-height: 1000px;
    padding: 0 1.5rem 1.5rem 1.5rem;
}

.faq-content p {
    color: var(--text-muted);
    line-height: 1.7;
    font-size: 0.95rem;
    font-weight: 500;
}

/* --------------------------------------------------------------------------
   10. General Cards & Sections
   -------------------------------------------------------------------------- */
.section-padding { padding: 5rem 0; }
.section-header { text-align: center; max-width: 720px; margin: 0 auto 3.5rem; }
.section-header-left { text-align: left; max-width: 100%; margin: 0 0 2.25rem 0; }
.section-subtitle { color: var(--brand-red); font-weight: 800; font-size: 0.95rem; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 0.5rem; display: block; }
.section-title { font-size: 2.35rem; font-weight: 800; line-height: 1.25; letter-spacing: -0.5px; margin-bottom: 1rem; color: #000000; }
.section-header-left .section-title { font-size: 2.75rem; font-weight: 800; line-height: 1.2; letter-spacing: -0.5px; margin-bottom: 1rem; color: #000000; }
.section-description { color: var(--text-muted); font-size: 1.05rem; line-height: 1.7; font-weight: 500; }

.cards-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 2rem; }

.card {
    background: #ffffff;
    border: 2px solid var(--border-light);
    border-radius: var(--radius-md);
    padding: 2rem;
    transition: all var(--transition-smooth);
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.card:hover {
    transform: translateY(-6px);
    border-color: var(--brand-red);
    box-shadow: var(--shadow-md);
}

.card-icon {
    width: 56px;
    height: 56px;
    border-radius: var(--radius-sm);
    background: rgba(217, 4, 41, 0.1);
    color: var(--brand-red);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.card-icon svg { width: 28px; height: 28px; }
.card-title { font-size: 1.35rem; font-weight: 800; margin-bottom: 0.75rem; color: #000000; }
.card-text { color: var(--text-muted); font-size: 0.95rem; line-height: 1.6; margin-bottom: 1.25rem; }

/* 55 Bairros Grid */
.bairros-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(210px, 1fr));
    gap: 1rem;
}

.bairro-item {
    background: #ffffff;
    border: 2px solid var(--border-light);
    border-radius: var(--radius-sm);
    padding: 1rem 1.25rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: all var(--transition-fast);
    color: #000000;
    box-shadow: var(--shadow-sm);
}

.bairro-item svg { width: 18px; height: 18px; color: var(--brand-red); flex-shrink: 0; }
.bairro-item:hover { background: rgba(217, 4, 41, 0.06); border-color: var(--brand-red); transform: translateY(-2px); color: var(--brand-red); }

/* Floating WhatsApp */
.whatsapp-float {
    position: fixed;
    bottom: 25px;
    right: 25px;
    z-index: 999;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}
.wsp-button { width: 60px; height: 60px; border-radius: 50%; background: linear-gradient(135deg, #25d366, #128c7e); color: #fff; display: flex; align-items: center; justify-content: center; box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4); position: relative; transition: transform var(--transition-fast); }
.wsp-button:hover { transform: scale(1.1); }
.wsp-button svg { width: 34px; height: 34px; }
.wsp-pulse { position: absolute; width: 100%; height: 100%; border-radius: 50%; background: rgba(37, 211, 102, 0.4); animation: wspPulse 2s infinite; z-index: -1; }
@keyframes wspPulse { 0% { transform: scale(1); opacity: 0.8; } 100% { transform: scale(1.6); opacity: 0; } }
.wsp-tooltip {
    background: #000000;
    border: 1px solid var(--brand-red);
    padding: 0.4rem 0.85rem;
    border-radius: var(--radius-sm);
    font-size: 0.8rem;
    font-weight: 700;
    color: #ffffff;
    box-shadow: var(--shadow-md);
    white-space: nowrap;
    margin-bottom: 0.5rem;
    pointer-events: none;
}

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

/* Footer */
.site-footer { background: #0d1b2a; border-top: 4px solid var(--brand-red); padding: 4rem 0 2rem; color: #e2e8f0; font-size: 0.9rem; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 3rem; margin-bottom: 3rem; }
.footer-brand h3 { color: #fff; font-size: 1.6rem; font-weight: 800; margin-bottom: 1rem; }
.footer-brand p { line-height: 1.6; margin-bottom: 1.5rem; color: #94a3b8; }
.footer-col h3, .footer-col h4, .footer-col-title { color: #fff; font-size: 1.1rem; font-weight: 800; margin-bottom: 1.25rem; border-bottom: 2px solid var(--brand-red); display: inline-block; padding-bottom: 0.25rem; }
.footer-links { display: flex; flex-direction: column; gap: 0.6rem; }
.footer-links a:hover { color: var(--brand-red); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 2rem; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1rem; color: #94a3b8; }

/* Animations */
.fade-in-up { opacity: 0; transform: translateY(30px); transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1); }
.fade-in-up.visible { opacity: 1; transform: translateY(0); }

.grid-2col-responsive {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

@media (max-width: 992px) {
    .hero-grid, .contact-section-grid { grid-template-columns: 1fr; text-align: center; }
    .hero-subtitle { margin-left: auto; margin-right: auto; }
    .hero-actions { justify-content: center; }
    .hero-floating-badge { left: 50%; transform: translateX(-50%); bottom: -25px; }
    .faq-grid-2col { grid-template-columns: 1fr; }
    .grid-2col-responsive { grid-template-columns: 1fr !important; gap: 2rem !important; }
    
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: #ffffff;
        flex-direction: column;
        justify-content: flex-start;
        align-items: stretch;
        padding: 1.5rem;
        transition: left var(--transition-fast);
        overflow-y: auto;
        z-index: 1050;
    }

    .nav-link {
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
        padding: 0.85rem 0;
        font-size: 1.05rem;
        font-weight: 800;
        color: #0d1b2a;
        border-bottom: 1px solid var(--border-light);
    }

    .has-dropdown { width: 100%; }

    .has-dropdown > a {
        border-bottom: 1px solid var(--border-light);
    }

    .has-dropdown:hover .mega-menu {
        transform: none !important;
        opacity: 1 !important;
        visibility: visible !important;
    }

    .mega-menu {
        position: static !important;
        transform: none !important;
        left: 0 !important;
        width: 100% !important;
        max-width: 100% !important;
        background: #ffffff;
        border: none;
        border-left: 3px solid var(--brand-red);
        border-radius: 0;
        padding: 0.5rem 0 0.5rem 1rem;
        box-shadow: none;
        display: none;
        opacity: 1;
        visibility: visible;
        max-height: none;
        overflow: visible;
        margin: 0.25rem 0 0.5rem 0;
    }

    .has-dropdown.active .mega-menu {
        display: block !important;
    }

    .mega-menu-grid {
        display: flex;
        flex-direction: column;
        gap: 0;
        width: 100%;
    }

    .mega-menu-grid a {
        display: flex;
        align-items: center;
        gap: 0.6rem;
        width: 100%;
        padding: 0.75rem 0.5rem;
        font-size: 0.95rem;
        font-weight: 600;
        color: #0d1b2a !important;
        background: transparent;
        border: none;
        border-bottom: 1px dashed var(--border-light);
        border-radius: 0;
        transform: none !important;
        transition: background 0.2s ease, color 0.2s ease;
    }

    .mega-menu-grid a:last-child {
        border-bottom: none;
    }

    .mega-menu-grid a:hover,
    .mega-menu-grid a:active {
        color: var(--brand-red) !important;
        background: rgba(217, 4, 41, 0.08) !important;
        transform: none !important;
    }

    .nav-menu.active { left: 0; }
    .mobile-toggle { display: block; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    .hero-title { font-size: 2.25rem; }
    .section-title { font-size: 1.85rem; }
    .section-header-left .section-title { font-size: 2rem; }
    .footer-grid { grid-template-columns: 1fr !important; }
    .cards-grid { grid-template-columns: 1fr !important; }
    .faq-grid-2col { grid-template-columns: 1fr !important; }
    .contact-section-grid { grid-template-columns: 1fr !important; }
    .grid-2col-responsive { grid-template-columns: 1fr !important; gap: 2rem !important; }
    div[style*="grid-template-columns"] { grid-template-columns: 1fr !important; }
    .mega-menu-grid { grid-template-columns: 1fr !important; }
    .header-cta-group .btn-phone { display: none; }
}
