:root {
    --navy-980: #07182e;
    --navy-950: #0c264a;
    --navy-900: #113156;
    --navy-800: #20516c;
    --blue-500: #20aac4;
    --blue-600: #177e9c;
    --purple-500: #9b86ee;
    --purple-600: #6659ab;
    --teal-400: #75dfd0;
    --teal-500: #18a998;
    --white: #ffffff;
    --gray-25: #fcfdff;
    --gray-50: #f6f8fc;
    --gray-75: #f1f4f9;
    --gray-100: #e9eef6;
    --gray-200: #d8e0ec;
    --gray-400: #98a4b7;
    --gray-500: #66758d;
    --gray-700: #354158;
    --gray-900: #142039;
    --shadow-xs: 0 8px 22px rgba(7, 22, 47, .05);
    --shadow-sm: 0 14px 36px rgba(7, 22, 47, .08);
    --shadow-md: 0 22px 56px rgba(7, 22, 47, .12);
    --shadow-lg: 0 34px 90px rgba(3, 12, 29, .22);
    --radius-sm: 14px;
    --radius-md: 22px;
    --radius-lg: 32px;
    --container: 1180px;
    --font-body: "Plus Jakarta Sans", Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    --font-heading: Manrope, "Plus Jakarta Sans", ui-sans-serif, system-ui, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    color: var(--gray-900);
    background: var(--gray-25);
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}
body.nav-open { overflow: hidden; }
img, svg { max-width: 100%; height: auto; }
a { color: var(--blue-600); text-decoration: none; transition: color .2s ease; }
a:hover { color: var(--purple-600); }
button, input, textarea, select { font: inherit; }
button { cursor: pointer; }
h1, h2, h3, h4 { font-family: var(--font-heading); }
:focus-visible { outline: 3px solid rgba(21, 151, 255, .32); outline-offset: 3px; }

.container { width: min(calc(100% - 40px), var(--container)); margin-inline: auto; }
.skip-link {
    position: fixed;
    left: 16px;
    top: -90px;
    z-index: 9999;
    padding: 12px 18px;
    border-radius: 12px;
    background: var(--white);
    color: var(--navy-950);
    box-shadow: var(--shadow-lg);
}
.skip-link:focus { top: 16px; }

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(216, 224, 236, .78);
    background: rgba(255, 255, 255, .9);
    backdrop-filter: blur(18px);
}
.header-inner {
    min-height: 82px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}
.brand {
    display: inline-flex;
    align-items: center;
    flex: 0 0 auto;
}
.brand img {
    display: block;
    width: 158px;
    height: auto;
}
.primary-nav {
    display: flex;
    align-items: center;
    gap: 3px;
}
.primary-nav a {
    position: relative;
    padding: 12px 14px;
    border-radius: 13px;
    color: var(--gray-700);
    font-size: .92rem;
    font-weight: 700;
}
.primary-nav a:not(.header-cta)::after {
    content: "";
    position: absolute;
    left: 14px;
    right: 14px;
    bottom: 6px;
    height: 2px;
    border-radius: 99px;
    background: linear-gradient(90deg, var(--blue-600), var(--purple-600));
    transform: scaleX(0);
    transform-origin: center;
    transition: transform .2s ease;
}
.primary-nav a:hover,
.primary-nav a[aria-current="page"] {
    color: var(--blue-600);
    background: rgba(21, 151, 255, .075);
}
.primary-nav a:hover::after,
.primary-nav a[aria-current="page"]::after { transform: scaleX(1); }
.header-cta {
    margin-left: 8px;
    min-height: 48px;
    padding-inline: 19px !important;
    color: var(--white) !important;
    background: linear-gradient(135deg, var(--blue-600), var(--purple-600)) !important;
    box-shadow: 0 12px 28px rgba(47, 102, 255, .22);
}
.header-cta:hover {
    color: var(--white) !important;
    transform: translateY(-1px);
}
.nav-toggle {
    display: none;
    width: 46px;
    height: 46px;
    padding: 0;
    border: 1px solid var(--gray-100);
    border-radius: 14px;
    background: var(--gray-50);
    place-items: center;
}
.nav-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    margin: 2.5px auto;
    border-radius: 99px;
    background: var(--navy-950);
    transition: transform .2s ease, opacity .2s ease;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.hero {
    position: relative;
    overflow: hidden;
    padding: 92px 0 84px;
    color: var(--white);
    background:
        radial-gradient(circle at 85% 10%, rgba(21, 151, 255, .22), transparent 32%),
        radial-gradient(circle at 5% 100%, rgba(124, 58, 237, .25), transparent 29%),
        linear-gradient(135deg, var(--navy-980), var(--navy-800) 63%, #43178b);
}
.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background-image:
        linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
    background-size: 42px 42px;
    mask-image: linear-gradient(to bottom, rgba(0,0,0,.65), transparent 90%);
}
.hero-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(340px, .8fr);
    align-items: center;
    gap: 72px;
}
.hero-content { min-width: 0; }
.eyebrow,
.page-kicker,
.content-kicker,
.prefooter-kicker,
.panel-kicker {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: .75rem;
    font-weight: 800;
    letter-spacing: .11em;
    text-transform: uppercase;
}
.eyebrow {
    margin-bottom: 20px;
    color: #a8f1e7;
}
.eyebrow::before,
.page-kicker::before {
    content: "";
    width: 28px;
    height: 3px;
    border-radius: 99px;
    background: linear-gradient(90deg, var(--teal-400), var(--blue-500));
}
.eyebrow-dark { color: #087d73; }
.hero h1 {
    max-width: 760px;
    margin: 0 0 24px;
    font-size: clamp(2.8rem, 6vw, 5.3rem);
    line-height: 1.01;
    letter-spacing: -.06em;
}
.hero h1 span {
    color: transparent;
    background: linear-gradient(90deg, #73eadc, #69baff, #bd95ff);
    background-clip: text;
    -webkit-background-clip: text;
}
.hero-copy {
    max-width: 700px;
    margin: 0 0 34px;
    color: #d5e2fb;
    font-size: clamp(1rem, 1.8vw, 1.16rem);
}
.hero-search {
    display: flex;
    gap: 10px;
    max-width: 720px;
    padding: 8px;
    border: 1px solid rgba(255,255,255,.18);
    border-radius: 18px;
    background: rgba(255,255,255,.1);
    box-shadow: 0 24px 64px rgba(0,0,0,.2);
}
.hero-search input {
    flex: 1;
    min-width: 0;
    border: 0;
    border-radius: 12px;
    padding: 15px 17px;
    background: var(--white);
    color: var(--gray-900);
}
.hero-search button {
    border: 0;
    border-radius: 12px;
    padding: 14px 24px;
    color: var(--white);
    font-weight: 800;
    background: linear-gradient(135deg, var(--teal-500), var(--blue-500));
    box-shadow: 0 10px 24px rgba(21, 151, 255, .25);
}
.hero-note {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    margin-top: 20px;
    color: #b7c8e8;
    font-size: .84rem;
}
.hero-note span {
    display: inline-flex;
    align-items: center;
    gap: 7px;
}
.hero-note span::before {
    content: "✓";
    display: grid;
    place-items: center;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    color: var(--navy-950);
    background: #8ce9dd;
    font-size: .68rem;
    font-weight: 900;
}
.hero-panel {
    padding: 28px;
    border: 1px solid rgba(255,255,255,.16);
    border-radius: var(--radius-lg);
    background: linear-gradient(145deg, rgba(255,255,255,.11), rgba(255,255,255,.06));
    backdrop-filter: blur(18px);
    box-shadow: var(--shadow-lg);
}
.hero-panel-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 18px;
    padding-bottom: 18px;
    border-bottom: 1px solid rgba(255,255,255,.11);
}
.hero-panel-header small {
    display: block;
    margin-bottom: 3px;
    color: #aabddd;
    font-size: .72rem;
    text-transform: uppercase;
    letter-spacing: .08em;
}
.hero-panel-header strong { display: block; font-family: var(--font-heading); font-size: 1.05rem; }
.live-dot {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
    color: #c4eee8;
    font-size: .74rem;
}
.live-dot::before {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--teal-400);
    box-shadow: 0 0 0 6px rgba(51,213,195,.13);
}
.quick-list { display: grid; gap: 11px; }
.quick-item {
    display: grid;
    grid-template-columns: 48px 1fr auto;
    align-items: center;
    gap: 14px;
    padding: 14px;
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 17px;
    color: var(--white);
    background: rgba(255,255,255,.075);
    transition: transform .2s ease, background .2s ease;
}
.quick-item:hover {
    color: var(--white);
    transform: translateX(3px);
    background: rgba(255,255,255,.13);
}
.quick-icon {
    display: grid;
    place-items: center;
    width: 48px;
    height: 48px;
    border-radius: 15px;
    color: #dffcf8;
    background: linear-gradient(135deg, rgba(51,213,195,.25), rgba(21,151,255,.26));
    font-size: .84rem;
    font-weight: 900;
}
.quick-item strong { display: block; font-family: var(--font-heading); }
.quick-item small { display: block; margin-top: 2px; color: #aebfdd; font-size: .78rem; }
.quick-arrow { color: #8de4d9; font-size: 1.2rem; }

.section { padding: 82px 0; }
.section-page { padding: 72px 0; }
.section-page + .section-page { padding-top: 0; }
.section-page-first { padding-top: 72px !important; }
.section-soft { background: linear-gradient(180deg, var(--gray-50), var(--white)); }
.section-dark {
    color: var(--white);
    background:
        radial-gradient(circle at 80% 0%, rgba(47,102,255,.15), transparent 34%),
        var(--navy-980);
}
.section-heading {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 28px;
    margin-bottom: 36px;
}
.section-heading h2 {
    margin: 0;
    color: var(--navy-950);
    font-size: clamp(2rem, 4vw, 3.15rem);
    line-height: 1.08;
    letter-spacing: -.045em;
}
.section-heading p {
    max-width: 670px;
    margin: 12px 0 0;
    color: var(--gray-500);
}
.section-dark .section-heading h2,
.directory-panel-dark .section-heading h2 { color: var(--white); }
.section-dark .section-heading p,
.directory-panel-dark .section-heading p { color: #b9c7e1; }

.category-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}
.category-card {
    position: relative;
    overflow: hidden;
    min-height: 300px;
    padding: 28px;
    border: 1px solid var(--gray-100);
    border-radius: var(--radius-md);
    color: var(--gray-900);
    background: rgba(255,255,255,.94);
    box-shadow: var(--shadow-sm);
    transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}
.category-card::after {
    content: "";
    position: absolute;
    width: 170px;
    height: 170px;
    right: -70px;
    bottom: -85px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(21,151,255,.12), rgba(124,58,237,.14));
}
.category-card:hover {
    color: var(--gray-900);
    transform: translateY(-6px);
    border-color: rgba(47,102,255,.26);
    box-shadow: var(--shadow-md);
}
.category-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 44px;
}
.category-icon {
    display: grid;
    place-items: center;
    width: 58px;
    height: 58px;
    border-radius: 18px;
    color: var(--white);
    background: linear-gradient(135deg, var(--blue-500), var(--purple-600));
    box-shadow: 0 14px 32px rgba(47,102,255,.22);
    font-size: .87rem;
    font-weight: 900;
}
.category-count {
    padding: 7px 10px;
    border: 1px solid var(--gray-100);
    border-radius: 999px;
    color: var(--gray-500);
    background: var(--gray-50);
    font-size: .73rem;
    font-weight: 700;
}
.category-card h3 {
    margin: 0 0 10px;
    font-size: 1.38rem;
}
.category-card p {
    position: relative;
    z-index: 1;
    margin: 0 0 26px;
    color: var(--gray-500);
}
.category-card > strong {
    position: relative;
    z-index: 1;
    color: var(--blue-600);
    font-size: .88rem;
}
.category-card > strong span { margin-left: 4px; }

