:root {
    --brand: #0d6efd;
    --brand-dark: #0a58ca;
    --hero-bg: #eef5ff;
    --hero-text: #10233b;
    --hero-title-size: 3.2rem;
    --hero-subtitle-size: 1.1rem;
    --button-primary-bg: #0d6efd;
    --button-primary-text: #ffffff;
    --button-secondary-bg: #ffffff;
    --button-secondary-text: #0d6efd;
    --font-family-site: Inter, Arial, sans-serif;
    --card-radius: 1.25rem;
    --card-image-ratio: 4 / 3;
    --footer-bg: #111827;
    --footer-text: #ffffff;
    --navbar-bg: #ffffff;
    --navbar-text: #1f2937;
    --site-bg: #f7f8fb;
    --section-title: #111827;
    --card-bg: #ffffff;
}
body {
    background: var(--site-bg);
    font-family: var(--font-family-site);
}
.hero {
    background: linear-gradient(135deg, #ffffff 0%, var(--hero-bg) 100%);
    color: var(--hero-text);
    padding: 5rem 0 4rem;
}

.site-navbar {
    background: var(--navbar-bg);
}
.site-navbar .navbar-brand,
.site-navbar .nav-link {
    color: var(--navbar-text) !important;
}
.site-navbar .nav-link:hover {
    opacity: .82;
}
.hero-title {
    font-size: var(--hero-title-size);
    font-weight: 800;
    line-height: 1.08;
}
.hero-subtitle {
    font-size: var(--hero-subtitle-size);
}
.hero-card, .card-soft, .category-hero {
    border: 0;
    border-radius: var(--card-radius);
    box-shadow: 0 10px 30px rgba(0,0,0,.08);
    background: var(--card-bg);
}
.section-title {
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--section-title);
}
.business-cover {
    width: 100%;
    border-radius: var(--card-radius);
    background: #e9eef7;
    display: block;
}
.business-cover-placeholder {
    color: #6b7280;
    font-weight: 600;
}
.item-card img, .item-list-image {
    display: block;
    width: 100%;
    border-top-left-radius: var(--card-radius);
    border-top-right-radius: var(--card-radius);
    background: #e9eef7;
}
.carousel-slide {
    display: block;
    width: 100%;
    border-radius: 1rem;
    background: #e9eef7;
}
.logo-badge, .pill-label {
    background: #fff;
    padding: .35rem .75rem;
    border-radius: 999px;
    display: inline-block;
    box-shadow: 0 8px 18px rgba(0,0,0,.08);
}
.pill-label {
    font-size: .9rem;
}
.admin-sidebar a {
    display: block;
    padding: .75rem 1rem;
    color: #1f2937;
    text-decoration: none;
    border-radius: .75rem;
}
.admin-sidebar a:hover,
.admin-sidebar a.active {
    background: #e9f2ff;
    color: #0a58ca;
}
.table td, .table th {
    vertical-align: middle;
}
.btn-portal-primary {
    background: var(--button-primary-bg);
    color: var(--button-primary-text);
    border-color: var(--button-primary-bg);
}
.btn-portal-primary:hover {
    opacity: .92;
    color: var(--button-primary-text);
}
.btn-portal-secondary {
    background: var(--button-secondary-bg);
    color: var(--button-secondary-text);
    border: 1px solid var(--button-secondary-text);
}
.btn-portal-secondary:hover {
    opacity: .92;
    color: var(--button-secondary-text);
}
.quick-link-card {
    display: block;
    background: #fff;
    padding: 1.25rem 1.35rem;
    border-radius: var(--card-radius);
    text-decoration: none;
    box-shadow: 0 10px 20px rgba(0,0,0,.06);
    color: #1f2937;
}
.quick-link-card strong {
    display: block;
    margin-bottom: .25rem;
}
.quick-link-card span {
    color: #6b7280;
    font-size: .95rem;
}
.home-side-cover {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    border-radius: 1rem;
}
.category-hero {
    padding: 1.5rem;
}
.search-box .form-control {
    min-height: 48px;
}
.business-list-card {
    overflow: hidden;
}
.business-list-image {
    width: 100%;
    aspect-ratio: var(--card-image-ratio);
    object-fit: cover;
    background: #e9eef7;
}
.business-list-meta {
    display: grid;
    gap: .35rem;
    color: #4b5563;
}
.business-meta {
    display: grid;
    gap: .5rem;
    color: #4b5563;
}
.site-footer {
    background: var(--footer-bg);
    color: var(--footer-text);
}
.footer-copy {
    color: rgba(255,255,255,.75);
}
.form-help {
    font-size: .92rem;
    color: #6b7280;
}
@media (max-width: 767px) {
    .hero {
        padding: 3rem 0;
    }
    .hero-title {
        font-size: 2.3rem;
    }
    .hero-subtitle {
        font-size: 1rem;
    }
    .hero-actions .btn {
        width: 100%;
    }
    .business-grid > div {
        flex: 0 0 100%;
        max-width: 100%;
    }
}


