:root {
    --white-pure: #FFFFFF;
    --white-warm: #FAFBFC;
    --gray-50: #F8F9FA;
    --gray-100: #F1F3F5;
    --gray-200: #E9ECEF;
    --gray-300: #DEE2E6;
    --gray-400: #CED4DA;
    --gray-500: #ADB5BD;
    --gray-600: #868E96;
    --gray-700: #495057;
    --gray-800: #343A40;
    --gray-900: #212529;

    --primary: #2563EB;
    --primary-light: #3B82F6;
    --primary-dark: #1D4ED8;
    --secondary: #7C3AED;
    --accent-rose: #F43F5E;
    --accent-amber: #F59E0B;
    --accent-emerald: #10B981;
    --accent-sky: #0EA5E9;

    --gradient-hero: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --gradient-ocean: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --gradient-premium: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    --gradient-sunset: linear-gradient(135deg, #fa709a 0%, #fee140 100%);
    --gradient-forest: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
    --gradient-sky: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);

    --shadow-xs: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-sm: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px -1px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
    --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);

    --transition-base: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-smooth: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: all 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--gray-50);
    color: var(--gray-900);
    overflow-x: hidden;
}


/* ========== SCROLL ANIMATIONS ========== */
.reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.reveal-fade {
    opacity: 0;
    transition: all 1s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-fade.active {
    opacity: 1;
}

.reveal-scale {
    opacity: 0;
    transform: scale(0.85) translateY(30px);
    transition: all 0.9s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-scale.active {
    opacity: 1;
    transform: scale(1) translateY(0);
}

.reveal-rotate {
    opacity: 0;
    transform: rotateY(20deg) translateY(30px);
    transition: all 1s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-rotate.active {
    opacity: 1;
    transform: rotateY(0deg) translateY(0);
}

/* ========== HEADER REORGANIZADO ========== */
.header-wrapper {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: linear-gradient(135deg,
            rgba(102, 126, 234, 0.95) 0%,
            rgba(118, 75, 162, 0.95) 100%);
    backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 30px rgba(102, 126, 234, 0.3);
}

.header-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(255, 255, 255, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.header-wrapper.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border-bottom-color: var(--gray-200);
}

.header-wrapper.scrolled::before {
    opacity: 0;
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0.875rem 2rem;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 1rem;
    position: relative;
    z-index: 2;
}

/* BOTÃO CATEGORIAS À ESQUERDA */
.header-left {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.btn-categories-main {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1.5rem;
    background: rgba(255, 255, 255, 0.25);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 12px;
    color: white;
    font-weight: 700;
    font-size: 0.95rem;
    cursor: pointer;
    transition: var(--transition-base);
    position: relative;
    overflow: hidden;
}

.header-wrapper.scrolled .btn-categories-main {
    background: var(--gradient-ocean);
    border-color: transparent;
    box-shadow: var(--shadow-md);
}

.btn-categories-main::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.6s ease;
}

.btn-categories-main:hover::before {
    width: 300px;
    height: 300px;
}

.btn-categories-main:hover {
    background: rgba(255, 255, 255, 0.35);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(255, 255, 255, 0.25);
}

.header-wrapper.scrolled .btn-categories-main:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-xl);
}

.btn-categories-main i {
    font-size: 1.125rem;
    position: relative;
    z-index: 2;
}

.btn-categories-main span {
    position: relative;
    z-index: 2;
}

/* LOGO CENTRALIZADA */
.brand-logo {
    display: flex;
    align-items: center;
    gap: 0.875rem;
    text-decoration: none;
    justify-content: center;
}

.logo-icon {
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.25);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 32px rgba(255, 255, 255, 0.2);
    transition: var(--transition-smooth);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.header-wrapper.scrolled .logo-icon {
    background: var(--gradient-ocean);
    border-color: transparent;
}

.logo-icon:hover {
    transform: rotate(-5deg) scale(1.08);
    box-shadow: 0 12px 40px rgba(255, 255, 255, 0.3);
}

.logo-icon i {
    font-size: 1.375rem;
    color: white;
}

.logo-text h1 {
    font-family: 'Playfair Display', serif;
    font-size: 1.375rem;
    font-weight: 800;
    color: white;
    letter-spacing: -0.5px;
    transition: var(--transition-base);
}

.header-wrapper.scrolled .logo-text h1 {
    color: var(--gray-900);
}

.logo-text p {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    transition: var(--transition-base);
}

.header-wrapper.scrolled .logo-text p {
    color: var(--gray-600);
}

/* BOTÕES À DIREITA */
.header-nav {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 0.75rem;
}

.btn-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-base);
    color: white;
    position: relative;
    font-size: 1rem;
}

.header-wrapper.scrolled .btn-icon {
    background: var(--white-pure);
    border-color: var(--gray-200);
    color: var(--gray-700);
}

.btn-icon:hover {
    background: rgba(255, 255, 255, 0.35);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(255, 255, 255, 0.25);
}

.header-wrapper.scrolled .btn-icon:hover {
    background: var(--gray-50);
    border-color: var(--primary);
    color: var(--primary);
    box-shadow: var(--shadow-md);
}

/* ========== MEGA MENU DE CATEGORIAS ========== */
.categories-mega-menu {
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    max-width: 420px;
    height: 100vh;
    background: white;
    box-shadow: 0 0 60px rgba(0, 0, 0, 0.15);
    transition: left 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 9999;
    display: flex;
    flex-direction: column;
}

.categories-mega-menu.active {
    left: 0;
}

/* HEADER DO MENU */
.mega-menu-header {
    padding: 1.5rem 1.75rem;
    background: var(--gradient-ocean);
    color: white;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    flex-shrink: 0;
}

.mega-menu-title {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.mega-menu-title i {
    font-size: 1.5rem;
}

.mega-menu-title h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 800;
}

.btn-close-mega {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-base);
    color: white;
    font-size: 1.25rem;
}

.btn-close-mega:hover {
    background: rgba(255, 255, 255, 0.35);
    transform: rotate(90deg);
}