.listing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(290px, 360px));
    gap: 22px;
}
.listing-card {
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 100%;
    padding: 25px;
    border: 1px solid var(--gray-100);
    border-radius: var(--radius-md);
    background: var(--white);
    box-shadow: var(--shadow-sm);
    transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}
.listing-card::before {
    content: "";
    position: absolute;
    inset: 0 auto 0 0;
    width: 4px;
    border-radius: var(--radius-md) 0 0 var(--radius-md);
    background: linear-gradient(180deg, var(--blue-500), var(--purple-600));
    opacity: 0;
    transition: opacity .2s ease;
}
.listing-card-sponsored::before { opacity: 1; }
.listing-card:hover {
    transform: translateY(-5px);
    border-color: rgba(47,102,255,.22);
    box-shadow: var(--shadow-md);
}
.listing-card:hover::before { opacity: 1; }
.listing-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 14px;
    margin-bottom: 20px;
}
.listing-mark {
    display: grid;
    place-items: center;
    width: 54px;
    height: 54px;
    flex: 0 0 auto;
    border-radius: 17px;
    color: var(--white);
    background: linear-gradient(135deg, var(--navy-800), var(--blue-600), var(--purple-600));
    box-shadow: 0 12px 28px rgba(47,102,255,.18);
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 900;
}
.badge {
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    padding: 6px 10px;
    border-radius: 999px;
    color: #08796f;
    background: rgba(24,184,167,.1);
    font-size: .68rem;
    font-weight: 800;
    line-height: 1;
}
.badge-sponsored {
    color: var(--purple-600);
    background: rgba(124,58,237,.1);
}
.badge-on-dark {
    color: #b8fff6;
    border: 1px solid rgba(255,255,255,.12);
    background: rgba(255,255,255,.08);
}
.badge-on-dark.badge-sponsored {
    color: #f2eaff;
    background: rgba(147,82,255,.22);
}
.listing-content { flex: 1; }
.listing-card h3 {
    margin: 0 0 7px;
    font-size: 1.28rem;
    line-height: 1.24;
}
.listing-card h3 a { color: var(--blue-600); }
.listing-location {
    margin-bottom: 13px;
    color: var(--gray-500);
    font-size: .83rem;
}
.listing-card p {
    margin: 0 0 22px;
    color: var(--gray-500);
    font-size: .93rem;
}
.listing-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    margin-top: auto;
    padding-top: 18px;
    border-top: 1px solid var(--gray-100);
}
.listing-footer a { font-size: .86rem; font-weight: 800; }
.listing-footer small { color: var(--gray-500); font-size: .71rem; }

.guide-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
}
.guide-card {
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 290px;
    padding: 28px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,.12);
    border-radius: var(--radius-md);
    color: var(--white);
    background: linear-gradient(145deg, rgba(255,255,255,.075), rgba(255,255,255,.045));
    transition: transform .22s ease, background .22s ease, border-color .22s ease;
}
.guide-card::before {
    content: "";
    position: absolute;
    width: 140px;
    height: 140px;
    right: -70px;
    bottom: -70px;
    border-radius: 50%;
    background: rgba(21,151,255,.08);
}
.guide-card:hover {
    color: var(--white);
    transform: translateY(-5px);
    border-color: rgba(117,213,255,.28);
    background: linear-gradient(145deg, rgba(255,255,255,.11), rgba(255,255,255,.065));
}
.guide-card-top {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 14px;
    flex-wrap: wrap;
}
.guide-badge {
    display: inline-flex;
    align-items: center;
    min-height: 27px;
    padding: 6px 10px;
    border: 1px solid rgba(142,230,219,.18);
    border-radius: 999px;
    color: #a1f3e9;
    background: rgba(24,184,167,.14);
    font-size: .66rem;
    font-weight: 900;
    line-height: 1;
    text-transform: uppercase;
    letter-spacing: .055em;
}
.guide-badge-sponsored {
    color: #f4ecff;
    background: linear-gradient(135deg, rgba(147,82,255,.85), rgba(47,102,255,.82));
    border-color: rgba(255,255,255,.18);
}
.guide-meta {
    color: #8ce5da;
    font-size: .69rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .065em;
}
.guide-card h3 {
    position: relative;
    z-index: 1;
    margin: 18px 0 11px;
    font-size: 1.4rem;
    line-height: 1.24;
}
.guide-card p {
    position: relative;
    z-index: 1;
    margin: 0 0 26px;
    color: #b9c8e3;
    font-size: .93rem;
}
.guide-card > strong {
    position: relative;
    z-index: 1;
    margin-top: auto;
    color: #95eee3;
    font-size: .85rem;
}
.guide-card-sponsored {
    border-color: rgba(173,139,255,.48);
    background: linear-gradient(145deg, rgba(124,58,237,.18), rgba(47,102,255,.1));
}
.guide-card-sponsored::after {
    content: "";
    position: absolute;
    top: 19px;
    right: 18px;
    color: rgba(255,255,255,.045);
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 900;
    letter-spacing: .08em;
    pointer-events: none;
}

.trust-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(420px, .9fr);
    gap: 64px;
    align-items: center;
}
.trust-copy h2 {
    margin: 0 0 20px;
    color: var(--navy-950);
    font-size: clamp(2rem, 4vw, 3.15rem);
    line-height: 1.08;
    letter-spacing: -.045em;
}
.trust-copy p { color: var(--gray-500); }
.check-list {
    display: grid;
    gap: 13px;
    margin: 26px 0 0;
    padding: 0;
    list-style: none;
}
.check-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: var(--gray-700);
}
.check-list li::before {
    content: "✓";
    display: grid;
    place-items: center;
    width: 24px;
    height: 24px;
    flex: 0 0 auto;
    border-radius: 8px;
    color: #08796f;
    background: rgba(24,184,167,.12);
    font-size: .75rem;
    font-weight: 900;
}
.trust-panel,
.form-aside {
    padding: 34px;
    border-radius: var(--radius-lg);
    color: var(--white);
    background:
        radial-gradient(circle at 100% 0%, rgba(47,102,255,.2), transparent 38%),
        linear-gradient(145deg, var(--navy-950), var(--navy-800));
    box-shadow: var(--shadow-md);
}
.panel-kicker {
    margin-bottom: 10px;
    color: #8ce8dd;
}
.trust-panel h3,
.form-aside h2 {
    margin: 0 0 20px;
    color: var(--white);
    font-size: 1.55rem;
}
.trust-stat {
    display: grid;
    grid-template-columns: 58px 1fr;
    gap: 16px;
    align-items: center;
    padding: 18px 0;
    border-top: 1px solid rgba(255,255,255,.1);
}
.trust-stat:first-of-type { border-top: 0; }
.trust-stat b,
.process-list b {
    display: grid;
    place-items: center;
    width: 58px;
    height: 58px;
    border-radius: 18px;
    color: #93eee3;
    background: linear-gradient(135deg, rgba(24,184,167,.2), rgba(21,151,255,.24));
    font-size: .82rem;
}
.trust-stat strong { display: block; }
.trust-stat span {
    display: block;
    margin-top: 3px;
    color: #b7c7e3;
    font-size: .86rem;
}

.page-hero {
    position: relative;
    overflow: hidden;
    padding: 64px 0 58px;
    color: var(--white);
    background:
        radial-gradient(circle at 90% 10%, rgba(21,151,255,.2), transparent 32%),
        radial-gradient(circle at 10% 100%, rgba(124,58,237,.2), transparent 28%),
        linear-gradient(135deg, var(--navy-980), var(--navy-800));
}
.page-hero::after {
    content: "";
    position: absolute;
    width: 420px;
    height: 420px;
    right: -180px;
    bottom: -260px;
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 50%;
    box-shadow: 0 0 0 60px rgba(255,255,255,.025), 0 0 0 120px rgba(255,255,255,.018);
}
.page-hero-inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 240px;
    align-items: center;
    gap: 70px;
}
.page-hero-copy { min-width: 0; }
.breadcrumbs {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    margin: 0 0 22px;
    padding: 0;
    list-style: none;
    color: #aabbd8;
    font-size: .82rem;
}
.breadcrumbs a { color: #b8cbeb; }
.breadcrumbs a:hover { color: var(--white); }
.breadcrumbs li:not(:last-child)::after {
    content: "/";
    margin-left: 8px;
    color: rgba(255,255,255,.28);
}
.page-kicker {
    margin-bottom: 14px;
    color: #9cf0e6;
}
.page-title {
    max-width: 880px;
    margin: 0;
    color: var(--white);
    font-size: clamp(2.35rem, 5vw, 4.35rem);
    line-height: 1.04;
    letter-spacing: -.052em;
}
.page-intro {
    max-width: 780px;
    margin: 18px 0 0;
    color: #c2d0e9;
    font-size: clamp(1rem, 1.8vw, 1.13rem);
}
.page-hero-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 24px;
}
.page-hero-meta span {
    padding: 8px 12px;
    border: 1px solid rgba(255,255,255,.11);
    border-radius: 999px;
    color: #b9c8e2;
    background: rgba(255,255,255,.06);
    font-size: .76rem;
}
.page-hero-meta strong { color: var(--white); }
.page-hero-symbol {
    position: relative;
    z-index: 1;
    display: grid;
    place-items: center;
    justify-self: end;
    width: 190px;
    height: 190px;
    border: 1px solid rgba(255,255,255,.15);
    border-radius: 48px;
    background: linear-gradient(145deg, rgba(255,255,255,.11), rgba(255,255,255,.055));
    box-shadow: 0 24px 70px rgba(0,0,0,.18);
    transform: rotate(4deg);
}
.page-hero-symbol::before {
    content: "";
    position: absolute;
    inset: 14px;
    border: 1px solid rgba(255,255,255,.09);
    border-radius: 38px;
}
.page-hero-symbol > span {
    position: relative;
    color: var(--white);
    font-family: var(--font-heading);
    font-size: 4.4rem;
    font-weight: 800;
    line-height: 1;
}
.page-hero-symbol > small {
    position: absolute;
    bottom: 28px;
    color: #a7b9d6;
    font-size: .68rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .08em;
}
.page-hero-symbol-brand > span {
    color: transparent;
    background: linear-gradient(135deg, #6fe6da, #5fb5ff, #bc93ff);
    background-clip: text;
    -webkit-background-clip: text;
}
.page-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 26px;
}