.premium-panel {
    overflow: hidden;
}
.premium-tabs .nav-link {
    border-radius: 999px;
    padding: .7rem 1rem;
    color: #334155;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    font-weight: 600;
}
.premium-tabs .nav-link.active {
    background: #111827;
    border-color: #111827;
    color: #fff;
}
.color-input-wrap {
    display: grid;
    grid-template-columns: 56px 1fr;
    gap: .75rem;
    align-items: center;
}
.preview-current-image {
    max-width: 260px;
    border-radius: 14px;
    box-shadow: 0 10px 20px rgba(0,0,0,.08);
}
.toggle-card {
    display: block;
    cursor: pointer;
}
.toggle-card-ui {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.1rem;
    border: 1px solid #e5e7eb;
    border-radius: 1rem;
    background: #fff;
    transition: .2s ease;
}
.toggle-card.is-on .toggle-card-ui {
    border-color: #bfdbfe;
    background: #eff6ff;
}
.toggle-card-ui strong {
    display: block;
    margin-bottom: .1rem;
}
.toggle-indicator {
    width: 48px;
    height: 28px;
    border-radius: 999px;
    background: #cbd5e1;
    position: relative;
    flex: 0 0 auto;
}
.toggle-indicator::after {
    content: '';
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: #fff;
    position: absolute;
    top: 3px;
    left: 3px;
    box-shadow: 0 2px 6px rgba(0,0,0,.2);
    transition: .2s ease;
}
.toggle-card.is-on .toggle-indicator {
    background: #2563eb;
}
.toggle-card.is-on .toggle-indicator::after {
    left: 23px;
}
.premium-preview-wrap {
    top: 1.25rem;
}
.mini-home {
    font-family: var(--font-family-site);
    background: var(--site-bg);
    border-radius: 1.2rem;
    overflow: hidden;
    border: 1px solid #e5e7eb;
    box-shadow: inset 0 0 0 1px rgba(255,255,255,.5);
}
.mini-navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: .9rem 1rem;
    background: var(--navbar-bg);
    color: var(--navbar-text);
    border-bottom: 1px solid rgba(0,0,0,.06);
}
.mini-hero {
    padding: 1rem;
    background: linear-gradient(135deg, #fff 0%, var(--hero-bg) 100%);
    color: var(--hero-text);
}
.mini-badge {
    display: inline-block;
    padding: .3rem .6rem;
    border-radius: 999px;
    background: rgba(255,255,255,.9);
    box-shadow: 0 6px 14px rgba(0,0,0,.08);
    font-size: .7rem;
    margin-bottom: .75rem;
}
.mini-hero h3 {
    font-size: 1.45rem;
    line-height: 1.1;
    margin-bottom: .45rem;
    font-weight: 800;
}
.mini-hero p {
    font-size: .92rem;
    margin-bottom: .8rem;
    color: inherit;
}
.mini-buttons {
    display: grid;
    gap: .55rem;
    margin-bottom: .9rem;
}
.mini-btn {
    border: 0;
    border-radius: .85rem;
    padding: .7rem .9rem;
    font-weight: 700;
    text-align: left;
}
.mini-btn-primary {
    background: var(--button-primary-bg);
    color: var(--button-primary-text);
}
.mini-btn-secondary {
    background: var(--button-secondary-bg);
    color: var(--button-secondary-text);
    border: 1px solid var(--button-secondary-text);
}
.mini-card,
.mini-link,
.mini-business,
.mini-slide {
    background: var(--card-bg);
    border-radius: var(--card-radius);
    box-shadow: 0 10px 20px rgba(0,0,0,.06);
}
.mini-card {
    padding: .85rem;
    display: grid;
    gap: .45rem;
}
.mini-image {
    aspect-ratio: 16 / 9;
    border-radius: calc(var(--card-radius) - .2rem);
    background: linear-gradient(135deg, #dbeafe, #bfdbfe);
}
.mini-section {
    padding: 1rem;
}
.mini-link {
    padding: .9rem;
    margin-bottom: .7rem;
}
.mini-title {
    font-weight: 800;
    color: var(--section-title);
    margin-bottom: .75rem;
}
.mini-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: .75rem;
}
.mini-business {
    min-height: 90px;
}
.mini-slide {
    min-height: 120px;
}
.mini-footer {
    padding: 1rem;
    text-align: center;
    background: var(--footer-bg);
    color: var(--footer-text);
}
@media (max-width: 1199px) {
    .premium-preview-wrap {
        position: static !important;
    }
}


.stats-card-value {
    font-size: 2rem;
    font-weight: 800;
}
.sticky-lg-top {
    z-index: 1;
}
@media (min-width: 992px) {
    .sticky-lg-top {
        position: sticky;
    }
}

.map-frame {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    border-radius: 1rem;
    overflow: hidden;
    background: #e9eef7;
}
.map-frame iframe {
    width: 100%;
    height: 100%;
    border: 0;
}
.hero-actions .btn {
    box-shadow: 0 10px 25px rgba(0,0,0,.08);
}
@media (max-width: 575px) {
    .business-list-card .card-body,
    .item-card .card-body,
    .hero-card {
        padding: 1rem;
    }
    .mini-hero {
        padding: .85rem;
    }
    .category-hero {
        padding: 1rem;
    }
}


.home-cta-card {
    background: linear-gradient(135deg, #ffffff 0%, #ecfdf3 100%);
}
.home-final-cta {
    max-width: 100%;
    white-space: normal;
}
.toggle-card {
    user-select: none;
}
.toggle-card:focus-visible .toggle-card-ui {
    outline: 3px solid rgba(37, 99, 235, .25);
    outline-offset: 2px;
}


.site-navbar {
    border-bottom: 1px solid rgba(255,255,255,.08);
}
.brand-lockup {
    display: inline-flex;
    align-items: center;
    gap: .85rem;
    text-decoration: none;
}
.brand-lockup strong, .brand-lockup small {
    display: block;
    color: var(--navbar-text);
    line-height: 1.1;
}
.brand-lockup strong { font-size: 1.18rem; font-weight: 800; }
.brand-lockup small { font-size: .77rem; opacity: .8; text-transform: uppercase; letter-spacing: .03em; }
.brand-mark {
    width: 2.7rem;
    height: 2.7rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: rgba(230,169,61,.14);
    color: #e6a93d;
    flex: 0 0 auto;
}
.brand-mark svg { width: 1.45rem; height: 1.45rem; }
.small-mark { width: 2rem; height: 2rem; }
.small-mark svg { width: 1rem; height: 1rem; }
.hero-home {
    background:
      radial-gradient(circle at top right, rgba(230,169,61,.18), transparent 28%),
      linear-gradient(135deg, #061a31 0%, #0d2f57 45%, #184777 100%);
    color: #fff;
    position: relative;
    overflow: hidden;
}
.hero-chip {
    display: inline-flex;
    align-items: center;
    gap: .45rem;
    padding: .55rem .95rem;
    border-radius: 999px;
    border: 1px solid rgba(230,169,61,.55);
    background: rgba(8,31,58,.55);
    color: #f7c86d;
    font-weight: 600;
    margin-bottom: 1.15rem;
}
.hero-subtitle {
    max-width: 40rem;
    color: rgba(255,255,255,.88) !important;
}
.hero-search { max-width: 48rem; }
.search-shell {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: .8rem;
    align-items: center;
    background: rgba(255,255,255,.1);
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 1.1rem;
    padding: .6rem;
    box-shadow: 0 15px 35px rgba(5,18,35,.2);
}
.search-shell.compact { background: #fff; border-color: rgba(15,39,70,.08); }
.search-shell .form-control {
    min-height: 56px;
    border: 0;
    box-shadow: none;
    background: #fff;
    border-radius: .9rem;
    padding-inline: 1rem;
}
.search-shell.compact .form-control { background: #f7f9fc; }
.btn-search {
    min-height: 56px;
    border-radius: .9rem;
    min-width: 122px;
    background: #e6a93d;
    color: #102c4d;
    font-weight: 700;
    border: 0;
}
.btn-search:hover { background: #efb654; color: #102c4d; }
.form-text-search {
    display: inline-block;
    margin-top: .65rem;
    color: rgba(255,255,255,.72);
    font-size: .92rem;
}
.hero-category-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: .75rem;
}
.hero-category-card {
    background: rgba(8,31,58,.46);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 1rem;
    padding: .95rem .85rem;
    text-align: center;
    display: grid;
    gap: .45rem;
    color: #fff;
    font-weight: 600;
}
.hero-category-icon { font-size: 1.2rem; }
.hero-link-cards .portal-link-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.1rem;
    border-radius: 1.15rem;
    text-decoration: none;
    background: rgba(255,255,255,.97);
    color: #102c4d;
    box-shadow: 0 16px 36px rgba(5,18,35,.22);
    height: 100%;
}
.portal-link-icon {
    width: 3rem;
    height: 3rem;
    border-radius: .9rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #ecf3fb;
    font-size: 1.35rem;
    flex: 0 0 auto;
}
.portal-link-card strong, .portal-link-card small {
    display: block;
}
.portal-link-card strong { margin-bottom: .22rem; }
.portal-link-card small { color: #5f7187; }
.hero-visual-card {
    position: relative;
    padding: .75rem;
    border-radius: 2rem;
    background: linear-gradient(180deg, rgba(255,255,255,.11), rgba(255,255,255,.04));
    border: 1px solid rgba(255,255,255,.1);
    box-shadow: 0 25px 60px rgba(5,18,35,.28);
}
.hero-home-image {
    width: 100%;
    display: block;
    border-radius: 1.5rem;
    background: #dbe7f7;
}
.phone-mockup-shell {
    min-height: 540px;
    display: grid;
    place-items: center;
    padding: .8rem;
}
.phone-mockup {
    width: min(100%, 330px);
    background: linear-gradient(180deg, #071d37, #0e3159);
    color: #fff;
    border-radius: 2.3rem;
    padding: 1.2rem 1rem 1rem;
    box-shadow: 0 28px 60px rgba(5,18,35,.35);
    border: 5px solid rgba(255,255,255,.08);
}
.phone-topline {
    display: flex;
    align-items: center;
    gap: .65rem;
    margin-bottom: 1rem;
}
.phone-topline strong, .phone-topline small { display: block; line-height: 1.1; }
.phone-topline small { color: rgba(255,255,255,.72); font-size: .68rem; text-transform: uppercase; }
.phone-mockup h2 { font-size: 2rem; line-height: 1.02; font-weight: 800; margin-bottom: 1rem; }
.phone-search-bar {
    background: #fff;
    color: #6b7280;
    border-radius: 1rem;
    padding: .85rem .95rem;
    font-weight: 500;
    margin-bottom: 1rem;
}
.phone-categories {
    display: grid;
    grid-template-columns: repeat(2, minmax(0,1fr));
    gap: .7rem;
    margin-bottom: 1rem;
}
.phone-categories span, .phone-list-card {
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 1rem;
    padding: .8rem;
}
.phone-list-card small { display:block; color: rgba(255,255,255,.72); margin-top: .25rem; }
.section-head .pill-label { box-shadow: none; background: #edf3fb; }
.horizontal-card {
    display: grid;
    grid-template-columns: 130px 1fr;
    overflow: hidden;
}
.horizontal-card .business-list-image { height: 100%; aspect-ratio: auto !important; border-radius: 0; }
.category-hero {
    padding: 1.75rem;
    background: linear-gradient(180deg, #ffffff, #f4f8fd);
}
.home-cta-card {
    background: linear-gradient(135deg, #fff, #eef5ff);
}
.map-frame { border-radius: 1rem; overflow: hidden; }
.map-frame iframe { width: 100%; min-height: 340px; border: 0; }
@media (max-width: 991px) {
    .hero-category-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .horizontal-card { grid-template-columns: 1fr; }
    .horizontal-card .business-list-image { aspect-ratio: 16/9 !important; }
}
@media (max-width: 767px) {
    .brand-lockup strong { font-size: 1rem; }
    .brand-lockup small { font-size: .68rem; }
    .search-shell { grid-template-columns: 1fr; }
    .btn-search { width: 100%; }
    .phone-mockup-shell { min-height: auto; }
    .hero-link-cards .portal-link-card { padding: .9rem 1rem; }
    .hero-category-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .hero-home { padding-top: 2.4rem; }
}

/* v4 services and apply pages */
.search-shell {
    display: flex;
    align-items: center;
    gap: .75rem;
    background: rgba(255,255,255,.96);
    border: 1px solid rgba(15,23,42,.08);
    box-shadow: 0 16px 40px rgba(15,23,42,.08);
    border-radius: 1rem;
    padding: .9rem 1rem;
}

.search-shell.search-shell-lg {
    padding: 1rem 1.1rem;
}

.search-shell .search-icon {
    font-size: 1.2rem;
    opacity: .8;
}

.search-shell .form-control,
.search-shell .form-select {
    border: none;
    box-shadow: none !important;
    background: transparent;
}

.search-result-meta {
    font-size: .95rem;
    color: var(--muted-text);
}

.service-departments-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1rem;
}

.service-department-card {
    background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
    border: 1px solid rgba(15,23,42,.07);
    border-radius: 1.25rem;
    padding: 1.2rem;
    box-shadow: 0 18px 40px rgba(15,23,42,.05);
    height: 100%;
}

.service-department-card .department-icon {
    width: 3rem;
    height: 3rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 1rem;
    background: rgba(37,99,235,.10);
    font-size: 1.4rem;
    margin-bottom: .9rem;
}

.department-title-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: .75rem;
}

.category-chip-wrap {
    display: flex;
    flex-wrap: wrap;
    gap: .55rem;
}

.category-chip {
    display: inline-flex;
    align-items: center;
    gap: .35rem;
    padding: .5rem .75rem;
    border-radius: 999px;
    background: rgba(15,23,42,.05);
    border: 1px solid rgba(15,23,42,.06);
    text-decoration: none;
    color: var(--text-color);
    font-size: .92rem;
}

.category-chip:hover {
    background: rgba(37,99,235,.08);
    color: var(--primary-color);
}

.service-department-details {
    border-top: 1px solid rgba(15,23,42,.06);
    margin-top: 1rem;
    padding-top: 1rem;
}

.department-details-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: .75rem;
    margin-bottom: .75rem;
}

.soft-info-box {
    border-radius: 1rem;
    padding: 1rem 1.1rem;
    border: 1px solid rgba(15,23,42,.06);
    background: rgba(248,250,252,.9);
}

.business-public-cover {
    width: 100%;
    background: linear-gradient(135deg, #e8f0ff, #eef8ff);
}

.preview-current-image {
    border-radius: 1rem;
    max-height: 230px;
    object-fit: cover;
    background: #eef2f7;
}

.premium-tabs .nav-link {
    border-radius: 999px;
    font-weight: 600;
    color: var(--muted-text);
}

.premium-tabs .nav-link.active {
    background: rgba(37,99,235,.12);
    color: var(--primary-color);
}

.partner-apply-page .apply-hero {
    background: radial-gradient(circle at top right, rgba(37,99,235,.18), transparent 32%), linear-gradient(135deg, #0f172a 0%, #1d4ed8 100%);
    color: #fff;
    border-radius: 1.5rem;
    padding: clamp(1.5rem, 4vw, 3rem);
    box-shadow: 0 28px 60px rgba(15,23,42,.18);
}

.partner-apply-page .apply-badge {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    background: rgba(255,255,255,.14);
    border: 1px solid rgba(255,255,255,.22);
    border-radius: 999px;
    padding: .45rem .85rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.apply-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1rem;
}

.apply-step {
    background: #fff;
    border-radius: 1rem;
    border: 1px solid rgba(15,23,42,.06);
    padding: 1rem;
    height: 100%;
}

.apply-step .step-number {
    width: 2.1rem;
    height: 2.1rem;
    border-radius: 999px;
    background: rgba(37,99,235,.12);
    color: var(--primary-color);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    margin-bottom: .75rem;
}

.portal-link-card,
.home-cta-card {
    border-radius: 1.25rem;
    border: 1px solid rgba(15,23,42,.06);
    background: #fff;
    box-shadow: 0 18px 40px rgba(15,23,42,.05);
}

.home-final-cta {
    background: linear-gradient(135deg, #0f172a 0%, #2563eb 100%);
    color: #fff;
    border-radius: 1.5rem;
    padding: clamp(1.5rem, 4vw, 2.5rem);
}

.business-public-card .meta-list {
    display: grid;
    gap: .75rem;
}

@media (max-width: 767.98px) {
    .search-shell {
        flex-direction: column;
        align-items: stretch;
    }

    .search-shell .btn {
        width: 100%;
    }
}



/* ajuste do menu mobile e marca */
.site-navbar {
    background: var(--navbar-bg);
}

.custom-navbar-toggler {
    order: -1;
    border: 1px solid rgba(255,255,255,.45);
    background: rgba(255,255,255,.12);
    padding: .5rem .75rem;
    border-radius: .9rem;
    box-shadow: 0 8px 20px rgba(0,0,0,.12);
}

.custom-navbar-toggler:focus {
    box-shadow: 0 0 0 .2rem rgba(255,255,255,.2);
}

.custom-navbar-toggler .navbar-toggler-icon {
    filter: brightness(0) invert(1);
    opacity: 1;
}

.brand-lockup {
    gap: .8rem;
}

.brand-lockup strong {
    font-size: 1.35rem;
    line-height: 1.05;
}

.brand-lockup small {
    font-size: .78rem;
    line-height: 1.1;
    opacity: .92;
}

@media (max-width: 991.98px) {
    .site-navbar .container {
        display: flex;
        align-items: center;
        justify-content: space-between;
        flex-wrap: nowrap;
    }

    .custom-navbar-toggler {
        margin-right: .85rem !important;
        margin-left: 0 !important;
    }

    .brand-lockup {
        flex: 1 1 auto;
        min-width: 0;
    }

    .brand-lockup strong {
        font-size: 1.48rem;
    }

    .brand-lockup small {
        font-size: .8rem;
    }

    .navbar-collapse {
        margin-top: 1rem;
        background: rgba(8,31,58,.98);
        border: 1px solid rgba(255,255,255,.08);
        border-radius: 1rem;
        padding: .85rem;
        box-shadow: 0 16px 36px rgba(0,0,0,.18);
    }

    .navbar-collapse .nav-link {
        color: #fff !important;
        padding: .75rem .5rem;
    }
}

@media (max-width: 767.98px) {
    .brand-lockup strong {
        font-size: 1.4rem;
    }

    .brand-lockup small {
        font-size: .76rem;
    }
}



/* correção do topo mobile v2 */
.site-navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.brand-lockup {
    display: flex;
    align-items: center;
    gap: .85rem;
    flex: 1 1 auto;
    min-width: 0;
    text-decoration: none;
}

.brand-lockup > span:last-child {
    min-width: 0;
    overflow: hidden;
}

.brand-lockup strong,
.brand-lockup small {
    display: block;
    white-space: normal;
    word-break: break-word;
}

.brand-lockup strong {
    font-size: 1.42rem;
    line-height: 1.02;
    color: #fff;
}

.brand-lockup small {
    font-size: .84rem;
    line-height: 1.14;
    color: rgba(255,255,255,.92);
    margin-top: .15rem;
}

.custom-navbar-toggler {
    margin-left: auto !important;
    flex: 0 0 auto;
    border: 1px solid rgba(255,255,255,.42);
    background: rgba(255,255,255,.14);
    padding: .55rem .75rem;
    border-radius: .95rem;
    box-shadow: 0 10px 22px rgba(0,0,0,.14);
}

.custom-navbar-toggler .navbar-toggler-icon {
    filter: brightness(0) invert(1);
    opacity: 1;
}

@media (max-width: 991.98px) {
    .site-navbar .container {
        flex-wrap: wrap;
        row-gap: .85rem;
    }

    .brand-lockup {
        max-width: calc(100% - 74px);
    }

    .brand-lockup strong {
        font-size: 1.38rem;
    }

    .brand-lockup small {
        font-size: .82rem;
    }

    .navbar-collapse {
        width: 100%;
        margin-top: 0;
        background: rgba(8,31,58,.98);
        border: 1px solid rgba(255,255,255,.09);
        border-radius: 1rem;
        padding: .85rem;
        box-shadow: 0 16px 36px rgba(0,0,0,.18);
    }
}

@media (max-width: 575.98px) {
    .brand-lockup {
        max-width: calc(100% - 68px);
        gap: .7rem;
    }

    .brand-mark {
        width: 2.35rem;
        height: 2.35rem;
        flex: 0 0 2.35rem;
    }

    .brand-lockup strong {
        font-size: 1.2rem;
        line-height: 1.02;
    }

    .brand-lockup small {
        font-size: .72rem;
        line-height: 1.12;
    }

    .custom-navbar-toggler {
        padding: .48rem .65rem;
    }
}



/* ajuste fino do topo mobile v3 */
.custom-navbar-toggler {
    padding: .38rem .52rem !important;
    border-radius: .75rem !important;
}

.custom-navbar-toggler .navbar-toggler-icon {
    width: 1.08rem;
    height: 1.08rem;
}

.site-navbar {
    padding-top: .3rem;
    padding-bottom: .3rem;
}

.site-navbar .container {
    align-items: flex-start !important;
}

.brand-lockup {
    align-items: flex-start !important;
    padding-top: .05rem;
}

.brand-lockup > span:last-child {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.brand-lockup strong {
    margin-top: 0;
}

.brand-lockup small {
    margin-top: .05rem;
}

@media (max-width: 991.98px) {
    .site-navbar {
        padding-top: .22rem;
        padding-bottom: .22rem;
    }

    .site-navbar .container {
        align-items: flex-start !important;
    }

    .brand-lockup {
        align-items: flex-start !important;
        padding-top: 0;
    }

    .custom-navbar-toggler {
        margin-top: .08rem;
    }
}

@media (max-width: 575.98px) {
    .site-navbar {
        padding-top: .18rem;
        padding-bottom: .18rem;
    }

    .brand-lockup strong {
        font-size: 1.14rem !important;
    }

    .brand-lockup small {
        font-size: .69rem !important;
    }

    .custom-navbar-toggler {
        padding: .34rem .48rem !important;
    }

    .custom-navbar-toggler .navbar-toggler-icon {
        width: 1rem;
        height: 1rem;
    }
}



/* ajuste equilibrado do topo mobile v5 */
.site-navbar {
    padding-top: .28rem !important;
    padding-bottom: .28rem !important;
}

.site-navbar .container {
    align-items: center !important;
    justify-content: space-between !important;
    flex-wrap: wrap;
    row-gap: .75rem;
}

.brand-lockup {
    align-items: flex-start !important;
    padding-top: .02rem;
    max-width: calc(100% - 74px);
}

.brand-mark {
    margin-top: .06rem;
}

.brand-lockup strong {
    font-size: 1.16rem !important;
    line-height: 1.03 !important;
}

.brand-lockup small {
    font-size: .71rem !important;
    line-height: 1.12 !important;
    margin-top: .08rem !important;
}

.custom-navbar-toggler {
    margin-left: auto !important;
    margin-right: 0 !important;
    margin-top: .05rem !important;
    padding: .36rem .52rem !important;
    border-radius: .78rem !important;
}

.custom-navbar-toggler .navbar-toggler-icon {
    width: 1rem !important;
    height: 1rem !important;
}

@media (max-width: 575.98px) {
    .site-navbar {
        padding-top: .24rem !important;
        padding-bottom: .24rem !important;
    }

    .brand-lockup {
        max-width: calc(100% - 66px);
    }

    .brand-lockup strong {
        font-size: 1.08rem !important;
    }

    .brand-lockup small {
        font-size: .66rem !important;
    }

    .custom-navbar-toggler {
        padding: .32rem .46rem !important;
    }

    .custom-navbar-toggler .navbar-toggler-icon {
        width: .95rem !important;
        height: .95rem !important;
    }
}



/* ajuste definitivo do topo mobile v6 */
.site-navbar {
    padding-top: .44rem !important;
    padding-bottom: .44rem !important;
}

.site-navbar .container {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    flex-wrap: wrap !important;
    row-gap: .8rem;
    column-gap: .9rem;
}

.brand-lockup {
    display: flex !important;
    align-items: flex-start !important;
    gap: .72rem !important;
    flex: 1 1 auto !important;
    max-width: calc(100% - 72px) !important;
    min-width: 0 !important;
    padding-top: .18rem !important; /* abaixa um pouco */
    margin: 0 !important;
}

.brand-lockup > span:last-child {
    min-width: 0;
}

.brand-lockup strong {
    display: block;
    font-size: 1.1rem !important;
    line-height: 1.02 !important;
    margin: 0 !important;
}

.brand-lockup small {
    display: block;
    font-size: .68rem !important;
    line-height: 1.12 !important;
    margin-top: .09rem !important;
}

.custom-navbar-toggler {
    order: 2 !important;
    margin-left: auto !important;
    margin-right: 0 !important;
    flex: 0 0 auto !important;
    align-self: flex-start !important;
    margin-top: .18rem !important; /* abaixa junto */
    padding: .34rem .48rem !important;
    border-radius: .78rem !important;
    border: 1px solid rgba(255,255,255,.42) !important;
    background: rgba(255,255,255,.14) !important;
}

.custom-navbar-toggler .navbar-toggler-icon {
    width: .98rem !important;
    height: .98rem !important;
    filter: brightness(0) invert(1);
    opacity: 1;
}

@media (max-width: 575.98px) {
    .site-navbar {
        padding-top: .38rem !important;
        padding-bottom: .38rem !important;
    }

    .brand-lockup {
        max-width: calc(100% - 66px) !important;
        padding-top: .16rem !important;
    }

    .brand-lockup strong {
        font-size: 1.02rem !important;
    }

    .brand-lockup small {
        font-size: .63rem !important;
    }

    .custom-navbar-toggler {
        margin-top: .16rem !important;
        padding: .3rem .42rem !important;
    }

    .custom-navbar-toggler .navbar-toggler-icon {
        width: .92rem !important;
        height: .92rem !important;
    }
}



/* ajuste solicitado: marca +30% e subtítulo +20% */
.brand-lockup strong {
    font-size: 1.43rem !important;
}

.brand-lockup small {
    font-size: .82rem !important;
}

@media (max-width: 575.98px) {
    .brand-lockup strong {
        font-size: 1.33rem !important;
    }

    .brand-lockup small {
        font-size: .76rem !important;
    }
}



/* ajuste solicitado: ícone de localização +20% e menu +20% */
.brand-mark {
    width: 2.58rem !important;
    height: 2.58rem !important;
    flex: 0 0 2.58rem !important;
}

.brand-mark svg {
    width: 1.74rem !important;
    height: 1.74rem !important;
}

.custom-navbar-toggler {
    padding: .41rem .58rem !important;
}

.custom-navbar-toggler .navbar-toggler-icon {
    width: 1.18rem !important;
    height: 1.18rem !important;
}

@media (max-width: 575.98px) {
    .brand-mark {
        width: 2.34rem !important;
        height: 2.34rem !important;
        flex: 0 0 2.34rem !important;
    }

    .brand-mark svg {
        width: 1.58rem !important;
        height: 1.58rem !important;
    }

    .custom-navbar-toggler {
        padding: .38rem .50rem !important;
    }

    .custom-navbar-toggler .navbar-toggler-icon {
        width: 1.10rem !important;
        height: 1.10rem !important;
    }
}