/* BREADCRUMB DE NAVEGAÇÃO */
.mega-menu-breadcrumb {
    padding: 1rem 1.75rem;
    background: var(--gray-50);
    border-bottom: 2px solid var(--gray-200);
    display: none;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
    flex-shrink: 0;
}

.mega-menu-breadcrumb.active {
    display: flex;
}

.breadcrumb-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: var(--gray-600);
    font-weight: 600;
}

.breadcrumb-item.clickable {
    color: var(--primary);
    cursor: pointer;
    transition: var(--transition-base);
}

.breadcrumb-item.clickable:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

.breadcrumb-separator {
    color: var(--gray-400);
    font-size: 0.75rem;
}

/* CONTEÚDO DO MENU */
.mega-menu-content {
    flex: 1;
    overflow-y: auto;
    overflow-x: hidden;
}

.mega-menu-content::-webkit-scrollbar {
    width: 8px;
}

.mega-menu-content::-webkit-scrollbar-track {
    background: var(--gray-100);
}

.mega-menu-content::-webkit-scrollbar-thumb {
    background: var(--gray-400);
    border-radius: 10px;
}

.mega-menu-content::-webkit-scrollbar-thumb:hover {
    background: var(--primary);
}

/* NÍVEIS DE CATEGORIAS */
.category-level {
    display: none;
    animation: slideInRight 0.3s ease;
}

.category-level.active {
    display: block;
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* ITEM DE CATEGORIA */
.category-item {
    padding: 1.25rem 1.75rem;
    border-bottom: 1px solid var(--gray-200);
    cursor: pointer;
    transition: var(--transition-base);
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
}

.category-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 0;
    background: var(--gradient-ocean);
    transition: width 0.3s ease;
}

.category-item:hover::before {
    width: 5px;
}

.category-item:hover {
    background: linear-gradient(90deg,
            rgba(102, 126, 234, 0.05) 0%,
            rgba(255, 255, 255, 0) 100%);
    padding-left: 2rem;
}

.category-item-content {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex: 1;
    position: relative;
    z-index: 2;
}

.category-icon-wrapper {
    width: 48px;
    height: 48px;
    background: var(--gradient-ocean);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: var(--transition-bounce);
}

.category-item:hover .category-icon-wrapper {
    transform: scale(1.1) rotate(-5deg);
}

.category-icon-wrapper i {
    font-size: 1.25rem;
    color: white;
}

.category-info {
    flex: 1;
}

.category-name {
    font-size: 1rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 0.25rem;
}

.category-count {
    font-size: 0.8rem;
    color: var(--gray-600);
    font-weight: 600;
}

.category-arrow {
    width: 32px;
    height: 32px;
    background: var(--gray-100);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-600);
    font-size: 0.875rem;
    transition: var(--transition-base);
    flex-shrink: 0;
    position: relative;
    z-index: 2;
}

.category-item:hover .category-arrow {
    background: var(--primary);
    color: white;
    transform: translateX(5px);
}

/* NÍVEL INDICATOR */
.level-indicator {
    padding: 0.75rem 1.75rem;
    background: linear-gradient(135deg, #EEF2FF 0%, #E0E7FF 100%);
    border-bottom: 2px solid #C7D2FE;
    display: flex;
    align-items: center;
    gap: 0.625rem;
    font-size: 0.8rem;
    font-weight: 800;
    color: var(--primary-dark);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Legacy Styles Removed - Final Styles at End of File */

/* ========== WHATSAPP LIST MODAL ========== */
.whatsapp-list-modal {
    width: 90%;
    max-width: 500px;
    background: white;
    border-radius: 20px;
    padding: 0;
    overflow: hidden;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.whatsapp-list-modal .modal-header {
    padding: 1.5rem 2rem;
    border-bottom: 1px solid #F3F4F6;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.whatsapp-list-modal .modal-title-box {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.whatsapp-list-modal .modal-title-box i {
    font-size: 1.75rem;
    color: #3B82F6;
    /* Blue icon */
}

.whatsapp-list-modal .modal-title-box h3 {
    font-size: 1.5rem;
    font-weight: 800;
    color: #1F2937;
    margin: 0;
    font-family: 'DM Sans', sans-serif;
    /* Setup font if needed */
}

.whatsapp-list-modal .modal-body {
    padding: 2rem;
    background: #FAFAFA;
}

.whatsapp-message-box {
    margin-bottom: 2rem;
}

.whatsapp-message-box label {
    display: block;
    font-weight: 700;
    color: #4B5563;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.whatsapp-message-box textarea {
    width: 100%;
    background: #F3F4F6;
    border: 1px solid #E5E7EB;
    border-radius: 12px;
    padding: 1rem;
    font-size: 0.95rem;
    color: #374151;
    resize: none;
    height: 100px;
    outline: none;
    font-family: inherit;
}

.contacts-label {
    font-size: 1rem;
    font-weight: 700;
    color: #4B5563;
    margin-bottom: 1rem;
}

.contacts-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-item {
    background: white;
    border: 1px solid #E5E7EB;
    border-radius: 16px;
    padding: 1.25rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.2s ease;
}

.contact-item:hover {
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    border-color: #D1D5DB;
}

.contact-info .contact-name {
    display: block;
    font-weight: 800;
    color: #111827;
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
}

.contact-meta {
    display: flex;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: #6B7280;
    align-items: center;
}

.contact-meta span.contact-dept {
    background: #EEF2FF;
    color: #4F46E5;
    padding: 2px 8px;
    border-radius: 6px;
    font-weight: 600;
}

.btn-whatsapp-call {
    background: linear-gradient(135deg, #6366F1 0%, #4338CA 100%);
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 10px;
    font-weight: 700;
    font-size: 0.95rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: transform 0.2s;
    box-shadow: 0 4px 6px rgba(99, 102, 241, 0.2);
}

.btn-whatsapp-call:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(99, 102, 241, 0.3);
}

.modal-close {
    background: #F3F4F6;
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6B7280;
    transition: all 0.2s;
}

.modal-close:hover {
    background: #E5E7EB;
    color: #1F2937;
}

/* Icon Box Styling */
.category-card .category-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 1rem;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.3) 100%) !important;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    color: white !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Cyan */

.city-selector .city-btn {
    transition: all 0.3s ease;
    border: 1px solid var(--gray-300);
}

.city-selector .city-btn.active {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
}

.level-indicator i {

    font-size: 0.9rem;
}

/* BTN VOLTAR */
.btn-back-category {
    padding: 1.25rem 1.75rem;
    border-bottom: 2px solid var(--gray-300);
    cursor: pointer;
    transition: var(--transition-base);
    display: flex;
    align-items: center;
    gap: 0.875rem;
    background: white;
    font-weight: 700;
    color: var(--primary);
}

.btn-back-category:hover {
    background: var(--gray-50);
    padding-left: 2.25rem;
}

.btn-back-category i {
    font-size: 1.125rem;
}

/* OVERLAY */
.categories-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
    z-index: 9998;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.categories-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* ========== MODAIS GENÉRICOS ========== */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(6px);
    z-index: 9998;
    opacity: 0;
    visibility: hidden;
    transition: all 0.2s ease;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-box {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.95);
    background: white;
    border-radius: 24px;
    padding: 2.5rem;
    max-width: 700px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
    z-index: 9999;
    box-shadow: var(--shadow-2xl);
    opacity: 0;
    visibility: hidden;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.modal-box.active {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, -50%) scale(1);
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.modal-header h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.875rem;
    font-weight: 800;
    color: var(--gray-900);
}