.directory-panel {
    padding: 36px;
    border: 1px solid var(--gray-100);
    border-radius: var(--radius-lg);
    background: var(--white);
    box-shadow: var(--shadow-xs);
}
.directory-panel-dark {
    color: var(--white);
    border-color: rgba(255,255,255,.08);
    background:
        radial-gradient(circle at 90% 0%, rgba(47,102,255,.15), transparent 36%),
        var(--navy-980);
    box-shadow: var(--shadow-md);
}

.content-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 330px;
    gap: 38px;
    align-items: start;
}
.article-card {
    min-width: 0;
    padding: 38px;
    border: 1px solid var(--gray-100);
    border-radius: var(--radius-lg);
    background: var(--white);
    box-shadow: var(--shadow-sm);
}
.sidebar {
    position: sticky;
    top: 104px;
    display: grid;
    gap: 18px;
}
.sidebar-card {
    padding: 23px;
    border: 1px solid var(--gray-100);
    border-radius: var(--radius-md);
    background: var(--white);
    box-shadow: var(--shadow-xs);
}
.sidebar-card-accent {
    border-color: rgba(21,151,255,.16);
    background: linear-gradient(145deg, rgba(21,151,255,.06), rgba(124,58,237,.035));
}
.sidebar-card-sponsored {
    border-color: rgba(124,58,237,.2);
    background: linear-gradient(145deg, rgba(124,58,237,.08), rgba(47,102,255,.04));
}
.sidebar-label {
    display: block;
    margin-bottom: 8px;
    color: var(--purple-600);
    font-size: .68rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .08em;
}
.sidebar-card h3 {
    margin: 0 0 12px;
    color: var(--navy-950);
    font-size: 1.05rem;
}
.sidebar-card p,
.sidebar-card li {
    color: var(--gray-500);
    font-size: .9rem;
}
.sidebar-card ul { margin: 0; padding-left: 19px; }
.sidebar-links { display: grid; gap: 4px; }
.sidebar-links a,
.sidebar-action {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 10px 0;
    border-bottom: 1px solid var(--gray-100);
    color: var(--gray-700);
    font-size: .88rem;
    font-weight: 700;
}
.sidebar-links a:last-child,
.sidebar-action:last-child { border-bottom: 0; }
.sidebar-action { color: var(--blue-600); }
.sidebar-checks {
    display: grid;
    gap: 10px;
    padding: 0 !important;
    list-style: none;
}
.sidebar-checks li {
    display: flex;
    align-items: flex-start;
    gap: 9px;
}
.sidebar-checks li::before {
    content: "✓";
    color: var(--teal-500);
    font-weight: 900;
}

.article-body { color: var(--gray-700); }
.article-body > :first-child { margin-top: 0; }
.article-body h2 {
    margin: 40px 0 14px;
    color: var(--navy-950);
    font-size: 1.65rem;
    line-height: 1.22;
    letter-spacing: -.02em;
}
.article-body h3 {
    margin: 28px 0 10px;
    color: var(--navy-950);
    font-size: 1.2rem;
}
.article-body p,
.article-body li { color: var(--gray-700); }
.article-body ul,
.article-body ol { padding-left: 22px; }
.article-body li + li { margin-top: 8px; }
.article-body a {
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 3px;
}
.article-body code {
    padding: 2px 6px;
    border-radius: 7px;
    color: var(--purple-600);
    background: rgba(124,58,237,.07);
}
.article-callout {
    margin: 34px 0;
    padding: 23px;
    border: 1px solid rgba(21,151,255,.16);
    border-radius: var(--radius-md);
    background: linear-gradient(135deg, rgba(21,151,255,.07), rgba(124,58,237,.055));
}
.article-callout p:last-child { margin-bottom: 0; }

.page-hero-company { padding-bottom: 64px; }
.company-header {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 86px minmax(0, 1fr) auto;
    gap: 24px;
    align-items: center;
    margin-top: 12px;
}
.company-logo-placeholder {
    display: grid;
    place-items: center;
    width: 86px;
    height: 86px;
    border: 1px solid rgba(255,255,255,.15);
    border-radius: 25px;
    color: var(--white);
    background: linear-gradient(135deg, var(--blue-500), var(--purple-600));
    box-shadow: 0 18px 44px rgba(0,0,0,.2);
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 900;
}
.company-heading h1 {
    margin: 10px 0 7px;
    color: var(--white);
    font-size: clamp(2.2rem, 5vw, 4rem);
    line-height: 1.04;
    letter-spacing: -.05em;
}
.company-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 9px 18px;
    color: #b9c8e2;
    font-size: .85rem;
}
.company-hero-button { min-width: 180px; }
.company-content { color: var(--gray-700); }
.company-section + .company-section {
    margin-top: 38px;
    padding-top: 34px;
    border-top: 1px solid var(--gray-100);
}
.content-kicker {
    margin-bottom: 8px;
    color: var(--teal-500);
}
.company-section h2 {
    margin: 0 0 15px;
    color: var(--navy-950);
    font-size: 1.55rem;
}
.service-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.service-tag {
    padding: 9px 12px;
    border: 1px solid var(--gray-100);
    border-radius: 999px;
    color: var(--gray-700);
    background: var(--gray-50);
    font-size: .82rem;
    font-weight: 700;
}
.related-guide-list { display: grid; gap: 12px; }
.related-guide-list a {
    display: grid;
    grid-template-columns: 42px 1fr;
    gap: 13px;
    align-items: start;
    padding: 17px;
    border: 1px solid var(--gray-100);
    border-radius: 16px;
    color: var(--gray-900);
    background: var(--gray-50);
    transition: border-color .2s ease, transform .2s ease;
}
.related-guide-list a:hover {
    color: var(--gray-900);
    transform: translateX(3px);
    border-color: rgba(21,151,255,.22);
}
.related-guide-icon,
.service-link-icon {
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    border-radius: 13px;
    color: var(--blue-600);
    background: rgba(21,151,255,.09);
    font-weight: 900;
}
.related-guide-list strong { display: block; }
.related-guide-list small {
    display: block;
    margin-top: 4px;
    color: var(--gray-500);
    font-size: .83rem;
}
.service-link-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    margin-top: 18px;
}
.service-link-card {
    display: grid;
    grid-template-columns: 42px 1fr;
    gap: 4px 13px;
    padding: 17px;
    border: 1px solid var(--gray-100);
    border-radius: 16px;
    color: var(--gray-900);
    background: linear-gradient(135deg, var(--white), var(--gray-50));
    transition: transform .2s ease, border-color .2s ease;
}
.service-link-card:hover {
    color: var(--gray-900);
    transform: translateY(-2px);
    border-color: rgba(47,102,255,.24);
}
.service-link-card .service-link-icon { grid-row: 1 / span 2; }
.service-link-card strong { align-self: end; }
.service-link-card small {
    color: var(--blue-600);
    font-size: .78rem;
    font-weight: 700;
}
.disclosure {
    margin-top: 34px;
    padding: 18px 20px;
    border-left: 4px solid var(--purple-600);
    border-radius: 0 14px 14px 0;
    color: var(--gray-700);
    background: rgba(124,58,237,.07);
    font-size: .88rem;
}
.disclosure-editorial {
    border-color: var(--teal-500);
    background: rgba(24,184,167,.07);
}
.info-list { display: grid; gap: 14px; }
.info-list div {
    padding-bottom: 13px;
    border-bottom: 1px solid var(--gray-100);
}
.info-list div:last-child { padding-bottom: 0; border-bottom: 0; }
.info-list small {
    display: block;
    margin-bottom: 3px;
    color: var(--gray-500);
    font-size: .73rem;
}
.info-list strong {
    display: block;
    color: var(--gray-900);
    font-size: .88rem;
}

.page-hero-article { padding-bottom: 68px; }
.article-hero {
    position: relative;
    z-index: 1;
    max-width: 920px;
}
.article-classification {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}
.article-kicker,
.article-sponsor-badge,
.article-editorial-badge {
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    padding: 6px 10px;
    border-radius: 999px;
    font-size: .68rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .07em;
}
.article-kicker {
    color: #a2f3ea;
    background: rgba(24,184,167,.13);
    border: 1px solid rgba(162,243,234,.15);
}
.article-sponsor-badge {
    color: var(--white);
    background: linear-gradient(135deg, var(--purple-600), var(--blue-600));
}
.article-editorial-badge {
    color: #d7e7ff;
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.11);
}
.article-hero h1 {
    margin: 18px 0 18px;
    color: var(--white);
    font-size: clamp(2.35rem, 5.2vw, 4.65rem);
    line-height: 1.03;
    letter-spacing: -.056em;
}
.article-lead {
    max-width: 830px;
    margin: 0;
    color: #c3d1e9;
    font-size: clamp(1rem, 1.8vw, 1.17rem);
}
.article-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 22px;
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,.11);
    color: #9fb0cd;
    font-size: .79rem;
}

.form-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(330px, .75fr);
    gap: 30px;
    align-items: start;
}
.form-card {
    padding: 34px;
    border: 1px solid var(--gray-100);
    border-radius: var(--radius-lg);
    background: var(--white);
    box-shadow: var(--shadow-sm);
}
.form-card-heading { margin-bottom: 28px; }
.form-card-heading h2 {
    margin: 0;
    color: var(--navy-950);
    font-size: 1.8rem;
}
.form-card-heading p {
    margin: 9px 0 0;
    color: var(--gray-500);
}
.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}
.form-group {
    display: grid;
    gap: 8px;
}
.form-group-full { grid-column: 1 / -1; }
.form-group label {
    color: var(--gray-700);
    font-size: .84rem;
    font-weight: 800;
}
.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 14px 15px;
    border: 1px solid var(--gray-200);
    border-radius: 13px;
    color: var(--gray-900);
    background: var(--white);
    transition: border-color .2s ease, box-shadow .2s ease;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: rgba(47,102,255,.56);
    box-shadow: 0 0 0 4px rgba(47,102,255,.08);
    outline: none;
}
.form-group textarea {
    min-height: 150px;
    resize: vertical;
}
.form-note {
    margin: 18px 0 0;
    color: var(--gray-500);
    font-size: .82rem;
}
.button-full { width: 100%; }
.process-list { display: grid; }
.process-list > div {
    display: grid;
    grid-template-columns: 52px 1fr;
    gap: 14px;
    align-items: center;
    padding: 18px 0;
    border-top: 1px solid rgba(255,255,255,.1);
}
.process-list > div:first-child { border-top: 0; }
.process-list b {
    width: 52px;
    height: 52px;
    border-radius: 16px;
}
.process-list strong { display: block; }
.process-list small {
    display: block;
    margin-top: 3px;
    color: #b7c7e3;
}
.form-aside-note {
    margin-top: 24px;
    padding: 18px;
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 16px;
    background: rgba(255,255,255,.06);
}
.form-aside-note p {
    margin: 6px 0 0;
    color: #b8c8e3;
    font-size: .85rem;
}

