:root {
    --primary-color: #4CAF50;
    --text-color: #333;
}

html {
    scroll-behavior: smooth
}

/* Ícone de lupa */
.icon-search::before {
    content: "";
    display: inline-block;
    width: 18px;
    height: 18px;
    border: 2px solid currentColor;
    border-radius: 50%;
    margin-right: 6px;
    transform: translateY(2px);
}

.icon-search::after {
    content: "";
    display: inline-block;
    width: 10px;
    height: 2px;
    background: currentColor;
    transform: translate(-3px, 7px) rotate(45deg);
}

button#searchBtn {
    margin-right: -3px;
}

div#mobileMenu {
    display: none !important;
}

/* TomSelect minimal clean */
.ts-control {
    background-color: #f9fafb;
    border: 1px solid #d1d5db;
    border-radius: 0.5rem;
    padding: 0.45rem 0.9rem;
    cursor: pointer;
    font-size: 0.9rem;
    transition: border 0.2s, box-shadow 0.2s;
}

.ts-control.focus {
    border-color: #dc2626;
    box-shadow: 0 0 0 2px rgba(220, 38, 38, 0.15);
}

.ts-placeholder {
    color: #9ca3af;
}

.ts-dropdown {
    border-radius: 0.5rem;
    border: 1px solid #d1d5db;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
}

.ts-item {
    padding: 0.4rem 0.9rem;
    cursor: pointer;
}

.ts-item:hover {
    background-color: #fee2e2;
}

.ts-control::after {
    content: '▾';
    float: right;
    margin-right: 0.6rem;
    color: #6b7280;
    font-size: 0.8rem;
}

@media (max-width: 480px) {
    p.text-white\/80.mb-2.text-sm {
        margin-bottom: 18px;
        margin-top: 65px;
    }

    div#mobileMenu {
        display: none !important;
    }

    select#searchInput {
        margin-left: -5px;
    }

    p.text-white\/80.mb-2.text-sm {
        margin-top: 84px;
    }
}