.btn-close-modal {
    width: 40px;
    height: 40px;
    background: var(--gray-100);
    border: none;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-base);
    color: var(--gray-700);
    font-size: 1.25rem;
}

.btn-close-modal:hover {
    background: var(--gray-200);
    color: var(--gray-900);
    transform: rotate(90deg);
}

/* ========== MODAL CIDADES ========== */
.cities-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.city-item {
    padding: 1.25rem;
    background: var(--gray-50);
    border: 2px solid var(--gray-200);
    border-radius: 14px;
    cursor: pointer;
    transition: all 0.15s ease;
    text-align: center;
}

.city-item:hover {
    background: linear-gradient(135deg, #EEF2FF 0%, #E0E7FF 100%);
    border-color: var(--primary);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.city-item i {
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.city-item h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 0.25rem;
}

.city-item p {
    font-size: 0.8rem;
    color: var(--gray-600);
}

/* ========== MODAL BUSCA ========== */
.search-modal-form {
    display: grid;
    gap: 1.25rem;
}

.input-group {
    position: relative;
}

.input-label {
    display: inline-block;
    background: var(--gradient-ocean);
    color: white;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.375rem 1rem;
    border-radius: 100px;
    margin-bottom: 0.625rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    box-shadow: var(--shadow-sm);
}

.input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.input-icon {
    position: absolute;
    left: 1.25rem;
    color: var(--primary);
    font-size: 1.125rem;
    pointer-events: none;
    z-index: 2;
    display: flex;
    align-items: center;
    height: 100%;
}

.input-field {
    width: 100%;
    padding: 1.125rem 1.125rem 1.125rem 3.5rem;
    background: var(--gray-50);
    border: 2px solid var(--gray-200);
    border-radius: 14px;
    font-size: 1rem;
    font-weight: 600;
    color: var(--gray-900);
    transition: var(--transition-base);
    appearance: none;
}

.input-field:focus {
    outline: none;
    background: var(--white-pure);
    border-color: var(--primary);
    box-shadow: 0 0 0 5px rgba(37, 99, 235, 0.1);
}

.input-field::placeholder {
    color: var(--gray-500);
    font-weight: 500;
}

.select-field {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%232563EB'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='M19 9l-7 7-7-7'%3E%3C/path%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 1.25rem;
    padding-right: 3rem;
}

.btn-search {
    width: 100%;
    padding: 1.25rem;
    background: var(--gradient-ocean);
    border: none;
    border-radius: 14px;
    color: white;
    font-size: 1rem;
    font-weight: 800;
    cursor: pointer;
    transition: var(--transition-base);
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-search:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-2xl);
}

.btn-search i {
    font-size: 1.125rem;
}

/* ========== MODAL CADASTRO ========== */
.register-cta {
    text-align: center;
    padding: 2rem;
    background: linear-gradient(135deg, #EEF2FF 0%, #E0E7FF 100%);
    border-radius: 18px;
    margin-bottom: 2rem;
}

.register-cta i {
    font-size: 4rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
}

.register-cta h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--gray-900);
    margin-bottom: 1rem;
}

.register-cta p {
    font-size: 1.05rem;
    color: var(--gray-600);
    line-height: 1.7;
    margin-bottom: 2rem;
}

.btn-register {
    width: 100%;
    padding: 1.25rem;
    background: var(--gradient-ocean);
    border: none;
    border-radius: 14px;
    color: white;
    font-size: 1.05rem;
    font-weight: 800;
    cursor: pointer;
    transition: var(--transition-base);
    box-shadow: var(--shadow-lg);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-register:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-2xl);
}

/* ========== MODAL INFO BOTÕES ========== */
.info-modal-content {
    text-align: center;
    padding: 2rem;
}

.info-modal-content i {
    font-size: 4rem;
    margin-bottom: 1.5rem;
}

.info-modal-content h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--gray-900);
    margin-bottom: 1rem;
}

.info-modal-content p {
    font-size: 1.125rem;
    color: var(--gray-600);
    line-height: 1.7;
    margin-bottom: 2rem;
}

.info-modal-content a {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: var(--gradient-ocean);
    color: white;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 700;
    transition: var(--transition-base);
}

.info-modal-content a:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-xl);
}

/* ========== HERO SLIDER COM FUNDO SOFISTICADO ========== */
.hero-slider-section {
    position: relative;
    width: 100%;
    overflow: hidden;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 0;
    margin: 0;
}