.search-panel {
    padding: 34px;
    border: 1px solid var(--gray-100);
    border-radius: var(--radius-lg);
    background: var(--white);
    box-shadow: var(--shadow-sm);
}
.search-box {
    display: flex;
    gap: 10px;
    max-width: 820px;
}
.search-box input {
    flex: 1;
    min-width: 0;
    padding: 15px 17px;
    border: 1px solid var(--gray-200);
    border-radius: 13px;
    background: var(--white);
}
.search-summary {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin-top: 30px;
    color: var(--gray-500);
}
.search-summary strong {
    color: var(--navy-950);
    font-family: var(--font-heading);
    font-size: 1.7rem;
}
.search-results {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
    margin-top: 20px;
}
.search-result {
    padding: 23px;
    border: 1px solid var(--gray-100);
    border-radius: var(--radius-md);
    background: var(--gray-25);
    transition: transform .2s ease, border-color .2s ease;
}
.search-result:hover {
    transform: translateY(-3px);
    border-color: rgba(47,102,255,.22);
}
.search-result small {
    color: var(--teal-500);
    font-size: .68rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .06em;
}
.search-result h2 {
    margin: 9px 0 8px;
    font-size: 1.2rem;
}
.search-result p {
    margin: 0 0 18px;
    color: var(--gray-500);
    font-size: .9rem;
}
.search-result-link { font-size: .84rem; font-weight: 800; }
.empty-state {
    padding: 50px 30px;
    border: 1px dashed var(--gray-200);
    border-radius: var(--radius-lg);
    background: var(--gray-50);
    text-align: center;
}
.search-panel .empty-state { margin-top: 26px; }
.empty-icon {
    display: grid;
    place-items: center;
    width: 60px;
    height: 60px;
    margin: 0 auto 16px;
    border-radius: 18px;
    color: var(--blue-600);
    background: rgba(21,151,255,.09);
    font-size: 1.7rem;
}
.empty-state h2 { margin: 0 0 8px; color: var(--navy-950); }
.empty-state p { margin: 0; color: var(--gray-500); }

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    min-height: 49px;
    padding: 12px 21px;
    border: 1px solid transparent;
    border-radius: 13px;
    font-size: .88rem;
    font-weight: 800;
    transition: transform .2s ease, box-shadow .2s ease, color .2s ease;
}
.button-primary {
    color: var(--white);
    background: linear-gradient(135deg, var(--blue-600), var(--purple-600));
    box-shadow: 0 13px 28px rgba(47,102,255,.22);
}
.button-primary:hover {
    color: var(--white);
    transform: translateY(-1px);
    box-shadow: 0 17px 34px rgba(47,102,255,.28);
}
.button-light {
    color: var(--navy-950);
    background: var(--white);
    box-shadow: 0 12px 28px rgba(0,0,0,.12);
}
.button-light:hover {
    color: var(--blue-600);
    transform: translateY(-1px);
}
.button-ghost {
    color: var(--white);
    border-color: rgba(255,255,255,.18);
    background: rgba(255,255,255,.07);
}
.button-ghost:hover { color: var(--white); background: rgba(255,255,255,.12); }

.prefooter {
    padding: 0 0 34px;
    background: var(--gray-25);
}
.prefooter-card {
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 36px;
    padding: 38px 42px;
    border-radius: var(--radius-lg);
    color: var(--white);
    background:
        radial-gradient(circle at 90% 10%, rgba(255,255,255,.16), transparent 28%),
        linear-gradient(120deg, var(--blue-600), var(--purple-600));
    box-shadow: 0 24px 60px rgba(47,102,255,.2);
}
.prefooter-card::after {
    content: "";
    position: absolute;
    width: 220px;
    height: 220px;
    right: -95px;
    bottom: -125px;
    border: 1px solid rgba(255,255,255,.17);
    border-radius: 50%;
}
.prefooter-copy {
    position: relative;
    z-index: 1;
    max-width: 720px;
}
.prefooter-kicker { color: #d8e5ff; }
.prefooter-copy h2 {
    margin: 7px 0 8px;
    color: var(--white);
    font-size: clamp(1.7rem, 3.5vw, 2.55rem);
    line-height: 1.12;
    letter-spacing: -.035em;
}
.prefooter-copy p {
    margin: 0;
    color: #e5e9ff;
}
.prefooter-card .button { position: relative; z-index: 1; flex: 0 0 auto; }

.site-footer {
    padding: 66px 0 28px;
    color: #bac7df;
    background:
        radial-gradient(circle at 15% 0%, rgba(47,102,255,.09), transparent 30%),
        var(--navy-980);
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr repeat(3, 1fr);
    gap: 42px;
}
.footer-brand img {
    display: block;
    width: 164px;
    margin-bottom: 18px;
}
.footer-brand p {
    max-width: 360px;
    margin: 0 0 18px;
    color: #97a7c3;
    font-size: .9rem;
}
.footer-status {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #8fe8dd;
    font-size: .75rem;
}
.footer-status i {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--teal-400);
    box-shadow: 0 0 0 6px rgba(51,213,195,.1);
}
.footer-title {
    margin: 0 0 16px;
    color: var(--white);
    font-size: .78rem;
    text-transform: uppercase;
    letter-spacing: .1em;
}
.footer-links { display: grid; gap: 10px; }
.footer-links a {
    color: #b8c6de;
    font-size: .87rem;
}
.footer-links a:hover { color: var(--white); }
.footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-top: 46px;
    padding-top: 23px;
    border-top: 1px solid rgba(255,255,255,.09);
    color: #7e8da9;
    font-size: .77rem;
}

@media (max-width: 1040px) {
    .nav-toggle { display: grid; }
    .primary-nav {
        display: none;
        position: fixed;
        left: 20px;
        right: 20px;
        top: 94px;
        z-index: 1001;
        max-height: calc(100vh - 120px);
        overflow-y: auto;
        padding: 14px;
        border: 1px solid var(--gray-100);
        border-radius: 20px;
        background: rgba(255,255,255,.98);
        box-shadow: var(--shadow-lg);
    }
    .primary-nav.is-open { display: grid; }
    .primary-nav a { padding: 14px 15px; }
    .primary-nav a::after { display: none; }
    .header-cta { margin: 4px 0 0; text-align: center; }
    .hero-grid { grid-template-columns: 1fr; gap: 42px; }
    .hero-panel { max-width: 720px; }
    .trust-grid,
    .content-layout,
    .form-layout { grid-template-columns: 1fr; }
    .sidebar { position: static; grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .page-hero-inner { grid-template-columns: 1fr 180px; gap: 40px; }
    .page-hero-symbol { width: 160px; height: 160px; border-radius: 40px; }
    .page-hero-symbol > span { font-size: 3.6rem; }
    .footer-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 760px) {
    .container { width: min(calc(100% - 30px), var(--container)); }
    .header-inner { min-height: 74px; }
    .brand img { width: 145px; }
    .primary-nav { top: 84px; left: 15px; right: 15px; }
    .hero { padding: 66px 0 62px; }
    .hero h1 { font-size: clamp(2.65rem, 13vw, 4.15rem); }
    .hero-search,
    .search-box { flex-direction: column; }
    .hero-search button,
    .search-box .button { width: 100%; }
    .hero-panel { padding: 22px; }
    .section,
    .section-page,
    .section-page-first { padding: 60px 0 !important; }
    .section-page + .section-page { padding-top: 0 !important; }
    .section-heading {
        align-items: flex-start;
        flex-direction: column;
        margin-bottom: 28px;
    }
    .category-grid,
    .guide-grid,
    .search-results { grid-template-columns: 1fr; }
    .listing-grid { grid-template-columns: 1fr; }
    .category-card { min-height: 0; }
    .category-card-top { margin-bottom: 30px; }
    .guide-card { min-height: 0; }
    .guide-card-sponsored::after { display: none; }
    .trust-grid { gap: 36px; }
    .page-hero { padding: 50px 0 48px; }
    .page-hero-inner { grid-template-columns: 1fr; }
    .page-hero-symbol { display: none; }
    .page-title { font-size: clamp(2.35rem, 12vw, 3.5rem); }
    .directory-panel,
    .article-card,
    .form-card,
    .search-panel { padding: 25px; border-radius: 24px; }
    .sidebar { grid-template-columns: 1fr; }
    .company-header {
        grid-template-columns: 70px minmax(0, 1fr);
        gap: 18px;
    }
    .company-logo-placeholder {
        width: 70px;
        height: 70px;
        border-radius: 21px;
    }
    .company-heading h1 { font-size: clamp(2rem, 10vw, 3rem); }
    .company-hero-button { grid-column: 1 / -1; width: 100%; }
    .service-link-grid,
    .form-grid { grid-template-columns: 1fr; }
    .form-group-full { grid-column: auto; }
    .article-hero h1 { font-size: clamp(2.3rem, 11vw, 3.7rem); }
    .prefooter-card {
        align-items: flex-start;
        flex-direction: column;
        padding: 30px 26px;
    }
    .prefooter-card .button { width: 100%; }
    .footer-grid { grid-template-columns: 1fr; gap: 34px; }
    .footer-bottom {
        align-items: flex-start;
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .container { width: min(calc(100% - 24px), var(--container)); }
    .brand img { width: 136px; }
    .hero-note { display: grid; gap: 10px; }
    .hero-panel-header { align-items: flex-start; flex-direction: column; }
    .quick-item { grid-template-columns: 44px 1fr auto; padding: 12px; }
    .quick-icon { width: 44px; height: 44px; }
    .category-card,
    .listing-card,
    .guide-card { padding: 22px; }
    .listing-footer { align-items: flex-start; flex-direction: column; }
    .article-card,
    .directory-panel,
    .form-card,
    .search-panel { padding: 21px; }
    .trust-panel,
    .form-aside { padding: 26px 22px; }
    .service-link-card { grid-template-columns: 38px 1fr; }
    .service-link-icon,
    .related-guide-icon { width: 38px; height: 38px; }
    .article-meta { display: grid; gap: 7px; }
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        scroll-behavior: auto !important;
        transition: none !important;
        animation: none !important;
    }
}

/* Busca Msite V1.7 — imagens editoriais e páginas enriquecidas */
.listing-card {
    padding: 0;
    overflow: hidden;
}
.listing-image {
    position: relative;
    display: block;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: var(--navy-950);
}
.listing-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .35s ease;
}
.listing-card:hover .listing-image img { transform: scale(1.035); }
.listing-image-overlay {
    position: absolute;
    inset: auto 0 0;
    height: 46%;
    background: linear-gradient(to top, rgba(7,22,47,.22), transparent);
}
.listing-card-body {
    display: flex;
    flex: 1;
    flex-direction: column;
    padding: 24px;
}
.listing-card p { min-height: 74px; }

.guide-card {
    padding: 0;
    min-height: 100%;
}
.guide-image {
    position: relative;
    display: block;
    aspect-ratio: 16 / 8.6;
    overflow: hidden;
    border-bottom: 1px solid rgba(255,255,255,.1);
}
.guide-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .35s ease;
}
.guide-card:hover .guide-image img { transform: scale(1.035); }
.guide-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(4,16,34,.42), transparent 58%);
    pointer-events: none;
}
.guide-image-badge {
    position: absolute;
    z-index: 2;
    top: 14px;
    left: 14px;
    padding: 6px 9px;
    border-radius: 999px;
    color: #fff;
    background: linear-gradient(135deg, var(--purple-600), var(--blue-600));
    box-shadow: 0 8px 22px rgba(0,0,0,.16);
    font-size: .65rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .055em;
}
.guide-card-body {
    position: relative;
    z-index: 1;
    display: flex;
    flex: 1;
    flex-direction: column;
    padding: 24px;
}
.guide-card-body > strong {
    margin-top: auto;
    color: #95eee3;
    font-size: .85rem;
}
.guide-card h3 { margin-top: 17px; }
.guide-card-sponsored::after { top: auto; bottom: 20px; right: 20px; }

.company-hero-grid,
.article-hero-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(360px, .75fr);
    gap: 48px;
    align-items: center;
}
.company-header {
    grid-template-columns: 86px minmax(0, 1fr);
    align-items: start;
    margin-top: 8px;
}
.company-heading { min-width: 0; }
.company-hero-description {
    max-width: 720px;
    margin: 12px 0 18px;
    color: #c6d5ed;
    font-size: 1rem;
}
.company-hero-button {
    display: inline-flex;
    width: auto;
    margin-top: 22px;
}
.company-hero-media,
.article-hero-media {
    position: relative;
    margin: 0;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,.13);
    border-radius: 28px;
    box-shadow: 0 30px 80px rgba(0,0,0,.26);
    background: rgba(255,255,255,.06);
}
.company-hero-media::after,
.article-hero-media::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    box-shadow: inset 0 0 0 1px rgba(255,255,255,.06);
}
.company-hero-media img,
.article-hero-media img {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
}
.article-hero { max-width: none; }
.article-hero h1 { font-size: clamp(2.25rem, 4.6vw, 4.2rem); }
.article-lead { max-width: 760px; }

.related-guide-list-rich a {
    grid-template-columns: 126px 1fr;
    align-items: center;
    padding: 10px;
}
.related-guide-list-rich img {
    display: block;
    width: 126px;
    height: 76px;
    object-fit: cover;
    border-radius: 12px;
}
.sidebar-company-image {
    display: block;
    width: calc(100% + 40px);
    max-width: none;
    margin: -20px -20px 18px;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    border-radius: 18px 18px 0 0;
}
.sidebar-company-card { overflow: hidden; }
.article-note {
    margin: 30px 0;
    padding: 18px 20px;
    border: 1px solid rgba(47,102,255,.15);
    border-left: 4px solid var(--blue-600);
    border-radius: 14px;
    color: var(--gray-700);
    background: linear-gradient(135deg, rgba(47,102,255,.06), rgba(24,184,167,.05));
}
.article-body h2 { margin-top: 42px; }
.article-body h2:first-child { margin-top: 0; }
.article-body p { margin-bottom: 20px; }

@media (max-width: 980px) {
    .company-hero-grid,
    .article-hero-grid { grid-template-columns: 1fr; gap: 30px; }
    .company-hero-media,
    .article-hero-media { max-width: 760px; }
}

@media (max-width: 760px) {
    .listing-card-body,
    .guide-card-body { padding: 21px; }
    .listing-card p { min-height: 0; }
    .company-header { grid-template-columns: 68px minmax(0, 1fr); }
    .company-hero-media,
    .article-hero-media { border-radius: 22px; }
    .related-guide-list-rich a { grid-template-columns: 94px 1fr; }
    .related-guide-list-rich img { width: 94px; height: 64px; }
}

@media (max-width: 480px) {
    .listing-card,
    .guide-card { padding: 0; }
    .listing-card-body,
    .guide-card-body { padding: 19px; }
    .related-guide-list-rich a { grid-template-columns: 1fr; }
    .related-guide-list-rich img { width: 100%; height: auto; aspect-ratio: 16/9; }
}
.page-hero-category-image {
    position: relative;
    z-index: 1;
    width: min(430px, 100%);
    margin: 0;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,.14);
    border-radius: 28px;
    box-shadow: 0 28px 70px rgba(0,0,0,.2);
}
.page-hero-category-image img {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
}
@media (max-width: 760px) {
    .page-hero-category-image { width: 100%; max-width: 620px; border-radius: 22px; }
}
.article-related {
    margin-top: 48px;
    padding-top: 36px;
    border-top: 1px solid var(--gray-100);
}
.article-related h2 { margin-top: 0; }
.article-related-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}
.article-related-grid a {
    overflow: hidden;
    border: 1px solid var(--gray-100);
    border-radius: 16px;
    color: var(--gray-900);
    background: var(--gray-50);
    transition: transform .2s ease, border-color .2s ease;
}
.article-related-grid a:hover {
    color: var(--gray-900);
    transform: translateY(-2px);
    border-color: rgba(47,102,255,.22);
}
.article-related-grid img {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
}
.article-related-grid span { display: block; padding: 14px; }
.article-related-grid strong { display: block; line-height: 1.3; }
.article-related-grid small { display: block; margin-top: 7px; color: var(--gray-500); line-height: 1.5; }
.article-keywords {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid var(--gray-100);
}
.article-keywords span {
    padding: 7px 10px;
    border-radius: 999px;
    color: var(--gray-700);
    background: var(--gray-75);
    font-size: .75rem;
    font-weight: 700;
}
@media (max-width: 760px) {
    .article-related-grid { grid-template-columns: 1fr; }
}

/* =========================================================
   Busca Msite V1.9 — refinamento visual, imagens exclusivas e padronização
   ========================================================= */
:root {
    --container: 1240px;
    --radius-sm: 12px;
    --radius-md: 20px;
    --radius-lg: 28px;
    --shadow-xs: 0 8px 24px rgba(7, 22, 47, .045);
    --shadow-sm: 0 14px 38px rgba(7, 22, 47, .075);
    --shadow-md: 0 24px 62px rgba(7, 22, 47, .105);
}

body {
    background: #f8faff;
    font-size: 15.5px;
    line-height: 1.72;
}

.site-header {
    position: relative;
    background: #fff;
    border-bottom: 1px solid #e8edf5;
    backdrop-filter: none;
}
.header-inner { min-height: 78px; gap: 36px; }
.brand img { width: 176px; }
.primary-nav { gap: 5px; }
.primary-nav a {
    padding: 11px 13px;
    border-radius: 12px;
    font-size: .9rem;
}
.header-cta {
    min-height: 46px;
    padding-inline: 20px !important;
    border-radius: 12px !important;
    box-shadow: 0 10px 26px rgba(47,102,255,.18);
}

.hero {
    padding: 86px 0 82px;
    background:
        radial-gradient(circle at 82% 10%, rgba(21,151,255,.20), transparent 34%),
        radial-gradient(circle at 5% 100%, rgba(124,58,237,.24), transparent 31%),
        linear-gradient(135deg, #04142e 0%, #0b2e68 60%, #3e177f 100%);
}
.hero-grid { gap: 64px; }
.hero h1 {
    max-width: 700px;
    font-size: clamp(2.8rem, 5.7vw, 4.75rem);
    line-height: 1.02;
    letter-spacing: -.055em;
}
.hero-copy { max-width: 660px; font-size: 1.05rem; }
.hero-panel {
    border: 1px solid rgba(255,255,255,.12);
    background: linear-gradient(145deg, rgba(255,255,255,.105), rgba(255,255,255,.055));
    box-shadow: 0 28px 80px rgba(0,0,0,.19);
}

.section { padding: 78px 0; }
.section-page { padding: 66px 0; }
.section-page-first { padding-top: 66px !important; }
.section-heading { margin-bottom: 32px; }
.section-heading h2 { font-size: clamp(1.9rem, 3.2vw, 2.75rem); }
.section-heading p { max-width: 720px; }

/* Home category cards now use real imagery. */
.category-grid { gap: 24px; }
.category-card {
    min-height: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    border-radius: 22px;
    background: #fff;
    box-shadow: var(--shadow-sm);
}
.category-card::after { display: none; }
.category-card-media {
    position: relative;
    display: block;
    aspect-ratio: 16 / 8.7;
    overflow: hidden;
    background: var(--navy-950);
}
.category-card-media::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(4,16,34,.30), rgba(4,16,34,.02) 60%);
}
.category-card-media img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform .35s ease;
}
.category-card:hover .category-card-media img { transform: scale(1.035); }
.category-card .category-icon {
    position: absolute;
    z-index: 2;
    left: 18px;
    bottom: 16px;
    width: 48px;
    height: 48px;
    border-radius: 14px;
    box-shadow: 0 14px 32px rgba(15,45,110,.28);
}
.category-card-body {
    display: flex;
    flex: 1;
    flex-direction: column;
    padding: 24px;
}
.category-card .category-count {
    align-self: flex-start;
    margin-bottom: 15px;
}
.category-card h3 { margin: 0 0 8px; font-size: 1.32rem; }
.category-card p { margin-bottom: 20px; font-size: .91rem; }
.category-card-body > strong { margin-top: auto; color: var(--blue-600); font-size: .84rem; }