.hero-slider-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        linear-gradient(45deg, rgba(102, 126, 234, 0.1) 25%, transparent 25%),
        linear-gradient(-45deg, rgba(118, 75, 162, 0.1) 25%, transparent 25%),
        linear-gradient(45deg, transparent 75%, rgba(102, 126, 234, 0.1) 75%),
        linear-gradient(-45deg, transparent 75%, rgba(118, 75, 162, 0.1) 75%);
    background-size: 60px 60px;
    background-position: 0 0, 0 30px, 30px -30px, -30px 0px;
    opacity: 0.3;
    z-index: 1;
}

.hero-slider-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 2rem 2rem;
    position: relative;
    z-index: 2;
}

.hero-slider-wrapper {
    position: relative;
    width: 100%;
    height: 600px;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.3);
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1s ease-in-out, visibility 1s ease-in-out;
}

.hero-slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 1;
}

.hero-slide-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-slide-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 3rem;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.4) 50%, transparent 100%);
    color: white;
    z-index: 2;
}

.hero-slide-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 0.5rem 1rem;
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hero-slide-title {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1rem;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.hero-slide-subtitle {
    font-size: 1.25rem;
    font-weight: 400;
    max-width: 700px;
    line-height: 1.6;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

/* Navegação do Slider */
.hero-slider-nav {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.75rem;
    z-index: 10;
}

.hero-slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    border: 2px solid white;
    cursor: pointer;
    transition: all 0.3s ease;
}

.hero-slider-dot.active {
    background: white;
    transform: scale(1.3);
}

.hero-slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
}

.hero-slider-arrow:hover {
    background: rgba(255, 255, 255, 0.4);
    transform: translateY(-50%) scale(1.1);
}

.hero-slider-arrow.prev {
    left: 2rem;
}

.hero-slider-arrow.next {
    right: 2rem;
}

/* ========== SEARCH BOX ABAIXO DO SLIDER (OCULTO) ========== */
.search-box-section {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem 2rem;
    position: relative;
    z-index: 100;
}

.search-toggle-btn {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    padding: 18px 40px;
    font-size: 18px;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin: -30px auto 0;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.4);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 101;
}

.search-toggle-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.search-toggle-btn:hover::before {
    width: 300px;
    height: 300px;
}

.search-toggle-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.5);
}

.search-toggle-btn i {
    font-size: 20px;
    transition: transform 0.3s ease;
    position: relative;
    z-index: 2;
}

.search-toggle-btn.active i {
    transform: rotate(180deg);
}

.search-toggle-btn span {
    position: relative;
    z-index: 2;
}

.search-wrapper {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 0;
    box-shadow: 0 30px 60px -15px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.5);
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateY(-20px);
    margin-top: 20px;
}

.search-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.search-wrapper.active {
    max-height: 500px;
    opacity: 1;
    transform: translateY(0);
    padding: 1.75rem;
}

.search-wrapper.active::before {
    opacity: 1;
}

.search-form {
    display: grid;
    gap: 1.25rem;
}

.search-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

/* ========== MODAL DE CONFIRMAÇÃO DE CONTATO ========== */
.contact-confirm-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(8px);
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-confirm-modal.active {
    opacity: 1;
    visibility: visible;
}

.contact-modal-content {
    background: white;
    border-radius: 28px;
    max-width: 600px;
    width: 90%;
    max-height: 85vh;
    overflow-y: auto;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.3);
    transform: scale(0.9);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.contact-confirm-modal.active .contact-modal-content {
    transform: scale(1);
}

.contact-modal-header {
    padding: 2rem;
    background: var(--gradient-ocean);
    color: white;
    border-radius: 28px 28px 0 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.contact-modal-title {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-family: 'Playfair Display', serif;
    font-size: 1.75rem;
    font-weight: 800;
}

.contact-modal-title i {
    font-size: 2rem;
}

.btn-close-contact {
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.3rem;
    cursor: pointer;
    transition: var(--transition-base);
}

.btn-close-contact:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: rotate(90deg);
}

.contact-modal-body {
    padding: 2.5rem;
}

.business-contact-info {
    text-align: center;
    padding: 2rem;
    background: linear-gradient(135deg, #EEF2FF 0%, #E0E7FF 100%);
    border-radius: 18px;
    margin-bottom: 2rem;
}

.business-contact-info h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--gray-900);
    margin-bottom: 0.5rem;
}

.business-contact-info p {
    color: var(--gray-600);
    font-weight: 600;
}

.contact-options-title {
    font-size: 1.125rem;
    font-weight: 800;
    color: var(--gray-900);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.contact-options-title i {
    color: var(--primary);
    font-size: 1.25rem;
}

/* Lista de Contatos WhatsApp */
.whatsapp-contacts-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.whatsapp-contact-item {
    background: linear-gradient(135deg, #DCFCE7 0%, #D1FAE5 100%);
    border: 2px solid #86EFAC;
    border-radius: 16px;
    padding: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
}

.whatsapp-contact-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.5s ease;
}

.whatsapp-contact-item:hover::before {
    left: 100%;
}

.whatsapp-contact-item:hover {
    background: linear-gradient(135deg, #BBF7D0 0%, #86EFAC 100%);
    border-color: #4ADE80;
    transform: translateX(8px) scale(1.02);
    box-shadow: var(--shadow-xl);
}

.whatsapp-contact-info {
    flex: 1;
}

.whatsapp-contact-name {
    font-size: 1.125rem;
    font-weight: 800;
    color: #166534;
    margin-bottom: 0.25rem;
}

.whatsapp-contact-department {
    font-size: 0.875rem;
    font-weight: 700;
    color: #15803D;
    margin-bottom: 0.375rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.whatsapp-contact-department i {
    font-size: 0.75rem;
}

.whatsapp-contact-number {
    font-size: 0.95rem;
    font-weight: 600;
    color: #16A34A;
    font-family: 'DM Sans', monospace;
}

.whatsapp-contact-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.75rem;
    flex-shrink: 0;
    box-shadow: var(--shadow-lg);
    transition: var(--transition-bounce);
}

.whatsapp-contact-item:hover .whatsapp-contact-icon {
    transform: scale(1.15) rotate(-10deg);
}

/* Item de Contato Único (Facebook, Instagram, etc) */
.single-contact-item {
    background: linear-gradient(135deg, #EFF6FF 0%, #DBEAFE 100%);
    border: 2px solid #93C5FD;
    border-radius: 16px;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1rem;
}

.single-contact-info {
    flex: 1;
}

.single-contact-label {
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--primary-dark);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.5rem;
}

.single-contact-value {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--gray-900);
}

.btn-contact-action {
    padding: 0.875rem 1.75rem;
    background: var(--gradient-ocean);
    color: white;
    border: none;
    border-radius: 12px;
    font-weight: 800;
    font-size: 0.95rem;
    cursor: pointer;
    transition: var(--transition-base);
    display: flex;
    align-items: center;
    gap: 0.625rem;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    box-shadow: var(--shadow-md);
}

.btn-contact-action:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-xl);
}