/* Consistent cards across all categories. */
.listing-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}
.listing-card {
    border-radius: 20px;
    border-color: #e5ebf4;
    box-shadow: 0 10px 30px rgba(7,22,47,.065);
}
.listing-card::before { display: none; }
.listing-image { aspect-ratio: 16/9; }
.listing-image img { object-position: center; }
.listing-card-body { padding: 22px; }
.listing-top { align-items: center; margin-bottom: 16px; }
.listing-mark {
    width: 46px;
    height: 46px;
    border-radius: 14px;
    font-size: .95rem;
}
.badge {
    min-height: 26px;
    padding: 6px 9px;
    font-size: .64rem;
    letter-spacing: .015em;
}
.badge-sponsored {
    color: #5a38bf;
    background: #f1edff;
}
.listing-card h3 { font-size: 1.18rem; }
.listing-card p {
    min-height: 0;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.listing-footer { margin-top: 18px; }

.guide-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}
.guide-card {
    border-radius: 20px;
    background: #0b1a36;
    border-color: rgba(255,255,255,.105);
    box-shadow: 0 16px 36px rgba(0,0,0,.14);
}
.guide-card-sponsored {
    border-color: rgba(151,125,255,.24);
    background: linear-gradient(145deg, #111d45, #0b1a36 70%);
}
.guide-card-sponsored::after,
.guide-image-badge { display: none !important; content: none !important; }
.guide-image { aspect-ratio: 16/9; }
.guide-card-body { padding: 22px; }
.guide-card-top { gap: 10px; }
.guide-badge {
    min-height: 25px;
    padding: 6px 9px;
    font-size: .61rem;
    letter-spacing: .04em;
}
.guide-badge-sponsored {
    color: #e8e1ff;
    border-color: rgba(181,162,255,.18);
    background: rgba(124,58,237,.18);
}
.guide-meta { font-size: .63rem; letter-spacing: .045em; }
.guide-card h3 { font-size: 1.15rem; line-height: 1.28; margin-top: 14px; }
.guide-card p {
    font-size: .86rem;
    line-height: 1.62;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Internal page heroes follow the same premium composition. */
.page-hero {
    padding: 62px 0 64px;
    background:
        radial-gradient(circle at 82% 5%, rgba(31,117,255,.18), transparent 31%),
        radial-gradient(circle at 7% 110%, rgba(124,58,237,.17), transparent 31%),
        linear-gradient(120deg, #06172f 0%, #0b2e68 68%, #174b8f 100%);
}
.page-hero::after { opacity: .45; }
.page-hero-inner {
    grid-template-columns: minmax(0,1fr) minmax(420px,.72fr);
    gap: 54px;
    align-items: center;
}
.page-title { font-size: clamp(2.5rem, 5vw, 4.1rem); }
.page-intro { max-width: 720px; font-size: 1.04rem; }
.page-hero-meta { margin-top: 24px; }
.page-hero-meta span {
    min-height: 32px;
    display: inline-flex;
    align-items: center;
    padding: 7px 11px;
    border: 1px solid rgba(255,255,255,.10);
    border-radius: 999px;
    background: rgba(255,255,255,.055);
}
.page-hero-category-image {
    width: 100%;
    max-width: 520px;
    justify-self: end;
    border-radius: 24px;
    box-shadow: 0 28px 72px rgba(0,0,0,.24);
}
.page-hero-category-image::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(135deg, rgba(47,102,255,.08), transparent 60%);
}

.directory-panel {
    padding: 38px;
    border-radius: 28px;
    border: 1px solid #e4ebf5;
    box-shadow: 0 16px 44px rgba(7,22,47,.065);
}
.directory-panel-dark {
    padding: 38px;
    border-color: rgba(255,255,255,.07);
    background:
        radial-gradient(circle at 90% 0%, rgba(47,102,255,.12), transparent 36%),
        #06142b;
}

/* Company and editorial pages share the same 2-column hero language. */
.company-hero-grid,
.article-hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(430px, .8fr);
    gap: 56px;
}
.company-logo-placeholder {
    width: 78px;
    height: 78px;
    border-radius: 22px;
}
.company-heading h1 { font-size: clamp(2.5rem, 4.5vw, 4.2rem); }
.company-hero-description { max-width: 690px; line-height: 1.68; }
.company-hero-media,
.article-hero-media {
    border-radius: 24px;
    border-color: rgba(255,255,255,.10);
    box-shadow: 0 30px 76px rgba(0,0,0,.24);
}
.company-hero-media img,
.article-hero-media img { aspect-ratio: 16/9; object-fit: cover; }
.article-hero h1 {
    font-size: clamp(2.45rem, 4.4vw, 4.15rem);
    max-width: 780px;
}
.article-lead { max-width: 740px; }
.article-meta { gap: 8px 16px; font-size: .76rem; }
.article-sponsor-badge {
    color: #e8e2ff;
    border: 1px solid rgba(190,172,255,.18);
    background: rgba(124,58,237,.22);
}

.content-layout {
    grid-template-columns: minmax(0, 1fr) 320px;
    gap: 32px;
}
.article-card {
    padding: 42px;
    border-radius: 26px;
    border-color: #e5ebf4;
    box-shadow: 0 12px 34px rgba(7,22,47,.06);
}
.article-body { font-size: .98rem; }
.article-body h2 { font-size: 1.55rem; margin-top: 38px; }
.article-body h3 { font-size: 1.16rem; }
.article-body p { margin-bottom: 18px; }
.sidebar { top: 24px; gap: 16px; }
.sidebar-card { border-radius: 18px; box-shadow: 0 8px 24px rgba(7,22,47,.05); }
.sidebar-card-sponsored {
    border-color: rgba(124,58,237,.14);
    background: linear-gradient(145deg, #faf8ff, #f6f9ff);
}
.sidebar-label { color: #6540c6; }
.sidebar-company-image { border-radius: 16px 16px 0 0; }

.related-guide-list-rich a {
    border-radius: 14px;
    background: #f8faff;
}
.related-guide-list-rich img { width: 132px; height: 82px; border-radius: 11px; }
.service-link-card { border-radius: 14px; background: #fafbfe; }
.disclosure {
    border-left-width: 3px;
    border-radius: 12px;
    background: #f8faff;
}

.article-related-grid { gap: 16px; }
.article-related-grid a { border-radius: 15px; background: #fbfcff; }
.article-keywords span { background: #f1f4f9; }

/* Cleaner trust and CTA areas. */
.trust-grid { gap: 70px; }
.trust-panel { border-radius: 24px; box-shadow: 0 18px 46px rgba(7,22,47,.10); }
.prefooter { padding-bottom: 38px; }
.prefooter-card {
    padding: 34px 38px;
    border-radius: 24px;
    box-shadow: 0 18px 46px rgba(47,102,255,.18);
}
.prefooter-copy h2 { font-size: clamp(1.7rem, 3vw, 2.35rem); }

.site-footer { padding-top: 58px; }
.footer-grid { gap: 48px; }
.footer-brand img { width: 184px; }
.footer-brand p { max-width: 330px; }

/* Tablet */
@media (max-width: 1100px) {
    .listing-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
    .guide-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
    .page-hero-inner { grid-template-columns: minmax(0,1fr) 360px; gap: 36px; }
    .company-hero-grid,
    .article-hero-grid { grid-template-columns: minmax(0,1fr) 390px; gap: 38px; }
}

@media (max-width: 980px) {
    .site-header { position: relative; }
    .brand img { width: 164px; }
    .page-hero-inner,
    .company-hero-grid,
    .article-hero-grid { grid-template-columns: 1fr; }
    .page-hero-category-image { justify-self: start; max-width: 700px; }
    .company-hero-media,
    .article-hero-media { max-width: 760px; }
    .content-layout { grid-template-columns: 1fr; }
    .sidebar { position: static; grid-template-columns: repeat(2,minmax(0,1fr)); }
}

@media (max-width: 760px) {
    .header-inner { min-height: 70px; }
    .brand img { width: 150px; }
    .hero { padding: 64px 0 62px; }
    .hero h1 { font-size: clamp(2.55rem, 12vw, 3.85rem); }
    .section,
    .section-page,
    .section-page-first { padding: 56px 0 !important; }
    .section-page + .section-page { padding-top: 0 !important; }
    .category-grid,
    .listing-grid,
    .guide-grid { grid-template-columns: 1fr; }
    .directory-panel,
    .directory-panel-dark,
    .article-card { padding: 24px; border-radius: 22px; }
    .page-hero { padding: 48px 0 50px; }
    .page-title { font-size: clamp(2.35rem, 11vw, 3.4rem); }
    .company-heading h1 { font-size: clamp(2.25rem, 10vw, 3.4rem); }
    .article-hero h1 { font-size: clamp(2.25rem, 10vw, 3.35rem); }
    .sidebar { grid-template-columns: 1fr; }
    .prefooter-card { padding: 28px 24px; }
    .footer-brand img { width: 168px; }
}

/* V1.12 — Conteúdos organizados por cluster editorial */
.content-hub-intro {
    padding-top: 8px;
    padding-bottom: 8px;
}
.content-hub-intro h2 {
    margin: 10px 0 8px;
}
.content-hub-intro p {
    max-width: 820px;
    margin: 0;
}
.content-cluster-section {
    padding-top: 18px;
    padding-bottom: 18px;
}
.content-cluster-panel {
    background: #fff;
    border: 1px solid var(--color-border, #e4e7ec);
    border-radius: 28px;
    padding: 34px;
    box-shadow: 0 18px 48px rgba(16, 36, 74, .08);
}
.content-cluster-panel.directory-panel-dark {
    background: #06152f;
    border-color: rgba(255,255,255,.08);
}
.content-cluster-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 28px;
    margin-bottom: 26px;
}
.content-cluster-header > div {
    max-width: 790px;
}
.content-cluster-header h2 {
    margin: 10px 0 8px;
}
.content-cluster-header p {
    margin: 0;
    max-width: 760px;
}
.directory-panel-dark .content-cluster-header h2,
.directory-panel-dark .content-cluster-header p {
    color: #fff;
}
.content-cluster-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}
.article-related {
    margin-top: 34px;
    padding-top: 26px;
    border-top: 1px solid #e7ecf4;
}
.article-related h2 {
    margin-top: 0;
}
.article-related ul {
    margin-bottom: 0;
}
@media (max-width: 980px) {
    .content-cluster-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .content-cluster-header {
        align-items: flex-start;
        flex-direction: column;
    }
}
@media (max-width: 680px) {
    .content-cluster-panel {
        padding: 22px;
        border-radius: 22px;
    }
    .content-cluster-grid {
        grid-template-columns: 1fr;
    }
}


/* =========================================================
   Busca Msite V1.13 — refinamento de hover e relacionados
   ========================================================= */

/* Mantém os cards de conteúdo escuros e legíveis durante hover/focus. */
.content-cluster-panel .guide-card,
.directory-panel-dark .guide-card {
    color: #fff;
    text-decoration: none;
    background: linear-gradient(145deg, #0d1d3b 0%, #09172f 100%);
    border-color: rgba(255,255,255,.10);
    box-shadow: 0 14px 34px rgba(5,18,42,.16);
}
.content-cluster-panel .guide-card:hover,
.content-cluster-panel .guide-card:focus-visible,
.directory-panel-dark .guide-card:hover,
.directory-panel-dark .guide-card:focus-visible {
    color: #fff;
    background: linear-gradient(145deg, #12284f 0%, #0b1c3a 100%);
    border-color: rgba(99,168,255,.42);
    box-shadow: 0 20px 44px rgba(5,18,42,.22), 0 0 0 1px rgba(83,150,255,.10);
    transform: translateY(-4px);
    outline: none;
}
.content-cluster-panel .guide-card:hover h3,
.content-cluster-panel .guide-card:focus-visible h3,
.directory-panel-dark .guide-card:hover h3,
.directory-panel-dark .guide-card:focus-visible h3 {
    color: #fff;
}
.content-cluster-panel .guide-card:hover p,
.content-cluster-panel .guide-card:focus-visible p,
.directory-panel-dark .guide-card:hover p,
.directory-panel-dark .guide-card:focus-visible p {
    color: #c8d5ea;
}
.content-cluster-panel .guide-card:hover .guide-meta,
.content-cluster-panel .guide-card:focus-visible .guide-meta,
.directory-panel-dark .guide-card:hover .guide-meta,
.directory-panel-dark .guide-card:focus-visible .guide-meta,
.content-cluster-panel .guide-card:hover .guide-card-body > strong,
.content-cluster-panel .guide-card:focus-visible .guide-card-body > strong,
.directory-panel-dark .guide-card:hover .guide-card-body > strong,
.directory-panel-dark .guide-card:focus-visible .guide-card-body > strong {
    color: #8ff4e7;
}
.content-cluster-panel .guide-card:hover .guide-image img,
.content-cluster-panel .guide-card:focus-visible .guide-image img,
.directory-panel-dark .guide-card:hover .guide-image img,
.directory-panel-dark .guide-card:focus-visible .guide-image img {
    transform: scale(1.045);
}

/* Related content: premium compact cards with clear hierarchy. */
.article-related-more {
    margin-top: 42px;
    padding-top: 34px;
    border-top: 1px solid #e6ebf3;
}
.article-related-more-heading {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 22px;
}
.article-related-more-heading h2 {
    margin: 7px 0 6px;
    font-size: clamp(1.55rem, 2.3vw, 2rem);
    color: var(--navy-950);
}
.article-related-more-heading p {
    margin: 0;
    color: var(--gray-500);
    font-size: .93rem;
    line-height: 1.6;
}
.article-related-more-profile {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 40px;
    padding: 9px 14px;
    border: 1px solid #dce5f2;
    border-radius: 999px;
    color: var(--blue-600);
    background: #fff;
    font-size: .8rem;
    font-weight: 800;
    text-decoration: none;
    transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}
.article-related-more-profile:hover,
.article-related-more-profile:focus-visible {
    color: var(--blue-600);
    border-color: rgba(47,102,255,.30);
    box-shadow: 0 8px 24px rgba(47,102,255,.10);
    transform: translateY(-1px);
    outline: none;
}
.article-related-more-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}
.article-related-more-card {
    display: flex;
    min-width: 0;
    flex-direction: column;
    overflow: hidden;
    border: 1px solid #e1e8f2;
    border-radius: 18px;
    color: var(--gray-900);
    background: #fff;
    box-shadow: 0 10px 28px rgba(9,30,66,.07);
    text-decoration: none;
    transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease;
}
.article-related-more-card:hover,
.article-related-more-card:focus-visible {
    color: var(--gray-900);
    border-color: rgba(47,102,255,.28);
    box-shadow: 0 18px 38px rgba(9,30,66,.13);
    transform: translateY(-4px);
    outline: none;
}
.article-related-more-media {
    position: relative;
    display: block;
    overflow: hidden;
    aspect-ratio: 16 / 9;
    background: #eef3fa;
}
.article-related-more-media::after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    height: 42%;
    background: linear-gradient(to top, rgba(5,20,45,.16), transparent);
    pointer-events: none;
}
.article-related-more-media img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .32s ease;
}
.article-related-more-card:hover .article-related-more-media img,
.article-related-more-card:focus-visible .article-related-more-media img {
    transform: scale(1.045);
}
.article-related-more-content {
    display: flex;
    flex: 1;
    flex-direction: column;
    padding: 16px 16px 17px;
}
.article-related-more-meta {
    display: inline-flex;
    align-self: flex-start;
    margin-bottom: 9px;
    padding: 5px 8px;
    border-radius: 999px;
    color: #087f73;
    background: #e9fbf7;
    font-size: .62rem;
    font-weight: 900;
    line-height: 1;
    letter-spacing: .055em;
    text-transform: uppercase;
}
.article-related-more-content strong {
    display: -webkit-box;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    color: var(--navy-950);
    font-size: .98rem;
    line-height: 1.34;
    text-decoration: none;
}
.article-related-more-content small {
    display: -webkit-box;
    overflow: hidden;
    margin-top: 8px;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    color: var(--gray-500);
    font-size: .78rem;
    line-height: 1.55;
    text-decoration: none;
}
.article-related-more-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: auto;
    padding-top: 14px;
    color: var(--blue-600);
    font-size: .78rem;
    font-weight: 850;
}
.article-related-more-card:hover .article-related-more-link span,
.article-related-more-card:focus-visible .article-related-more-link span {
    transform: translateX(3px);
}
.article-related-more-link span {
    transition: transform .2s ease;
}

@media (max-width: 980px) {
    .article-related-more-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 680px) {
    .article-related-more-heading {
        align-items: flex-start;
        flex-direction: column;
    }
    .article-related-more-grid { grid-template-columns: 1fr; }
    .article-related-more-card { display: grid; grid-template-columns: 118px 1fr; }
    .article-related-more-media { aspect-ratio: auto; height: 100%; min-height: 132px; }
    .article-related-more-content { padding: 14px; }
    .article-related-more-content small { -webkit-line-clamp: 2; }
}

/* Specificity guard against legacy related-card rules. */
.article-related-more-grid > .article-related-more-card {
    display: flex;
    min-width: 0;
    flex-direction: column;
    overflow: hidden;
    border: 1px solid #e1e8f2;
    border-radius: 18px;
    color: var(--gray-900);
    background: #fff;
    box-shadow: 0 10px 28px rgba(9,30,66,.07);
    text-decoration: none;
}
.article-related-more-grid > .article-related-more-card:hover,
.article-related-more-grid > .article-related-more-card:focus-visible {
    color: var(--gray-900);
    border-color: rgba(47,102,255,.28);
    box-shadow: 0 18px 38px rgba(9,30,66,.13);
    transform: translateY(-4px);
}
@media (max-width: 680px) {
    .article-related-more-grid > .article-related-more-card {
        display: grid;
        grid-template-columns: 118px 1fr;
    }
}

/* V1.16 — Ajuste do card lateral de perfil relacionado */
.sidebar-company-card {
    display: flex;
    flex-direction: column;
    gap: 0;
}
.sidebar-company-card .sidebar-label {
    margin-bottom: 12px;
    position: relative;
    z-index: 2;
}
.sidebar-company-image {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    margin: 0 0 18px;
    border-radius: 16px;
}
.sidebar-company-card h3 {
    margin-top: 0;
}

/* V1.18 — Aplicação do novo logo Busca Msite */
.brand img {
    width: 176px;
    height: auto;
}
.footer-brand-mark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 14px;
    margin-bottom: 18px;
    border-radius: 18px;
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.08);
    box-shadow: 0 14px 34px rgba(4,16,38,.18);
}
.footer-brand-mark img {
    display: block;
    width: 188px;
    height: auto;
}
.footer-brand img {
    margin-bottom: 0;
}
@media (max-width: 980px) {
    .brand img { width: 170px; }
}
@media (max-width: 760px) {
    .brand img { width: 156px; }
    .footer-brand-mark img { width: 176px; }
}

/* V1.20 — Leitura editorial, organização e texto justificado */
.company-content p,
.article-editorial-content p {
    text-align: justify;
    text-justify: inter-word;
    hyphens: auto;
    -webkit-hyphens: auto;
    line-height: 1.82;
}
.company-text-flow {
    display: grid;
    gap: 16px;
}
.company-text-flow p {
    margin: 0;
}
.company-profile-section {
    position: relative;
    padding-left: 22px;
}
.company-profile-section::before {
    content: "";
    position: absolute;
    left: 0;
    top: 35px;
    bottom: 2px;
    width: 3px;
    border-radius: 999px;
    background: linear-gradient(180deg, var(--teal-500), var(--blue-600));
    opacity: .72;
}
.company-checklist {
    display: grid;
    gap: 12px;
    margin: 0;
    padding: 0;
    list-style: none;
}
.company-checklist li {
    position: relative;
    padding: 15px 16px 15px 46px;
    border: 1px solid #e6edf7;
    border-radius: 14px;
    background: #f8fbff;
    color: var(--gray-700);
    line-height: 1.65;
}
.company-checklist li::before {
    content: "✓";
    position: absolute;
    left: 16px;
    top: 14px;
    display: grid;
    place-items: center;
    width: 21px;
    height: 21px;
    border-radius: 50%;
    color: #087d73;
    background: rgba(24,184,167,.13);
    font-size: .78rem;
    font-weight: 900;
}

.article-toc {
    margin: 0 0 36px;
    padding: 24px 26px;
    border: 1px solid #dfe8f5;
    border-radius: 20px;
    background: linear-gradient(145deg, #f8fbff 0%, #f7f8ff 100%);
    box-shadow: 0 10px 28px rgba(7,22,47,.05);
}
.article-toc-heading h2 {
    margin: 5px 0 7px !important;
    font-size: 1.35rem !important;
}
.article-toc-heading p {
    margin: 0 0 18px;
    color: var(--gray-500);
    text-align: left;
    line-height: 1.65;
}
.article-toc-list {
    display: grid;
    grid-template-columns: repeat(2,minmax(0,1fr));
    gap: 9px 22px;
    margin: 0;
    padding: 0;
    list-style: none;
    counter-reset: article-toc;
}
.article-toc-list li {
    counter-increment: article-toc;
    margin: 0 !important;
}
.article-toc-list a {
    display: grid;
    grid-template-columns: 28px minmax(0,1fr);
    gap: 9px;
    align-items: start;
    padding: 8px 0;
    color: var(--navy-900);
    text-decoration: none;
    line-height: 1.45;
    font-size: .88rem;
    font-weight: 700;
}
.article-toc-list a::before {
    content: counter(article-toc, decimal-leading-zero);
    color: var(--teal-600);
    font-size: .68rem;
    font-weight: 900;
    letter-spacing: .03em;
    padding-top: 3px;
}
.article-toc-list a:hover,
.article-toc-list a:focus-visible {
    color: var(--blue-600);
}
.article-editorial-content > p:first-child {
    margin-bottom: 26px;
    padding: 19px 20px;
    border-left: 4px solid var(--teal-500);
    border-radius: 0 14px 14px 0;
    background: #f8fbfd;
    color: #43526c;
    font-size: 1.01rem;
}
.article-editorial-content h2 {
    scroll-margin-top: 24px;
    position: relative;
    padding-top: 4px;
}
.article-editorial-content h2::before {
    content: "";
    display: block;
    width: 34px;
    height: 3px;
    margin-bottom: 10px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--teal-500), var(--blue-600));
}
.article-editorial-content h3 {
    padding-left: 14px;
    border-left: 3px solid rgba(47,102,255,.22);
}
.article-editorial-content ul,
.article-editorial-content ol {
    margin: 18px 0 26px;
    padding: 18px 22px 18px 42px;
    border: 1px solid #e6edf7;
    border-radius: 15px;
    background: #fbfcff;
}
.article-editorial-content li {
    line-height: 1.65;
}
.article-editorial-content li::marker {
    color: var(--blue-600);
    font-weight: 800;
}
.article-editorial-content .article-note,
.article-editorial-content .article-callout {
    text-align: left;
}
@media (max-width: 760px) {
    .company-content p,
    .article-editorial-content p {
        text-align: left;
        hyphens: none;
        -webkit-hyphens: none;
    }
    .company-profile-section {
        padding-left: 16px;
    }
    .article-toc {
        padding: 20px;
    }
    .article-toc-list {
        grid-template-columns: 1fr;
        gap: 3px;
    }
    .article-editorial-content > p:first-child {
        padding: 16px;
    }
}