.contact-warning {
    background: linear-gradient(135deg, #FEF3C7 0%, #FDE68A 100%);
    border-left: 4px solid #F59E0B;
    padding: 1.25rem;
    border-radius: 12px;
    margin-top: 2rem;
}

.contact-warning p {
    color: #92400E;
    font-size: 0.925rem;
    line-height: 1.6;
    font-weight: 600;
}

.contact-warning strong {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    color: #78350F;
}

/* ========== CATEGORIES SECTION ========== */
.categories-section {
    max-width: 1400px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-badge {
    display: inline-block;
    background: linear-gradient(135deg, #EEF2FF 0%, #E0E7FF 100%);
    border: 2px solid #C7D2FE;
    padding: 0.5rem 1.25rem;
    border-radius: 100px;
    color: var(--primary-dark);
    font-size: 0.8rem;
    font-weight: 800;
    margin-bottom: 1rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--gray-900);
    margin-bottom: 0.875rem;
}

.section-description {
    font-size: 1.125rem;
    color: var(--gray-600);
    max-width: 650px;
    margin: 0 auto 2rem;
    line-height: 1.7;
}

.city-selector {
    display: flex;
    justify-content: center;
    gap: 0.625rem;
    flex-wrap: wrap;
    margin-bottom: 2.5rem;
}

.city-btn {
    padding: 0.75rem 1.5rem;
    background: white;
    border: 2px solid var(--gray-300);
    border-radius: 100px;
    color: var(--gray-700);
    font-weight: 700;
    font-size: 0.875rem;
    cursor: pointer;
    transition: var(--transition-base);
}

.city-btn:hover,
.city-btn.active {
    background: var(--gradient-ocean);
    border-color: var(--primary);
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 1.25rem;
}

@media (min-width: 992px) {
    .categories-grid {
        grid-template-columns: repeat(6, 1fr);
    }
}

.category-card {
    background: white;
    border: 2px solid var(--gray-200);
    border-radius: 18px;
    padding: 1.75rem 1.25rem;
    cursor: pointer;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.category-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: var(--gradient-ocean);
    opacity: 0;
    transition: var(--transition-smooth);
    transform: rotate(45deg);
}

.category-card:hover::before {
    opacity: 0.08;
}

.category-card:hover {
    border-color: var(--primary);
    transform: translateY(-6px) scale(1.02);
    box-shadow: var(--shadow-xl);
}

.category-card.active {
    border-color: var(--primary);
    background: linear-gradient(135deg, #EEF2FF 0%, #E0E7FF 100%);
    box-shadow: var(--shadow-lg);
}

.category-content {
    position: relative;
    z-index: 2;
}

.category-icon {
    width: 64px;
    height: 64px;
    background: var(--gradient-ocean);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
    transition: var(--transition-bounce);
    box-shadow: var(--shadow-md);
}

.category-card:hover .category-icon {
    transform: scale(1.12) rotate(-8deg);
    box-shadow: var(--shadow-xl);
}

.category-icon i {
    font-size: 1.75rem;
    color: white;
}

.category-name {
    font-size: 1.125rem;
    font-weight: 800;
    color: var(--gray-900);
    margin-bottom: 0.375rem;
    text-align: center;
    line-height: 1.3;
}

.category-city {
    font-size: 0.8rem;
    color: var(--gray-600);
    font-weight: 600;
    text-align: center;
    margin-bottom: 0.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.3rem;
}

.category-city i {
    color: var(--primary);
    font-size: 0.75rem;
}

.category-count {
    font-size: 0.75rem;
    color: var(--gray-500);
    font-weight: 600;
    text-align: center;
}

/* ========== BUSINESS SECTION ========== */
.business-section {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem 4rem;
}

.results-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
    gap: 1.25rem;
}

.results-info h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.875rem;
    font-weight: 800;
    color: var(--gray-900);
    margin-bottom: 0.25rem;
}

.results-count {
    font-size: 0.95rem;
    color: var(--gray-600);
    font-weight: 600;
}

.results-count strong {
    color: var(--primary);
    font-weight: 800;
}

.filter-controls {
    display: flex;
    gap: 0.875rem;
}

.btn-filter {
    padding: 0.75rem 1.25rem;
    background: white;
    border: 2px solid var(--gray-300);
    border-radius: 12px;
    color: var(--gray-700);
    font-weight: 700;
    font-size: 0.875rem;
    cursor: pointer;
    transition: var(--transition-base);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-filter:hover {
    background: var(--gray-50);
    border-color: var(--primary);
    color: var(--primary);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.business-grid {
    display: grid;
    gap: 2rem;
    margin-bottom: 4rem;
}

/* ========== BUSINESS CARD PREMIUM (VERTICAL) - BOTÕES FIXOS ========== */
.business-card-premium {
    background: white;
    border: 2px solid var(--gray-200);
    border-radius: 24px;
    overflow: hidden;
    transition: var(--transition-smooth);
    box-shadow: var(--shadow-md);
    position: relative;
    display: flex;
    flex-direction: column;
}

.business-card-premium:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-2xl);
    border-color: var(--primary-light);
}

.card-image {
    position: relative;
    height: 280px;
    background: var(--gray-100);
    overflow: visible;
    flex-shrink: 0;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.business-card-premium:hover .card-image img {
    transform: scale(1.08);
}

.card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.6) 100%);
}

.card-badges {
    position: absolute;
    top: 1.25rem;
    left: 1.25rem;
    right: 1.25rem;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    z-index: 5;
}

.badge-featured {
    background: var(--gradient-premium);
    padding: 0.625rem 1.25rem;
    border-radius: 100px;
    color: white;
    font-size: 0.75rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: var(--shadow-lg);
}

.badge-verified {
    width: 40px;
    height: 40px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-emerald);
    font-size: 0.95rem;
    box-shadow: var(--shadow-lg);
}

.card-logo {
    position: absolute;
    bottom: -50px;
    left: 50%;
    transform: translateX(-50%);
    width: 90px;
    height: 90px;
    background: var(--gradient-ocean);
    border: 5px solid white;
    border-radius: 22px;
    box-shadow: var(--shadow-2xl);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: var(--transition-bounce);
}

.business-card-premium:hover .card-logo {
    transform: translateX(-50%) scale(1.12) rotate(-6deg);
}

.card-logo i {
    font-size: 2.5rem;
    color: white;
}

.card-body {
    padding: 4rem 2rem 1.5rem;
    text-align: center;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.card-category {
    display: inline-block;
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    color: #92400e;
    padding: 0.5rem 1.125rem;
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 800;
    margin-bottom: 1rem;
    letter-spacing: 0.3px;
    text-transform: uppercase;
    border: 2px solid #fbbf24;
}

.card-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.625rem;
    font-weight: 800;
    color: var(--gray-900);
    margin-bottom: 0.875rem;
    line-height: 1.3;
}

.card-location {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    color: var(--gray-600);
    font-size: 0.925rem;
    margin-bottom: 1.125rem;
    font-weight: 600;
}

.card-location i {
    color: var(--primary);
    font-size: 1rem;
}

.card-description {
    color: var(--gray-700);
    font-size: 0.975rem;
    line-height: 1.7;
    margin-bottom: auto;
}

/* ========== CARD FOOTER - BOTÕES TAMANHO FIXO ========== */
.card-footer {
    padding: 1.75rem 1.5rem;
    border-top: 2px solid var(--gray-100);
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    position: relative;
    overflow: hidden;
    margin-top: auto;
}

.card-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 30% 50%, rgba(102, 126, 234, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 70% 50%, rgba(118, 75, 162, 0.06) 0%, transparent 50%);
    pointer-events: none;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 0.625rem;
    position: relative;
    z-index: 2;
    flex-wrap: wrap;
}

.social-link {
    width: 52px;
    height: 52px;
    border: 2px solid transparent;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: white;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    font-size: 1.375rem;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    flex-shrink: 0;
    cursor: pointer;
}

.social-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0) 100%);
    opacity: 0;
    transition: all 0.4s ease;
}

.social-link::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: all 0.6s ease;
}

.social-link:hover::after {
    width: 200px;
    height: 200px;
}

.social-link:hover::before {
    opacity: 1;
}

.social-link i {
    position: relative;
    z-index: 2;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.social-link:hover {
    transform: translateY(-6px) scale(1.08);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.25);
}

.social-link:hover i {
    transform: scale(1.2) rotate(360deg);
}

/* CORES PADRÃO DOS BOTÕES (COLORIDOS) */
.social-link.whatsapp {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
}