/* V1.22 — Páginas institucionais completas */
.institutional-updated {
    display: inline-flex;
    align-items: center;
    margin-top: 16px;
    padding: 8px 12px;
    border: 1px solid rgba(47,102,255,.14);
    border-radius: 999px;
    color: #4e607c;
    background: rgba(255,255,255,.72);
    font-size: .76rem;
    font-weight: 800;
}
.institutional-content {
    overflow: hidden;
}
.institutional-editorial-content > p:first-child {
    margin-bottom: 28px;
    padding: 20px 22px;
    border-left: 4px solid var(--teal-500);
    border-radius: 0 14px 14px 0;
    background: #f8fbfd;
    color: #40516c;
    font-size: 1.01rem;
    line-height: 1.82;
}
.institutional-editorial-content p {
    text-align: justify;
    text-justify: inter-word;
    hyphens: auto;
    -webkit-hyphens: auto;
    line-height: 1.82;
}
.institutional-editorial-content h2 {
    position: relative;
    scroll-margin-top: 24px;
    margin-top: 42px;
    padding-top: 4px;
}
.institutional-editorial-content h2::before {
    content: "";
    display: block;
    width: 38px;
    height: 3px;
    margin-bottom: 11px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--teal-500), var(--blue-600));
}
.institutional-editorial-content h3 {
    margin-top: 28px;
    padding-left: 14px;
    border-left: 3px solid rgba(47,102,255,.22);
}
.institutional-editorial-content ul,
.institutional-editorial-content ol {
    margin: 18px 0 28px;
    padding: 20px 24px 20px 44px;
    border: 1px solid #e6edf7;
    border-radius: 16px;
    background: #fbfcff;
}
.institutional-editorial-content li {
    line-height: 1.68;
}
.institutional-editorial-content li::marker {
    color: var(--blue-600);
    font-weight: 800;
}
.institutional-editorial-content code {
    padding: 2px 6px;
    border-radius: 6px;
    background: #f1f5fb;
    font-size: .88em;
}
.institutional-toc {
    margin-bottom: 34px;
}
.sidebar-links a[aria-current="page"] {
    color: var(--blue-600);
    font-weight: 900;
}
@media (max-width: 760px) {
    .institutional-editorial-content p {
        text-align: left;
        hyphens: none;
        -webkit-hyphens: none;
    }
    .institutional-editorial-content > p:first-child {
        padding: 16px;
    }
}