.social-link.facebook {
    background: linear-gradient(135deg, #1877F2 0%, #0C63D4 100%);
}

.social-link.instagram {
    background: linear-gradient(135deg, #833AB4 0%, #FD1D1D 50%, #FCB045 100%);
}

.social-link.linkedin {
    background: linear-gradient(135deg, #0A66C2 0%, #004182 100%);
}

.social-link.maps {
    background: linear-gradient(135deg, #EA4335 0%, #C5221F 100%);
}

.social-link.website {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

/* HOVER - MUDA COR */
.social-link.whatsapp:hover {
    background: linear-gradient(135deg, #128C7E 0%, #075E54 100%);
}

.social-link.facebook:hover {
    background: linear-gradient(135deg, #0C63D4 0%, #0952B0 100%);
}

.social-link.instagram:hover {
    background: linear-gradient(135deg, #FD1D1D 0%, #833AB4 50%, #FCB045 100%);
}

.social-link.linkedin:hover {
    background: linear-gradient(135deg, #004182 0%, #003366 100%);
}

.social-link.maps:hover {
    background: linear-gradient(135deg, #C5221F 0%, #9E1C19 100%);
}

.social-link.website:hover {
    background: linear-gradient(135deg, #764ba2 0%, #5E3A82 100%);
}

/* ========== SEPARATOR SECTION ========== */
.separator-section {
    max-width: 1400px;
    margin: 0 auto;
    padding: 3rem 2rem 2rem;
    text-align: center;
}

.separator-title {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 900;
    color: var(--gray-900);
    margin-bottom: 0.625rem;
}

.separator-subtitle {
    font-size: 1rem;
    color: var(--gray-600);
    font-weight: 500;
}

/* ========== LOCAL BUSINESS SECTION (HORIZONTAL) ========== */
.local-business-section {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem 4rem;
}

.local-business-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.local-card {
    background: white;
    border: 2px solid var(--gray-200);
    border-radius: 18px;
    overflow: hidden;
    display: grid;
    grid-template-columns: 220px 1fr;
    transition: var(--transition-smooth);
    box-shadow: var(--shadow-sm);
    min-height: 280px;
}

.local-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-light);
}

.local-image-wrapper {
    position: relative;
    background: var(--gray-100);
    overflow: hidden;
}

.local-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.local-card:hover .local-image {
    transform: scale(1.12);
}

.local-logo {
    position: absolute;
    top: 0.875rem;
    left: 0.875rem;
    width: 54px;
    height: 54px;
    background: var(--gradient-ocean);
    border: 3px solid white;
    border-radius: 13px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-lg);
    z-index: 5;
    transition: var(--transition-bounce);
}

.local-card:hover .local-logo {
    transform: scale(1.1) rotate(-6deg);
}

.local-logo i {
    font-size: 1.5rem;
    color: white;
}

.local-badge {
    position: absolute;
    bottom: 0.875rem;
    left: 0.875rem;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    padding: 0.4rem 0.75rem;
    border-radius: 100px;
    font-size: 0.65rem;
    font-weight: 900;
    color: var(--accent-emerald);
    border: 2px solid white;
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 0.3rem;
    z-index: 5;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.local-content {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.local-header {
    flex: 1;
}

.local-category {
    display: inline-block;
    background: linear-gradient(135deg, #DBEAFE 0%, #BFDBFE 100%);
    color: #1E40AF;
    padding: 0.3rem 0.75rem;
    border-radius: 100px;
    font-size: 0.65rem;
    font-weight: 900;
    margin-bottom: 0.625rem;
    letter-spacing: 0.3px;
    text-transform: uppercase;
    border: 2px solid #93C5FD;
}

.local-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    font-weight: 900;
    color: var(--gray-900);
    margin-bottom: 0.4rem;
    line-height: 1.3;
}

.local-location {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    color: var(--gray-600);
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.local-location i {
    color: var(--primary);
    font-size: 0.8rem;
}

.local-description {
    color: var(--gray-700);
    font-size: 0.825rem;
    line-height: 1.5;
    margin-bottom: 1rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* ========== LOCAL FOOTER - BOTÕES TAMANHO FIXO ========== */
.local-footer {
    display: flex;
    justify-content: center;
    gap: 0.625rem;
    padding-top: 1.25rem;
    border-top: 2px solid var(--gray-100);
    margin-top: auto;
    flex-wrap: wrap;
}

.local-action {
    width: 48px;
    height: 48px;
    border: 2px solid transparent;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: white;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    font-size: 1.25rem;
    position: relative;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
    flex-shrink: 0;
    cursor: pointer;
}

.local-action::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: all 0.6s ease;
}

.local-action:hover::before {
    width: 200px;
    height: 200px;
}

.local-action i {
    position: relative;
    z-index: 2;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.local-action:hover {
    transform: translateY(-4px) scale(1.08);
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.2);
}

.local-action:hover i {
    transform: scale(1.2) rotate(360deg);
}

/* CORES PADRÃO (COLORIDOS) */
.local-action.whatsapp {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
}

.local-action.facebook {
    background: linear-gradient(135deg, #1877F2 0%, #0C63D4 100%);
}

.local-action.instagram {
    background: linear-gradient(135deg, #833AB4 0%, #FD1D1D 50%, #FCB045 100%);
}

.local-action.linkedin {
    background: linear-gradient(135deg, #0A66C2 0%, #004182 100%);
}

.local-action.maps {
    background: linear-gradient(135deg, #EA4335 0%, #C5221F 100%);
}

.local-action.website {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

/* HOVER - MUDA COR */
.local-action.whatsapp:hover {
    background: linear-gradient(135deg, #128C7E 0%, #075E54 100%);
}

.local-action.facebook:hover {
    background: linear-gradient(135deg, #0C63D4 0%, #0952B0 100%);
}

.local-action.instagram:hover {
    background: linear-gradient(135deg, #FD1D1D 0%, #833AB4 50%, #FCB045 100%);
}

.local-action.linkedin:hover {
    background: linear-gradient(135deg, #004182 0%, #003366 100%);
}

.local-action.maps:hover {
    background: linear-gradient(135deg, #C5221F 0%, #9E1C19 100%);
}

.local-action.website:hover {
    background: linear-gradient(135deg, #764ba2 0%, #5E3A82 100%);
}

/* ========== FOOTER ULTRA SOFISTICADO ========== */
.footer {
    background: linear-gradient(135deg, #0f172a 0%, #1e1b4b 100%);
    color: white;
    padding: 5rem 2rem 2rem;
    margin-top: 4rem;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg,
            transparent 0%,
            rgba(139, 92, 246, 0.5) 25%,
            rgba(236, 72, 153, 0.5) 50%,
            rgba(139, 92, 246, 0.5) 75%,
            transparent 100%);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {

    0%,
    100% {
        opacity: 0.3;
    }

    50% {
        opacity: 1;
    }
}

.footer::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 20%, rgba(139, 92, 246, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(236, 72, 153, 0.1) 0%, transparent 50%),
        url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-brand {
    padding-right: 2rem;
}

.footer-brand h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2.25rem;
    font-weight: 900;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #ffffff 0%, #e0e7ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.8;
    margin-bottom: 1.75rem;
    font-size: 1rem;
}

.footer-social {
    display: flex;
    gap: 0.875rem;
}

.footer-social a {
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.08);
    border: 2px solid rgba(255, 255, 255, 0.15);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    font-size: 1.125rem;
    position: relative;
    overflow: hidden;
}

.footer-social a::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: all 0.6s ease;
}

.footer-social a:hover::before {
    width: 100px;
    height: 100px;
}

.footer-social a:hover {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-color: #667eea;
    transform: translateY(-6px) rotate(10deg);
    box-shadow: 0 12px 32px rgba(102, 126, 234, 0.4);
}

.footer-section h4 {
    font-weight: 800;
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
    color: white;
    position: relative;
    padding-bottom: 0.75rem;
}

.footer-section h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
    border-radius: 100px;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.875rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
}

.footer-links a::before {
    content: '→';
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: white;
    transform: translateX(6px);
}

.footer-links a:hover::before {
    opacity: 1;
    transform: translateX(0);
}

.footer-bottom {
    padding-top: 2.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.925rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.footer-bottom i {
    color: #F43F5E;
    animation: heartbeat 1.5s infinite;
}

@keyframes heartbeat {

    0%,
    100% {
        transform: scale(1);
    }

    25% {
        transform: scale(1.2);
    }

    50% {
        transform: scale(1);
    }
}

/* ========== RESPONSIVE ========== */
@media (min-width: 576px) {
    .search-row {
        grid-template-columns: 2fr 1fr;
    }
}

@media (min-width: 768px) {
    .search-row {
        grid-template-columns: 2fr 1.5fr 0.5fr;
    }

    .btn-search span {
        display: inline;
    }

    .business-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .cities-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 992px) {
    .business-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 1200px) {
    .local-business-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 991px) {
    .local-card {
        grid-template-columns: 180px 1fr;

        .btn-categories-main span {
            display: none;
        }

        .categories-mega-menu {
            max-width: 100%;
        }

        .footer-grid {
            grid-template-columns: 1fr;
            gap: 2.5rem;
        }

        .footer-brand {
            padding-right: 0;
        }

        .hero-slider-wrapper {
            height: 400px;
        }

        .hero-slide-title {
            font-size: 2rem;
        }

        .hero-slide-subtitle {
            font-size: 1rem;
        }

        .btn-search span {
            display: none;
        }

        .modal-box {
            padding: 2rem 1.5rem;
        }

        .cities-grid {
            grid-template-columns: 1fr;
        }

        .local-card {
            grid-template-columns: 1fr;
            min-height: auto;
        }

        .local-image-wrapper {
            height: 200px;
        }

        .footer-bottom p {
            flex-direction: column;
        }
    }

    @media (max-width: 768px) {
        .header-container {
            grid-template-columns: auto 1fr auto;
            gap: 0.5rem;
            padding: 0.75rem 1rem;
        }

        .header-left {
            justify-content: flex-start;
            order: unset;
        }

        .brand-logo {
            order: unset;
            justify-content: center;
        }

        .header-nav {
            order: unset;
            justify-content: flex-end;
        }

        .logo-text p {
            display: none;
        }

        .btn-categories-main span {
            display: none;
        }

        .categories-mega-menu {
            max-width: 100%;
        }

        .footer-grid {
            grid-template-columns: 1fr;
            gap: 2.5rem;
        }

        .footer-brand {
            padding-right: 0;
        }

        .hero-slider-wrapper {
            height: 400px;
        }

        .hero-slide-title {
            font-size: 2rem;
        }

        .hero-slide-subtitle {
            font-size: 1rem;
        }

        .btn-search span {
            display: none;
        }

        .modal-box {
            padding: 2rem 1.5rem;
        }

        .cities-grid {
            grid-template-columns: 1fr;
        }

        .local-card {
            grid-template-columns: 1fr;
            min-height: auto;
        }

        .local-image-wrapper {
            height: 200px;
            background: linear-gradient(135deg, #F43F5E 0%, #E11D48 100%) !important;
        }

    }
}

/* End media query 991px */

/* ========== HOMEPAGE CATEGORIES GRADIENTS (FINAL) ========== */
/* ========== HOMEPAGE CATEGORIES GRADIENTS (FINAL) ========== */
/* 1. Global Card Styles (Soft Look) */
.category-card {
    background: #DBEAFE !important;
    /* Stronger Blue 100 by default */
    border: 1px solid #93C5FD;
    box-shadow: 0 4px 6px -1px rgba(59, 130, 246, 0.1);
}

.category-card:hover {
    background: #BFDBFE !important;
    /* Blue 200 on hover */
    border-color: #60A5FA;
    transform: translateY(-5px);
    box-shadow: 0 10px 20px -5px rgba(59, 130, 246, 0.25);
}

.category-card .category-name {
    color: #1E293B !important;
    /* Dark Slate for contrast */
    font-weight: 800;
}

.category-card .category-count {
    color: #64748B !important;
    /* Muted Slate */
}

/* 2. Reset Host Backgrounds */
.category-gradient-0,
.category-gradient-1,
.category-gradient-2,
.category-gradient-3,
.category-gradient-4,
.category-gradient-5,
.category-gradient-6,
.category-gradient-7,
.category-gradient-8,
.category-gradient-9 {
    background: transparent !important;
}

/* 3. Icon Box Styling */
.category-card .category-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 1rem;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    color: white !important;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

/* 4. Apply Gradients to ICONS ONLY */
.category-gradient-0 .category-icon {
    background: linear-gradient(135deg, #10B981 0%, #059669 100%) !important;
}

.category-gradient-1 .category-icon {
    background: linear-gradient(135deg, #3B82F6 0%, #2563EB 100%) !important;
}

.category-gradient-2 .category-icon {
    background: linear-gradient(135deg, #8B5CF6 0%, #7C3AED 100%) !important;
}

.category-gradient-3 .category-icon {
    background: linear-gradient(135deg, #F59E0B 0%, #D97706 100%) !important;
}

.category-gradient-4 .category-icon {
    background: linear-gradient(135deg, #EC4899 0%, #DB2777 100%) !important;
}

.category-gradient-5 .category-icon {
    background: linear-gradient(135deg, #14B8A6 0%, #0D9488 100%) !important;
}

.category-gradient-6 .category-icon {
    background: linear-gradient(135deg, #6366F1 0%, #4F46E5 100%) !important;
}

.category-gradient-7 .category-icon {
    background: linear-gradient(135deg, #F43F5E 0%, #E11D48 100%) !important;
}

.category-gradient-8 .category-icon {
    background: linear-gradient(135deg, #84CC16 0%, #65A30D 100%) !important;
}

.category-gradient-9 .category-icon {
    background: linear-gradient(135deg, #06B6D4 0%, #0891B2 100%) !important;
}

/* 5. Mobile Adjustments Override */
@media (max-width: 991px) {
    .category-card {
        background: #F8FAFC !important;
    }
}