/* V1.24 — Botões de perfil e site oficial nos seis cards da Home. */
.listing-footer-home {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
}
.listing-footer-home .listing-actions {
    display: grid;
    grid-template-columns: minmax(0, .95fr) minmax(0, 1.35fr);
    gap: 9px;
    width: 100%;
}
.listing-footer-home .listing-actions a {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 6px;
    min-height: 44px;
    padding: 10px 8px;
    border-radius: 11px;
    font-size: .73rem;
    line-height: 1.2;
    text-align: center;
    font-weight: 800;
    text-decoration: none;
    transition: background .2s ease, border-color .2s ease, box-shadow .2s ease;
}
.listing-footer-home .listing-action-profile {
    color: var(--blue-600);
    background: #f2f6ff;
    border: 1px solid #dce7fc;
}
.listing-footer-home .listing-action-profile:hover,
.listing-footer-home .listing-action-profile:focus-visible {
    background: #e9f0ff;
    border-color: var(--blue-600);
}
.listing-footer-home .listing-action-site {
    color: #fff;
    background: linear-gradient(120deg, #2468ed, #6141ed);
    border: 1px solid transparent;
}
.listing-footer-home .listing-action-site:hover,
.listing-footer-home .listing-action-site:focus-visible {
    background: linear-gradient(120deg, #155adf, #4e2fd6);
    box-shadow: 0 7px 16px rgba(35,99,221,.2);
}
.listing-footer-home .listing-actions a:focus-visible {
    outline: 3px solid #65ccfa;
    outline-offset: 3px;
}
.listing-footer-home > small {
    display: block;
    text-align: left;
}
@media (max-width: 370px) {
    .listing-footer-home .listing-actions { grid-template-columns: 1fr; }
}

/* Busca Além do Futuro V1.0 — identidade original Aurora */
.hero { background: radial-gradient(circle at 75% 15%, rgba(80,211,218,.19), transparent 31%), linear-gradient(125deg,#091d39,#172e57 57%,#283e63); }
.prefooter-card { background:linear-gradient(112deg,#0b5067,#2d5187 55%,#645e9b); }
.category-card, .listing-card, .article-related-more-card { transition: transform .2s ease,box-shadow .2s ease; }
.category-card:hover, .listing-card:hover { transform:translateY(-3px); }
.brand img { width: 197px; }
.footer-brand-mark img { width: 208px; }
.footer-brand-mark { background:rgba(255,255,255,.94); }
.article-editorial-content p,.company-text-flow p { text-align:justify; hyphens:auto; }
@media(max-width:760px){.article-editorial-content p,.company-text-flow p { text-align:left; }.brand img{width:165px;} }

/* V1.1 — refinamento editorial e legibilidade */
.guide-card { box-shadow: 0 14px 34px rgba(7,20,45,.13); overflow: hidden; }
.guide-card:hover, .guide-card:focus-visible { transform: translateY(-4px); border-color: rgba(90,210,218,.54); box-shadow:0 17px 37px rgba(7,20,45,.22); }
.guide-card-body { padding: 24px; min-height: 260px; display:flex; flex-direction:column; align-items:flex-start; }
.guide-card h3 { font-size: 1.19rem; line-height: 1.41; letter-spacing: -.012em; margin: 12px 0 9px; color:#fff; }
.guide-card p { color: #dbe6f4; font-size:.93rem; line-height:1.72; -webkit-line-clamp:3; margin-bottom: 18px; }
.guide-card-body > strong { display:inline-flex; align-items:center; gap:8px; margin-top:auto; color:#98f1ee; font-size:.89rem; }
.guide-meta { color:#c6d8ea; font-size:.69rem; letter-spacing:.025em; line-height:1.45; }
.guide-badge { font-size: .68rem; letter-spacing:.03em; }
.guide-image { aspect-ratio:16/9; overflow:hidden; }
.guide-image img { object-fit:cover; }
.content-cluster-grid { gap:23px; }
.content-cluster-panel { padding:clamp(20px,3vw,40px); }
.listing-card p { font-size: .91rem; line-height:1.72; color:#566780; }
.listing-card h3 { font-size:1.2rem; }
.listing-card .listing-footer-home .listing-actions a { font-size: .81rem; min-height:44px; }
.article-editorial-content { max-width: 78ch; margin-inline:auto; }
.article-editorial-content > p:first-child { color:#1c3552; font-size:1.085rem; font-weight:550; line-height:1.85; }
.article-editorial-content p { text-wrap:pretty; line-height:1.87; }
.article-editorial-content h2 { font-size:clamp(1.37rem,2vw,1.65rem); line-height:1.35; margin-top:46px; }
.article-editorial-content h3 { font-size:1.15rem; line-height:1.5; }
.article-editorial-content .editorial-checklist { padding:22px 30px 22px 42px; border-radius:17px; border:1px solid #d8e8f5; background:linear-gradient(130deg,#f4faff,#f8f7ff); }
.article-editorial-content .editorial-checklist li { padding:4px 0; }
.company-text-flow p { line-height:1.86; margin:0 0 20px; }
.company-about-section .company-text-flow p:first-child { color:#263f5f; font-size:1.035rem; }
.company-profile-section { padding-block:26px; }
.company-profile-section + .company-profile-section { border-top:1px solid #e9eef7; }
.content-cluster-header p { max-width:75ch; line-height:1.75; }
@media(max-width:760px){
.guide-card-body { min-height:0; padding:22px; }
.guide-card h3 {font-size:1.16rem;}
.article-editorial-content {max-width:100%;}
.article-editorial-content p,.company-text-flow p { text-align:left; hyphens:none; }
.listing-card .listing-footer-home .listing-actions {grid-template-columns:repeat(2,minmax(0,1fr));}
}
@media(max-width:370px){ .listing-card .listing-footer-home .listing-actions {grid-template-columns:1fr;} }

/* V1.3 — original photographic visual system and institutional hero images */
body.route-inicio .hero {
    background:
        linear-gradient(105deg,rgba(5,19,42,.96) 0%,rgba(9,33,64,.91) 45%,rgba(11,35,66,.83) 100%),
        url('/assets/img/editorial/home-busca-alem-futuro.webp') center 47% / cover no-repeat;
}
body.route-inicio .hero::before { opacity:.5; }
.page-hero-institutional-image { width:min(460px,100%); }
.page-hero-institutional-image img { display:block; aspect-ratio:16/9; object-fit:cover; }
@media (max-width: 980px) { .page-hero-institutional-image { width:100%;max-width:680px; } }
