/* Estilos gerais da landing */

* { box-sizing: border-box; }

:root {
    --bg: #f7f5fb;
    --bg-soft: #eef3f8;
    --bg-deep: #dfe8f1;
    --panel: #ffffff;
    --panel-soft: #f8fbfe;
    --ink: #1f2f44;
    --muted: #5e6f86;
    --line: rgba(43,60,82,.1);
    --line-soft: #d5e0eb;
    --purple: #3c5674;
    --purple-dark: #2b3c52;
    --purple-soft: #c7d3df;
    --purple-pale: #eaf0f6;
    --white: #ffffff;
}

html { scroll-behavior: smooth; }

body {
    margin: 0;
    font-family: "Poppins", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
    background: #f5f8fc !important;
    color: var(--ink);
    font-weight: 400;
    line-height: 1.55;
}

.site-intro-modal {
    position: fixed;
    inset: 0;
    z-index: 80;
    display: none;
}

.site-intro-modal.is-visible {
    display: block;
}

.site-intro-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(18, 28, 43, .46);
    backdrop-filter: blur(4px);
}

.site-intro-card {
    position: relative;
    width: min(680px, calc(100% - 32px));
    margin: 10vh auto 0;
    padding: 28px 24px 22px;
    border-radius: 28px;
    background: linear-gradient(180deg, #ffffff, #f7fbff);
    border: 1px solid rgba(36,19,56,.08);
    box-shadow: 0 24px 60px rgba(20, 30, 44, .22);
}

.site-intro-badge {
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    padding: 0 12px;
    border-radius: 999px;
    background: rgba(43,60,82,.08);
    color: #2b3c52;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .05em;
    text-transform: uppercase;
}

.site-intro-card h2 {
    margin: 14px 0 10px;
    font-size: 34px;
    line-height: 1.05;
    letter-spacing: -.05em;
    color: var(--ink);
}

.site-intro-card p {
    margin: 0;
    color: var(--muted);
    font-size: 15px;
    line-height: 1.8;
}

.site-intro-actions {
    margin-top: 18px;
    display: flex;
    justify-content: flex-end;
}

.site-intro-button {
    min-height: 46px;
    padding: 0 18px;
    border: 0;
    border-radius: 14px;
    background: linear-gradient(135deg, #2b3c52, #3c5674);
    color: #fff;
    font-weight: 700;
    cursor: pointer;
}

.back-to-top {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 40;
    width: 48px;
    height: 48px;
    border: 0;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #2b3c52, #3c5674);
    color: #fff;
    font-size: 22px;
    font-weight: 800;
    box-shadow: 0 16px 30px rgba(20, 30, 44, .2);
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: opacity .24s ease, transform .24s ease, visibility .24s ease;
}

.back-to-top.is-visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

button,
input,
select,
textarea {
    font: inherit;
}

a { color: inherit; }

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: inherit;
    font-weight: 700;
    letter-spacing: -.02em;
}

.site-nav {
    position: sticky;
    top: 0;
    z-index: 20;
    backdrop-filter: blur(8px);
    background: rgba(255, 255, 255, .96);
    border-bottom: 1px solid rgba(36,19,56,.08);
    box-shadow: none;
}

.nav-inner {
    max-width: 1360px;
    margin: 0 auto;
    min-height: 40px;
    padding: 0 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
}

.nav-brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: rgba(36,19,56,.82);
    flex: 0 0 auto;
}

.nav-brand img {

    max-height: 56px;
    object-fit: contain;
    display: block;
}

.nav-brand-label {
    display: inline-flex;
    align-items: center;
    min-height: 36px;
}

.footer-brand img {
    width: 72px;
    max-width: 100%;
    height: auto;
    display: block;
    margin-bottom: 6px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 18px;
    flex-wrap: wrap;
    justify-content: center;
    flex: 1 1 auto;
}

.nav-links a {
    text-decoration: none;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: .04em;
    text-transform: uppercase;
    color: rgba(36,19,56,.74);
}

.nav-links a:hover {
    color: var(--purple-dark);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 26px;
    margin-left: auto;
}

.nav-action-link {
    text-decoration: none;
    text-transform: uppercase;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: .01em;
    color: rgba(36,19,56,.72);
}

.nav-action-link:hover {
    color: rgba(36,19,56,.96);
}

.nav-action-link-strong {
    font-weight: 700;
    color: rgba(36,19,56,.84);
}

.shell {
    width: 100%;
    overflow: visible;
}

.content-backdrop {
    max-width: 1380px;
    margin: 0 auto;
    padding: 18px 18px 0;
    background: transparent !important;
    background-image: none !important;
}

.content-backdrop::before,
.content-backdrop::after {
    display: none !important;
}

.hero-wrap {
    width: 100%;
    max-width: 1380px;
    margin: 0 auto;
    padding: 18px 18px 0;
    position: relative;
    z-index: 1;
}

.hero-stage {
    position: relative;
    width: min(78%, 980px);
    margin: 0 auto;
    min-height: 220px;
    overflow: hidden;
    
    box-shadow: 0 8px 22px rgba(36,19,56,.04);
}

.hero-slider {
    position: relative;
    width: 100%;
    min-height: 220px;
    background: #fff;
}

.hero-slider.effect-fade .hero-slide {
    transform: none;
    filter: none;
    transition: opacity 1.4s ease;
}

.hero-slider.effect-fade .hero-slide.active {
    transform: none;
    filter: none;
}

.hero-slider.effect-slide .hero-slide {
    transform: translateX(8%);
    filter: none;
    transition: opacity 1.1s ease, transform 1.3s ease;
}

.hero-slider.effect-slide .hero-slide.active {
    transform: translateX(0);
}

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transform: scale(1.035);
    filter: blur(4px);
    transition:
        opacity 1.6s ease,
        transform 5.8s ease,
        filter 1.6s ease;
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    background-image: var(--hero-image);
    will-change: opacity, transform, filter;
}

.hero-slide.active {
    opacity: 1;
    transform: scale(1);
    filter: blur(0);
}

.hero-dots {
    position: absolute;
    left: 50%;
    bottom: 14px;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    gap: 10px;
}

.hero-dot {
    width: 10px;
    height: 10px;
    border-radius: 999px;
    background: rgba(255,255,255,.42);
    border: 1px solid rgba(255,255,255,.35);
    cursor: pointer;
}

.hero-dot.active {
    background: #ffffff;
}

.grid-wrap {
    width: 100%;
    padding: 0;
}

.campaign-gallery {
    width: 100%;
    padding: 14px 0 22px;
}

.newsletter-band {
    margin: 6px 0 24px;
    padding: 24px;
    border-radius: 28px;
    background: linear-gradient(135deg, #2b3c52, #3c5674);
    color: #fff;
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(320px, .95fr);
    gap: 18px;
    align-items: center;
    box-shadow: 0 18px 40px rgba(20,30,44,.18);
}

.newsletter-pill {
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    padding: 0 12px;
    border-radius: 999px;
    background: rgba(255,255,255,.14);
    color: #fff;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .05em;
    text-transform: uppercase;
}

.newsletter-copy h3 {
    margin: 12px 0 8px;
    font-size: 34px;
    line-height: 1.05;
    letter-spacing: -.05em;
}

.newsletter-copy p {
    margin: 0;
    max-width: 760px;
    color: rgba(255,255,255,.82);
    font-size: 14px;
    line-height: 1.7;
}

.newsletter-alert {
    margin-top: 14px;
    padding: 12px 14px;
    border-radius: 16px;
    font-size: 13px;
    font-weight: 700;
}

.newsletter-alert.ok {
    background: rgba(91, 214, 141, .18);
    border: 1px solid rgba(167, 248, 194, .35);
    color: #d9ffe7;
}

.newsletter-alert.erro {
    background: rgba(255, 134, 134, .16);
    border: 1px solid rgba(255, 190, 190, .26);
    color: #ffe3e3;
}

.newsletter-form {
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 22px;
    padding: 18px;
    display: grid;
    gap: 12px;
}

.newsletter-field {
    display: grid;
    gap: 6px;
}

.newsletter-field span {
    color: rgba(255,255,255,.86);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .03em;
}

.newsletter-field input {
    width: 100%;
    min-height: 52px;
    border: 1px solid rgba(255,255,255,.2);
    border-radius: 16px;
    padding: 0 16px;
    background: rgba(255,255,255,.96);
    color: var(--ink);
}

.newsletter-submit {
    min-height: 50px;
    border: 0;
    border-radius: 16px;
    background: #ffffff;
    color: #2b3c52;
    font-weight: 800;
    cursor: pointer;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}

.gallery-strip {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    margin-top: 14px;
}

.gallery-card.campaign-option {
    border-radius: 8px;
    overflow: hidden;
    background: #fff;
    border: 1px solid rgba(36,19,56,.08);
    box-shadow: 0 6px 18px rgba(36,19,56,.04);
}

.campaign-link-wrap {
    display: block;
    text-decoration: none;
    color: inherit;
}

.gallery-card.campaign-option img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    object-position: center center;
    display: block;
}

.campaign-copy {
    padding: 14px 16px 16px;
}

.campaign-copy h4 {
    margin: 0 0 8px;
    font-size: 17px;
    line-height: 1.25;
    color: var(--ink);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.campaign-copy p {
    margin: 0;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.6;
    min-height: 46px;
}

.sources-section,
.rss-section {
    margin-top: 14px;
    padding: 22px;
    background: rgba(255,255,255,.98);
    border: 1px solid rgba(36,19,56,.08);
    box-shadow: 0 8px 22px rgba(36,19,56,.04);
    border-radius: 8px;
}

.sources-head,
.rss-head {
    margin-bottom: 14px;
}

.sources-head h3,
.rss-head h3 {
    margin: 0 0 6px;
    font-size: 30px;
    line-height: 1.1;
    letter-spacing: -.04em;
}

.sources-head p,
.rss-head p {
    margin: 0;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.6;
}

.sources-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}

.trusted-search-section {
    margin-top: 16px;
    padding: 20px;
    border-radius: 34px;
    background: #ffffff;
    border: 1px solid rgba(36,19,56,.08);
    box-shadow: 0 18px 38px rgba(36,19,56,.08);
    color: var(--ink);
    position: relative;
    overflow: visible;
    z-index: 8;
}

.trusted-persona {
    position: absolute;
    right: 292px;
    top: -34px;
    width: 86px;
    height: auto;
    z-index: 6;
    pointer-events: none;
    filter: drop-shadow(0 10px 16px rgba(36,19,56,.16));
}

.trusted-search-section::before,
.trusted-search-section::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.trusted-search-section::before {
    background:
        radial-gradient(circle at 15% 18%, rgba(43, 60, 82, .06) 0 2px, transparent 3px),
        radial-gradient(circle at 83% 82%, rgba(43, 60, 82, .04) 0 2px, transparent 3px);
    opacity: .35;
}

.trusted-search-section::after {
    background:
        linear-gradient(135deg, transparent 0 92%, rgba(43, 60, 82, .03) 100%),
        linear-gradient(315deg, transparent 0 94%, rgba(43, 60, 82, .03) 100%);
}

.trusted-search-section h3,
.trusted-search-section h4,
.trusted-search-section h5,
.trusted-search-section strong,
.trusted-search-section label,
.trusted-search-section button,
.trusted-search-section input,
.trusted-search-section p,
.trusted-search-section span,
.trusted-search-section li,
.trusted-search-section a,
.trusted-search-section div {
    font-family: inherit;
}

.trusted-search-head {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 16px;
    align-items: end;
    margin-bottom: 18px;
}

.trusted-search-head h3 {
    margin: 0;
    font-size: 21px;
    color: var(--ink);
}

.trusted-search-head p {
    font-size: 14px;
}

.trusted-search-head p {
    margin: 8px 0 0;
    max-width: 760px;
    color: var(--muted);
    line-height: 1.6;
}

.trusted-search-form {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 12px;
    margin-bottom: 18px;
}


.trusted-search-form input {
    width: 100%;
    min-height: 58px;
    border-radius: 20px;
    border: 1px solid rgba(186, 154, 108, .28);
    padding: 15px 18px;
    font-size: 14px;
    color: var(--ink);
    background: rgba(255,255,255,.9);
    box-shadow: inset 0 1px 0 rgba(255,255,255,.8);
}

.trusted-search-form button {
    min-height: 58px;
    border: none;
    border-radius: 18px;
    padding: 0 20px;
    background: linear-gradient(135deg, #2b3c52, #3c5674);
    color: #fff;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 12px 24px rgba(43, 60, 82, .24);
}

.trusted-chip-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 18px;
}

.trusted-chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(43,60,82,.08);
    color: #2b3c52;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .03em;
    text-transform: uppercase;
}

.trusted-chip-icon,
.trusted-title-icon,
.trusted-inline-icon {
    margin-right: 6px;
}

.trusted-rules {
    margin: 10px 0 16px;
    padding: 14px 16px;
    border-radius: 18px;
    background: rgba(36,19,56,.03);
    border: 1px solid rgba(36,19,56,.08);
}

.trusted-rules h4 {
    margin: 0 0 8px;
    font-size: 12px;
    letter-spacing: .05em;
    text-transform: uppercase;
    color: rgba(36,19,56,.66);
}

.trusted-rules ul {
    margin: 0;
    padding-left: 18px;
}

.trusted-rules li + li {
    margin-top: 6px;
}

.trusted-rules li {
    font-size: 13px;
}

.trusted-input-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
    margin: 8px 0 4px;
}

.trusted-input-badge {
    display: inline-flex;
    align-items: center;
    padding: 5px 10px;
    border-radius: 999px;
    background: rgba(43,60,82,.08);
    color: #2b3c52;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .05em;
    text-transform: uppercase;
}

.trusted-input-help {
    color: var(--muted);
    font-size: 13px;
}

.trusted-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(320px, .8fr);
    gap: 16px;
}

.trusted-search-section.is-collapsed .trusted-layout {
    display: none;
}

.trusted-card {
    padding: 16px;
    border-radius: 22px;
    border: 1px solid rgba(188, 155, 108, .18);
    background: rgba(255, 252, 246, .92);
    box-shadow: 0 14px 28px rgba(109, 83, 49, .08);
    backdrop-filter: blur(6px);
}

.trusted-search-summary {
    margin: 0 0 16px;
    color: rgba(36,19,56,.72);
    font-size: 13px;
}

.trusted-status {
    border-left: 6px solid rgba(43,60,82,.28);
}

.trusted-status.status-melhor_sinal {
    border-left-color: #198754;
}

.trusted-status.status-cautela {
    border-left-color: #c27a00;
}

.trusted-status.status-alto_risco,
.trusted-status.status-nao_avaliado {
    border-left-color: #c0392b;
}

.trusted-score-wrap {
    display: flex;
    align-items: center;
    gap: 14px;
    margin: 10px 0 16px;
}

.trusted-score-ring {
    width: 82px;
    height: 82px;
    border-radius: 999px;
    display: grid;
    place-items: center;
    background: conic-gradient(var(--score-color, #3c5674) calc(var(--score, 0) * 1%), rgba(36,19,56,.08) 0);
    position: relative;
}

.trusted-score-ring::after {
    content: "";
    position: absolute;
    inset: 8px;
    border-radius: 999px;
    background: #fff;
}

.trusted-score-value {
    position: relative;
    z-index: 1;
    font-size: 22px;
    font-weight: 800;
    color: var(--ink);
}

.trusted-score-copy strong {
    display: block;
    font-size: 12px;
    letter-spacing: .04em;
    text-transform: uppercase;
    color: var(--ink);
}

.trusted-score-copy span {
    display: block;
    margin-top: 4px;
    color: var(--muted);
    font-size: 12px;
}

.trusted-metrics {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    margin: 14px 0 16px;
}

.trusted-metric {
    padding: 12px 14px;
    border-radius: 18px;
    border: 1px solid rgba(188, 155, 108, .18);
    background: rgba(255, 251, 244, .9);
    box-shadow: inset 0 1px 0 rgba(255,255,255,.75);
}

.trusted-metric-label {
    display: block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .04em;
    text-transform: uppercase;
}

.trusted-metric-value {
    display: block;
    margin-top: 6px;
    font-size: 21px;
    font-weight: 800;
    line-height: 1;
}

.trusted-metric small {
    display: block;
    margin-top: 8px;
    color: var(--muted);
    font-size: 11px;
    line-height: 1.45;
}

.trusted-metric.is-positive {
    background: linear-gradient(180deg, rgba(219, 248, 227, .95), rgba(205, 241, 214, .88));
    color: #0d6832;
    border-color: rgba(42, 150, 84, .28);
}

.trusted-metric.is-alert {
    background: linear-gradient(180deg, rgba(255, 239, 217, .96), rgba(255, 230, 195, .92));
    color: #a12619;
    border-color: rgba(213, 132, 47, .28);
}

.trusted-metric.is-external {
    background: linear-gradient(180deg, rgba(243, 232, 255, .96), rgba(235, 220, 255, .92));
    color: #2b3c52;
    border-color: rgba(43, 60, 82, .24);
}


.trusted-columns {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin-top: 14px;
}

.trusted-list-block {
    padding: 14px;
    border-radius: 18px;
    background: rgba(255, 251, 244, .92);
    border: 1px solid rgba(188, 155, 108, .16);
}

.trusted-list-block h5 {
    margin: 0 0 10px;
    font-size: 13px;
    color: var(--ink);
}

.trusted-list-block ul {
    margin: 0;
    padding-left: 18px;
}

.trusted-list-block li + li {
    margin-top: 8px;
}

.trusted-criteria-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin-top: 14px;
}

.trusted-criterion {
    padding: 12px 14px;
    border-radius: 16px;
    border: 1px solid rgba(188, 155, 108, .18);
    background: rgba(255, 251, 244, .94);
    font-size: 12px;
    font-weight: 700;
}

.trusted-criterion.positivo {
    color: #0d6832;
    background: rgba(219, 248, 227, .88);
}

.trusted-criterion.alerta {
    color: #9a3412;
    background: rgba(255, 237, 212, .92);
}

.trusted-criterion.neutro {
    color: rgba(36,19,56,.74);
    background: rgba(250, 245, 236, .96);
}

.trusted-side {
    display: grid;
    gap: 14px;
}

.trusted-headline {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 18px;
    align-items: center;
    margin-bottom: 12px;
}

.trusted-level-card {
    padding: 14px 16px;
    border-radius: 20px;
    background: linear-gradient(180deg, rgba(255,255,255,.95), rgba(255,249,240,.92));
    border: 1px solid rgba(188, 155, 108, .18);
    margin-bottom: 14px;
    box-shadow: inset 0 1px 0 rgba(255,255,255,.85);
}

.trusted-level-card strong {
    display: block;
    font-size: 16px;
    color: var(--ink);
}

.trusted-level-card span {
    display: block;
    margin-top: 6px;
    color: var(--muted);
    line-height: 1.55;
    font-size: 13px;
}

.trusted-section-title {
    margin: 18px 0 10px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: rgba(36,19,56,.62);
}

.trusted-side h4 {
    margin: 0 0 8px;
    font-size: 16px;
}

.trusted-side p {
    margin: 0;
    font-size: 13px;
}

.trusted-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 10px;
}

.trusted-badge,
.trusted-type {
    display: inline-flex;
    align-items: center;
    padding: 4px 8px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .04em;
    text-transform: uppercase;
}

.trusted-badge {
    background: rgba(43,60,82,.1);
    color: var(--purple-dark);
}

.trusted-type {
    background: rgba(36,19,56,.06);
    color: rgba(36,19,56,.72);
}

.trusted-card h4 {
    margin: 0 0 8px;
    font-size: 20px;
    color: var(--ink);
}

.trusted-card p {
    margin: 0;
    color: var(--muted);
}

.trusted-query {
    margin: 12px 0;
    padding: 10px 12px;
    border-radius: 12px;
    background: rgba(36,19,56,.04);
    color: rgba(36,19,56,.84);
    font-size: 12px;
    word-break: break-word;
}

.trusted-card a {
    display: inline-flex;
    margin-top: 8px;
    text-decoration: none;
    color: var(--purple-dark);
    font-weight: 700;
}

.source-card {
    display: block;
    text-decoration: none;
    color: var(--ink);
    background: #ffffff;
    border: 1px solid rgba(36,19,56,.08);
    border-top: 1px solid rgba(43,60,82,.24);
    padding: 18px;
    border-radius: 8px;
    transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.source-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(36,19,56,.05);
    border-color: rgba(43,60,82,.18);
}

.source-badge {
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    padding: 0 10px;
    border-radius: 999px;
    background: rgba(43,60,82,.1);
    color: var(--purple-dark);
    font-size: 11px;
    font-weight: 600;
    margin-bottom: 10px;
}

.source-card h4 {
    margin: 0 0 8px;
    font-size: 20px;
    line-height: 1.3;
    letter-spacing: -.02em;
}

.source-card p {
    margin: 0 0 10px;
    color: #4a3b62;
    font-size: 13px;
    line-height: 1.65;
}

.source-link {
    display: inline-flex;
    align-items: center;
    color: var(--purple-dark);
    font-size: 12px;
    font-weight: 600;
}

.source-link::after {
    content: "→";
    margin-left: 6px;
}

.rss-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    align-items: stretch;
}

.rss-card {
    background: #ffffff;
    border: 1px solid rgba(36,19,56,.08);
    padding: 16px;
    border-radius: 8px;
    height: 100%;
    display: flex;
    flex-direction: column;
    min-height: 170px;
}

.rss-card h4 {
    margin: 0;
    font-size: 16px;
}

.rss-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
}

.rss-logo {
    flex: 0 0 auto;
    min-width: 44px;
    height: 26px;
    padding: 0 8px;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .02em;
    text-transform: uppercase;
    color: #fff;
}

.rss-logo.g1 {
    background: #c91d12;
}

.rss-logo.uol {
    background: linear-gradient(90deg, #f7a400, #ffcc4d);
    color: #402600;
}

.rss-logo.cnn-brasil {
    background: #cf1e2e;
}

.rss-logo.stj {
    background: linear-gradient(90deg, #0a5c9f, #2f86cc);
}

.rss-logo.pcdf {
    background: linear-gradient(90deg, #1458a8, #2f7de0);
}

.rss-logo.camara {
    background: linear-gradient(90deg, #1b7f3c, #46a85f);
}

.rss-list {
    display: grid;
    gap: 10px;
    flex: 1 1 auto;
    align-content: start;
}

.rss-item {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 10px;
    align-items: start;
    text-decoration: none;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(36,19,56,.08);
    min-height: 74px;
}

.rss-item:last-child {
    padding-bottom: 0;
    border-bottom: 0;
}

.rss-item strong {
    display: block;
    margin-bottom: 4px;
    color: var(--ink);
    font-size: 14px;
    line-height: 1.35;
}

.rss-thumb {
    width: 96px;
    height: 72px;
    border-radius: 10px;
    overflow: hidden;
    background: linear-gradient(135deg, #e8eff7, #f7fbff);
    border: 1px solid rgba(36,19,56,.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(36,19,56,.35);
    font-size: 11px;
    font-weight: 700;
}

.rss-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    display: block;
}

.rss-copy {
    min-width: 0;
}

.rss-item span {
    display: block;
    color: var(--muted);
    font-size: 12px;
    line-height: 1.5;
}

.rss-item span:not(.rss-link) {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.rss-meta {
    color: rgba(36,19,56,.62);
    font-weight: 500;
    font-size: 10px !important;
    line-height: 1.25 !important;
}

.rss-link {
    display: inline-flex;
    align-items: center;
    margin-top: 8px;
    color: #cdb3fb;
    font-size: 12px;
    font-weight: 700;
    text-decoration: none;
}

.rss-card.single-item .rss-list {
    min-height: 100%;
}

.rss-card.single-item .rss-item {
    grid-template-columns: minmax(0, 1fr);
    align-items: start;
    min-height: 100%;
    padding-bottom: 0;
    border-bottom: 0;
}

.rss-card.single-item .rss-thumb {
    width: 100%;
    height: 100%;
    min-height: 180px;
}

.rss-card.single-item .rss-copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.rss-card.single-item .rss-copy strong {
    font-size: 20px;
    line-height: 1.25;
    margin-bottom: 8px;
}

.rss-card.single-item .rss-copy span {
    font-size: 14px;
    line-height: 1.55;
}

.rss-card.single-item .rss-copy span:not(.rss-link) {
    -webkit-line-clamp: 5;
}

.rss-link:hover {
    color: #fff;
}

.rss-error {
    color: var(--muted);
    font-size: 13px;
    line-height: 1.6;
    flex: 1 1 auto;
}


.video-section {
    margin-top: 14px;
}

.video-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.7fr) minmax(320px, .9fr);
    gap: 10px;
    align-items: stretch;
}

.video-grid.layout-compacto {
    grid-template-columns: minmax(0, 1.45fr) minmax(300px, .95fr);
}

.video-grid.layout-padrao {
    grid-template-columns: minmax(0, 1.7fr) minmax(320px, .9fr);
}

.video-grid.layout-destaque_video {
    grid-template-columns: minmax(0, 1.95fr) minmax(300px, .75fr);
}

.video-grid.layout-destaque_lista {
    grid-template-columns: minmax(0, 1.35fr) minmax(340px, 1.05fr);
}

.video-main,
.video-side {
    background: rgba(255,255,255,.96);
    border: 1px solid rgba(36,19,56,.08);
    box-shadow: 0 18px 34px rgba(36,19,56,.08);
    overflow: hidden;
    height: 100%;
    border-radius: 20px;
}

.video-main {
    padding: 10px 10px 14px;
    display: flex;
    flex-direction: column;
    position: sticky;
    top: 82px;
    align-self: start;
}

.video-frame {
    position: relative;
    width: 100%;
    padding-top: 52%;
    background: #050308;
    border-radius: 12px;
    overflow: hidden;
}

.video-frame.ratio-compacto {
    padding-top: 42%;
}

.video-frame.ratio-padrao {
    padding-top: 52%;
}

.video-frame.ratio-grande {
    padding-top: 56.25%;
}

.video-frame iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.video-main h3 {
    margin: 14px 4px 2px;
    font-size: 28px;
    letter-spacing: -.04em;
    line-height: 1.25;
}

.video-main p {
    margin: 0 4px;
    color: var(--muted);
    line-height: 1.5;
    font-size: 14px;
}

.video-side {
    padding: 12px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.video-side-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 12px;
}

.video-side-head h4 {
    margin: 0;
    font-size: 24px;
    letter-spacing: -.03em;
}

.video-pill {
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    padding: 0 11px;
    border-radius: 999px;
    background: rgba(125,70,223,.12);
    color: var(--purple-dark);
    font-size: 12px;
    font-weight: 700;
}

.video-side-player {
    background: var(--panel-soft);
    border: 1px solid rgba(36,19,56,.08);
    border-radius: 14px;
    padding: 8px;
}

.video-side-player .video-frame {
    padding-top: 50%;
    border-radius: 10px;
}

.video-side-player strong {
    display: block;
    margin: 8px 2px 4px;
    font-size: 13px;
    line-height: 1.35;
}

.video-side-player span {
    display: block;
    margin: 0 2px;
    color: var(--muted);
    font-size: 11px;
    line-height: 1.45;
}

.video-list {
    display: grid;
    gap: 8px;
    align-content: start;
    flex: 1 1 auto;
}

.video-item {
    display: grid;
    grid-template-columns: 118px minmax(0, 1fr);
    gap: 8px;
    text-decoration: none;
    background: var(--panel-soft);
    border: 1px solid rgba(36,19,56,.08);
    padding: 7px;
    color: var(--ink);
    border-radius: 12px;
}

.topics-section {
    margin-top: 16px;
    padding: 22px;
    background: rgba(255,255,255,.98);
    border: 1px solid rgba(36,19,56,.08);
    box-shadow: 0 8px 22px rgba(36,19,56,.04);
    border-radius: 8px;
}

.topics-head {
    margin-bottom: 14px;
}

.topics-head h2 {
    margin: 0 0 6px;
    font-size: 30px;
    line-height: 1.05;
    letter-spacing: -.05em;
}

.topics-head p {
    margin: 0;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.65;
}

.topics-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
}

.topic-card {
    display: block;
    text-decoration: none;
    color: var(--ink);
    background: #ffffff;
    border: 1px solid rgba(36,19,56,.08);
    border-top: 1px solid rgba(125,70,223,.24);
    border-radius: 8px;
    transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.topic-link-wrap {
    display: block;
    height: 100%;
    padding: 18px;
    text-decoration: none;
    color: inherit;
}

.topic-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(36,19,56,.05);
    border-color: rgba(125,70,223,.18);
}

.topic-badge {
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    padding: 0 10px;
    border-radius: 999px;
    background: rgba(125,70,223,.08);
    color: var(--purple-dark);
    font-size: 11px;
    font-weight: 600;
    margin-bottom: 10px;
}

.topic-card h3 {
    margin: 0 0 10px;
    font-size: 20px;
    line-height: 1.3;
    letter-spacing: -.02em;
}

.topic-card p {
    margin: 0;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.65;
}

.topic-link {
    display: inline-flex;
    align-items: center;
    margin-top: 10px;
    color: var(--purple-dark);
    font-size: 12px;
    font-weight: 600;
}

.topics-grid .topic-card:nth-child(1) .topic-badge {
    background: rgba(125, 70, 223, .14);
    color: #7d46df;
}

.topics-grid .topic-card:nth-child(1) h3,
.topics-grid .topic-card:nth-child(1) .topic-link {
    color: #e23b2f;
}

.topics-grid .topic-card:nth-child(2) .topic-badge {
    background: rgba(58, 134, 255, .14);
    color: #3a86ff;
}

.topics-grid .topic-card:nth-child(2) h3,
.topics-grid .topic-card:nth-child(2) .topic-link {
    color: #2e66d8;
}

.topics-grid .topic-card:nth-child(3) .topic-badge {
    background: rgba(20, 184, 154, .14);
    color: #14b89a;
}

.topics-grid .topic-card:nth-child(3) h3,
.topics-grid .topic-card:nth-child(3) .topic-link {
    color: #129987;
}

.topics-grid .topic-card:nth-child(4) .topic-badge {
    background: rgba(243, 155, 29, .16);
    color: #e08a11;
}

.topics-grid .topic-card:nth-child(4) h3,
.topics-grid .topic-card:nth-child(4) .topic-link {
    color: #d53a7f;
}

.topics-grid .topic-card:nth-child(5) .topic-badge {
    background: rgba(213, 58, 127, .14);
    color: #d53a7f;
}

.topics-grid .topic-card:nth-child(5) h3,
.topics-grid .topic-card:nth-child(5) .topic-link {
    color: #9c7a00;
}

.topics-grid .topic-card:nth-child(6) .topic-badge {
    background: rgba(93, 104, 255, .14);
    color: #5d68ff;
}

.topics-grid .topic-card:nth-child(6) h3,
.topics-grid .topic-card:nth-child(6) .topic-link {
    color: #4b57df;
}

.video-item img {
    width: 100%;
    height: 72px;
    object-fit: cover;
    display: block;
    border-radius: 8px;
}

.video-item strong {
    display: block;
    margin-bottom: 4px;
    font-size: 13px;
    line-height: 1.3;
}

.video-item span {
    display: block;
    color: var(--muted);
    font-size: 11px;
    line-height: 1.45;
}

.video-stack {
    display: grid;
    gap: 0;
    position: relative;
}

.video-overlay-card {
    position: absolute;
    right: 18px;
    bottom: -46px;
    width: min(420px, 34%);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 36px rgba(0,0,0,.34);
    border: 1px solid rgba(255,255,255,.12);
    background: #fff;
    z-index: 2;
}

.video-overlay-card img {
    display: block;
    width: 100%;
    height: auto;
}

.gallery-card {
    position: relative;
    min-height: 280px;
    overflow: hidden;
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(255,255,255,.06);
    box-shadow: 0 18px 34px rgba(0,0,0,.18);
}

.gallery-card img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.gallery-card.campaign-option {
    min-height: 300px;
}

.closing-section {
    width: 100%;

    margin-bottom: -8px;
}

.closing-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.closing-panel {

    padding: 56px 34px 0;
    text-align: center;
    background: #eef1f5;
    overflow: hidden;
}

.closing-panel h3 {
    margin: 0 0 10px;
    color: var(--ink);
    font-size: clamp(34px, 4vw, 58px);
    line-height: 1;
    font-weight: 300;
    letter-spacing: -1.8px;
}

.closing-panel p {
    margin: 0 auto;
    max-width: 520px;
    color: var(--muted);
    font-size: 18px;
    line-height: 1.6;
}

.closing-stage {

  height: 420px;
  margin: 36px auto 0;
  border-radius: 24px 24px 0 0;
  background: #ddd5ed;
  box-shadow: 0 28px 48px rgba(36,19,56,.12);
  padding: 38px;
}

.closing-stage.placeholder {
   <!-- background: linear-gradient(180deg, rgba(29,16,45,.96), rgba(24,13,37,.96)); -->
}

.closing-stage.placeholder::before {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    border-radius: 18px 18px 0 0;
    background:
        radial-gradient(circle at 20% 24%, rgba(125,70,223,.22) 0 18px, transparent 19px),
        radial-gradient(circle at 74% 38%, rgba(77,143,255,.18) 0 24px, transparent 25px),
        linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.02));
}

.report-mock {
    width: 100%;
    height: 100%;
    border-radius: 14px;
    background: #fffefc;
    box-shadow: inset 0 0 0 1px rgba(123, 105, 169, .16);
    padding: 10px;
    text-align: left;
    color: #2c1c0e;
}

.report-mock-top {
    border: 2px solid #7b69a9;
    border-radius: 4px;
    padding: 5px 8px;
    text-align: center;
    font-size: 8px;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.report-mock-card {
    border: 1px solid #ece4fb;
    border-radius: 14px;
    padding: 10px;
    background: #fff;
}

.report-mock-title {
    font-size: 9px;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.report-mock-label {
    font-size: 7px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 4px;
}

.report-mock-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    margin-bottom: 8px;
}

.report-mock-tag {
    border: 1px solid rgba(0,0,0,.12);
    border-radius: 6px;
    padding: 4px 6px;
    font-size: 7px;
    font-weight: 700;
    background: #f4f4f4;
}

.report-mock-area,
.report-mock-input {
    border: 1px solid rgba(0,0,0,.12);
    border-radius: 6px;
    background: #fff;
}

.report-mock-area {
    height: 40px;
    margin-bottom: 10px;
}

.report-mock-actions {
    display: flex;
    gap: 5px;
    margin-bottom: 10px;
}

.report-mock-action {
    border: 1px solid rgba(0,0,0,.12);
    border-radius: 6px;
    padding: 4px 7px;
    font-size: 7px;
    font-weight: 700;
    background: #f4f4f4;
}

.report-mock-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 6px;
    margin-bottom: 6px;
}

.report-mock-input {
    height: 20px;
}

.report-mock-check {
    display: flex;
    align-items: center;
    gap: 5px;
    border: 1px solid rgba(0,0,0,.12);
    border-radius: 6px;
    padding: 4px 6px;
    font-size: 7px;
    font-weight: 700;
}

.report-mock-check .box {
    width: 10px;
    height: 10px;
    border: 1px solid #8d8d8d;
    border-radius: 2px;
}

.gallery-card.hero-media {
    grid-column: span 2;
    min-height: 360px;
}

.gallery-card.tall-media {
    min-height: 360px;
}

.gallery-card.form-wide {
    grid-column: span 2;
    min-height: 320px;
}

.gallery-card.wide-media {
    min-height: 320px;
}

.gallery-card.text-media {
    padding: 34px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: linear-gradient(180deg, rgba(40,20,61,.92), rgba(26,14,41,.96));
}

.gallery-card.text-media h3 {
    margin: 0 0 12px;
    font-size: clamp(26px, 3vw, 40px);
    line-height: 1.02;
    letter-spacing: -1px;
}

.gallery-card.text-media p {
    margin: 0;
    color: rgba(255,255,255,.72);
    line-height: 1.8;
    font-size: 15px;
}

.gallery-card.report-form {
    min-height: 360px;
    padding: 16px;
    background: linear-gradient(180deg, #fffdf8, #f5eedf);
    color: var(--ink);
}

.report-sheet {
    height: 100%;
    border-radius: 10px;
    background: transparent;
    border: 0;
    box-shadow: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.report-topline {
    display: block;
}

.report-kicker {
    display: block;
    width: 100%;
    text-align: center;
    border: 2px solid #7b69a9;
    border-radius: 6px;
    padding: 10px 12px;
    background: #fffefc;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .4px;
    text-transform: uppercase;
    color: #2f223f;
}

.report-sheet h3 {
    margin: 0;
    font-size: 18px;
    line-height: 1.05;
    letter-spacing: -.4px;
    color: #2c231b;
    text-transform: uppercase;
}

.report-sheet p {
    margin: 0;
    color: #5c5349;
    line-height: 1.45;
    font-size: 12px;
}

.report-panel {
    border-radius: 24px;
    background: rgba(255,255,255,.92);
    box-shadow: inset 0 0 0 1px rgba(123, 105, 169, .14);
    padding: 16px 16px 14px;
}

.report-section {
    margin-bottom: 14px;
}

.report-section:last-child {
    margin-bottom: 0;
}

.report-section-title {
    margin: 0 0 10px;
    font-size: 14px;
    font-weight: 800;
    color: #2f261f;
    text-transform: uppercase;
}

.report-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
}

.report-field {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.report-field.full {
    grid-column: 1 / -1;
}

.report-field label {
    font-size: 11px;
    font-weight: 700;
    color: #6a4420;
    text-transform: uppercase;
}

.report-field input,
.report-field select,
.report-field textarea {
    width: 100%;
    border: 2px solid rgba(123, 123, 123, .22);
    border-radius: 10px;
    background: rgba(255,255,255,.98);
    padding: 10px 12px;
    font-size: 12px;
    color: #2c1c0e;
}

.report-field textarea {
    min-height: 88px;
    resize: vertical;
}

.report-tag-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    gap: 8px;
}

.report-tag {
    border-radius: 10px;
    background: #f2f2f2;
    color: #2a2a2a;
    border: 1px solid rgba(0,0,0,.1);
    padding: 7px 10px;
    font-size: 11px;
    font-weight: 800;
}

.report-tag .icon,
.report-submit .icon,
.report-secondary .icon,
.report-inline-check .icon {
    margin-right: 6px;
}

.report-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.report-submit,
.report-secondary {
    border: 1px solid rgba(0,0,0,.1);
    border-radius: 10px;
    min-height: 36px;
    padding: 0 12px;
    font-weight: 700;
    font-size: 11px;
}

.report-submit {
    background: #f2f2f2;
    color: #352a1e;
}

.report-secondary {
    background: #f2f2f2;
    color: #352a1e;
}

.report-inline-check {
    display: flex;
    align-items: center;
    gap: 10px;
    min-height: 100%;
    border: 2px solid rgba(123, 123, 123, .22);
    border-radius: 10px;
    background: rgba(255,255,255,.98);
    padding: 10px 12px;
    color: #3d3125;
    font-size: 12px;
    font-weight: 700;
}

.report-inline-check .box {
    width: 18px;
    height: 18px;
    border-radius: 4px;
    border: 2px solid #8d8d8d;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
}

.footer-form-band {
    padding: 18px 18px 0;
}

.footer-form-grid {
    display: grid;
    grid-template-columns: 420px minmax(0, 1fr);
    gap: 14px;
}

.footer-form-grid .gallery-card {
    min-height: 0;
}

.footer-form-grid .gallery-card.report-form {
    min-height: 430px;
}

.content-backdrop {
    background:
        linear-gradient(rgba(248,244,255,.78), rgba(243,238,251,.88)),
        url('assets/img/background.png') center top / cover fixed no-repeat;
}

.topics-section {
    width: 100%;
    padding: 46px 34px 38px;
    background: linear-gradient(180deg, rgba(255,255,255,.36), rgba(255,255,255,.12));
    border-bottom: 1px solid rgba(36,19,56,.06);
}

.topics-head {
    max-width: 860px;
    margin: 0 auto 28px;
    text-align: center;
}

.topics-head h2 {
    margin: 0 0 10px;
    font-size: clamp(34px, 4vw, 56px);
    line-height: 1;
    letter-spacing: -1.8px;
}

.topics-head p {
    margin: 0;
    color: var(--muted);
    font-size: 18px;
    line-height: 1.7;
}

.topics-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.topic-card {
    background: rgba(255,255,255,.92);
    border: 1px solid rgba(36,19,56,.08);
    border-radius: 24px;
    padding: 24px 22px;
    box-shadow: 0 18px 30px rgba(36,19,56,.08);
}

.topic-index {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--purple-dark), var(--purple));
    color: #fff;
    font-weight: 800;
    margin-bottom: 16px;
}

.topic-card:nth-child(1) .topic-index { background: linear-gradient(90deg, #7d46df, #9d67ff); }
.topic-card:nth-child(2) .topic-index { background: linear-gradient(90deg, #2457d6, #4f8dff); }
.topic-card:nth-child(3) .topic-index { background: linear-gradient(90deg, #0f8f7d, #30c9b0); }
.topic-card:nth-child(4) .topic-index { background: linear-gradient(90deg, #b86a08, #f0a53a); }
.topic-card:nth-child(5) .topic-index { background: linear-gradient(90deg, #bb2e65, #f06297); }
.topic-card:nth-child(6) .topic-index { background: linear-gradient(90deg, #5c35c9, #8c63ff); }

.topic-card h3 {
    margin: 0 0 10px;
    font-size: 22px;
    line-height: 1.2;
}

.topic-card p {
    margin: 0;
    color: var(--muted);
    line-height: 1.7;
    font-size: 15px;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0;
}

.feature-panel {
    min-height: 610px;
    padding: 82px 56px 0;
    text-align: center;
    background: #1d102d;
    border-right: 1px solid rgba(255,255,255,.06);
    border-bottom: 1px solid rgba(255,255,255,.06);
}

.feature-panel:nth-child(2n) {
    border-right: 0;
}

.feature-panel.light {
    background: #f8f4ff;
    color: var(--ink);
}

.feature-panel.light.campaign-panel {
    background: linear-gradient(180deg, #fcfaff 0%, #f5efff 100%);
}

.feature-panel h2 {
    margin: 0 0 10px;
    font-size: clamp(34px, 4vw, 58px);
    line-height: 1;
    font-weight: 300;
    letter-spacing: -1.8px;
}

.feature-panel p {
    margin: 0 auto;
    max-width: 560px;
    font-size: 18px;
    line-height: 1.6;
    color: rgba(255,255,255,.8);
}

.feature-panel.light p {
    color: var(--muted);
}

.feature-art {
    width: min(100%, 520px);
    margin: 58px auto 0;
    border-radius: 26px 26px 0 0;
    background: linear-gradient(180deg, #3d245f, #241338);
    box-shadow: 0 26px 50px rgba(0,0,0,.22);
}

.feature-art.large {
    height: 320px;
}

.feature-art.medium {
    height: 280px;
}

.feature-art.light {
    background: linear-gradient(180deg, #f4ecff, #e4d4ff);
    box-shadow: 0 24px 44px rgba(93,45,175,.12);
}

.feature-art .screen {
    height: 100%;
    border-radius: 26px 26px 0 0;
    position: relative;
    overflow: hidden;
}

.feature-art.image-art {
    width: min(100%, 920px);
    margin-top: 30px;
    background: transparent;
    box-shadow: none;
}

.feature-art.image-art .screen {
    border-radius: 32px;
    min-height: 430px;
}

.screen.image-fill {
    background-position: center center;
    background-size: contain;
    background-repeat: no-repeat;
}

.screen.image-fill.full-art {
    background-color: #fcfaff;
    background-position: center bottom;
}

.screen.report::before,
.screen.report::after,
.screen.cards::before,
.screen.cards::after,
.screen.shield::before,
.screen.shield::after,
.screen.wave::before,
.screen.wave::after {
    content: "";
    position: absolute;
}

.screen.report::before {
    inset: 28px 30px auto 30px;
    height: 18px;
    border-radius: 999px;
    background: rgba(255,255,255,.24);
}

.screen.report::after {
    inset: 70px 30px 34px;
    border-radius: 20px;
    background:
        linear-gradient(180deg, rgba(255,255,255,.16), rgba(255,255,255,.04)),
        repeating-linear-gradient(180deg, transparent 0 28px, rgba(255,255,255,.08) 28px 29px);
}

.screen.cards::before {
    inset: 26px 26px auto 26px;
    height: 120px;
    border-radius: 24px;
    background: rgba(43,60,82,.12);
}

.screen.cards::after {
    inset: 170px 26px 28px;
    border-radius: 22px;
    background:
        linear-gradient(180deg, rgba(43,60,82,.08), rgba(43,60,82,.03)),
        repeating-linear-gradient(90deg, transparent 0 110px, rgba(43,60,82,.11) 110px 111px);
}

.screen.shield::before {
    left: 50%;
    top: 58px;
    width: 150px;
    height: 188px;
    transform: translateX(-50%);
    background: linear-gradient(180deg, #3c5674, #2b3c52);
    clip-path: polygon(50% 0, 100% 22%, 88% 76%, 50% 100%, 12% 76%, 0 22%);
    box-shadow: 0 20px 40px rgba(43,60,82,.24);
}

.screen.shield::after {
    left: 50%;
    top: 110px;
    width: 90px;
    height: 16px;
    transform: translateX(-50%) rotate(-45deg);
    border-radius: 999px;
    background: #fff;
    box-shadow: -26px 24px 0 0 #fff;
}

.screen.wave::before {
    inset: auto 24px 30px 24px;
    height: 120px;
    border-radius: 26px;
    background:
        radial-gradient(circle at 18% 60%, rgba(43,60,82,.46) 0 36px, transparent 37px),
        radial-gradient(circle at 42% 45%, rgba(43,60,82,.34) 0 44px, transparent 45px),
        radial-gradient(circle at 70% 56%, rgba(43,60,82,.5) 0 34px, transparent 35px),
        radial-gradient(circle at 88% 35%, rgba(43,60,82,.26) 0 28px, transparent 29px),
        linear-gradient(180deg, rgba(43,60,82,.12), rgba(43,60,82,.04));
}

.screen.wave::after {
    inset: 28px 28px auto 28px;
    height: 24px;
    border-radius: 999px;
    background: rgba(43,60,82,.12);
}

.cta-band {
    width: 100%;
    padding: 0;
}

.cta-shell {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 34px 42px;
    background: linear-gradient(180deg, #ffffff, #f7fbff);
    border-top: 1px solid rgba(36,19,56,.08);
    border-bottom: 1px solid rgba(36,19,56,.08);
    color: var(--ink);
}

.cta-shell h3 {
    margin: 0 0 8px;
    font-size: 30px;
    font-weight: 700;
    letter-spacing: -.8px;
}

.cta-shell p {
    margin: 0;
    color: var(--muted);
    line-height: 1.6;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0 18px;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 600;
    font-size: 13px;
    border: 1px solid transparent;
    transition: .2s ease;
}

.btn-primary {
    background: linear-gradient(90deg, var(--purple-dark), var(--purple));
    color: #fff;
}

.btn-primary:hover {
    filter: brightness(1.06);
}

.btn-outline {
    border-color: rgba(36,19,56,.12);
    color: rgba(36,19,56,.88);
    background: rgba(255,255,255,.82);
}

.btn-light {
    background: linear-gradient(90deg, var(--purple-dark), var(--purple));
    color: #fff;
}

.site-footer {
    width: 100%;
    padding: 32px 42px 52px;
    background: #ffffff;
    border-top: 1px solid rgba(36,19,56,.08);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr repeat(4, minmax(0, 1fr));
    gap: 28px;
    align-items: start;
}

.footer-brand {
    color: rgba(36,19,56,.72);
    font-size: 13px;
    line-height: 1.7;
}

.footer-brand-mark {
    width: 30px;
    height: 30px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255,255,255,.22);
    margin-bottom: 10px;
}

.footer-col h4 {
    margin: 0 0 14px;
    color: var(--ink);
    font-size: 15px;
}

.footer-col a,
.footer-col span {
    display: block;
    margin-bottom: 10px;
    color: rgba(36,19,56,.62);
    text-decoration: none;
    font-size: 13px;
    line-height: 1.6;
}

.footer-col a:hover {
    color: var(--purple-dark);
}

.source-card:hover h4,
.source-card:hover p,
.campaign-link-wrap:hover h4,
.campaign-link-wrap:hover p,
.topic-link-wrap:hover h3,
.topic-link-wrap:hover p,
.rss-item:hover strong,
.rss-item:hover span,
.supporter-logo:hover,
.privacy-btn:hover {
    color: inherit;
}

.footer-note {
    margin-top: 34px;
    text-align: center;
    color: rgba(36,19,56,.5);
    font-size: 12px;
}

.footer-signature {
    margin-top: 14px;
    text-align: center;
}

.footer-signature span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 14px;
    border-radius: 999px;
    background: rgba(43,60,82,.06);
    border: 1px solid rgba(43,60,82,.1);
    color: #2b3c52;
    font-size: 12px;
    font-weight: 600;
    line-height: 1.5;
}

/* Paleta editorial inspirada em portais de noticia */
.nav-links a:nth-child(1) { color: #c91d12; }
.nav-links a:nth-child(2) { color: #1d4fa8; }
.nav-links a:nth-child(3) { color: #007d6b; }
.nav-links a:nth-child(4) { color: #179c38; }
.nav-links a:nth-child(5) { color: #f06b00; }
.nav-links a:nth-child(6) { color: #e4113b; }
.nav-links a:nth-child(7) { color: #ff6b00; }
.nav-links a:nth-child(8) { color: #b8228c; }
.nav-links a:nth-child(9) { color: #3e3e3e; }
.nav-links a:nth-child(10) { color: #c93214; }

.topic-card:nth-child(1) h3,
.sources-grid .source-card:nth-child(1) h4,
.sources-grid .source-card:nth-child(1) .source-badge,
.sources-grid .source-card:nth-child(1) .source-link,
.rss-card:nth-child(1) h4 {
    color: #c91d12;
}

.topic-card:nth-child(2) h3,
.sources-grid .source-card:nth-child(2) h4,
.sources-grid .source-card:nth-child(2) .source-badge,
.sources-grid .source-card:nth-child(2) .source-link,
.rss-card:nth-child(2) h4,
.video-item:nth-child(1) strong {
    color: #1d57bf;
}

.topic-card:nth-child(3) h3,
.sources-grid .source-card:nth-child(3) h4,
.sources-grid .source-card:nth-child(3) .source-badge,
.sources-grid .source-card:nth-child(3) .source-link,
.video-item:nth-child(2) strong {
    color: #007d6b;
}

.topic-card:nth-child(4) h3,
.sources-grid .source-card:nth-child(4) h4,
.sources-grid .source-card:nth-child(4) .source-badge,
.sources-grid .source-card:nth-child(4) .source-link,
.video-item:nth-child(3) strong {
    color: #b51c63;
}

.topic-card:nth-child(5) h3,
.sources-grid .source-card:nth-child(5) h4,
.sources-grid .source-card:nth-child(5) .source-badge,
.sources-grid .source-card:nth-child(5) .source-link,
.video-item:nth-child(4) strong {
    color: #8c6d00;
}

.topic-card:nth-child(6) h3,
.sources-grid .source-card:nth-child(6) h4,
.sources-grid .source-card:nth-child(6) .source-badge,
.sources-grid .source-card:nth-child(6) .source-link,
.rss-card:nth-child(3) h4,
.video-item:nth-child(5) strong {
    color: #4255d0;
}

.sources-grid .source-card:nth-child(1) { border-top-color: #c91d12; }
.sources-grid .source-card:nth-child(2) { border-top-color: #1d57bf; }
.sources-grid .source-card:nth-child(3) { border-top-color: #007d6b; }
.sources-grid .source-card:nth-child(4) { border-top-color: #b51c63; }
.sources-grid .source-card:nth-child(5) { border-top-color: #8c6d00; }
.sources-grid .source-card:nth-child(6) { border-top-color: #4255d0; }

.video-main h3 {
    color: #1d2d6b;
}

.video-side-head h4 {
    color: #c91d12;
}

/* Compactacao extra dos cards de feed */
.rss-card h4 {
    font-size: 15px;
    line-height: 1.2;
}

.rss-list {
    gap: 6px;
}

.rss-item {
    padding-bottom: 6px;
    min-height: 38px;
}

.rss-item strong {
    display: block;
    margin-bottom: 2px;
    font-size: 12px;
    line-height: 1.25;
}

.rss-item span {
    font-size: 11px;
    line-height: 1.3;
}

.rss-item span:not(.rss-link) {
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.rss-card.single-item .rss-list {
    min-height: auto;
}

.rss-card.single-item .rss-item {
    grid-template-columns: minmax(0, 1fr);
    align-items: start;
    min-height: 0;
    padding-bottom: 0;
    border-bottom: 0;
}

.rss-card.single-item .rss-thumb {
    display: none;
}

.rss-card.single-item .rss-copy {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 6px;
    min-height: 100%;
}

.rss-card.single-item .rss-copy strong {
    display: -webkit-box;
    font-size: 18px;
    line-height: 1.25;
    margin-bottom: 0;
    min-height: 44px;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.rss-card.single-item .rss-copy span {
    font-size: 13px;
    line-height: 1.35;
}

.rss-card.single-item .rss-copy span:not(.rss-link) {
    -webkit-line-clamp: 1;
}

.rss-link {
    margin-top: auto;
    font-size: 11px;
}

/* Overrides finais da home */
.rss-link:hover,
.source-link:hover,
.footer-col a:hover,
.trusted-card a:hover {
    color: var(--purple-dark) !important;
}

.footer-supporters {
    margin: 0 0 24px;
    padding: 0 0 20px;
    border-bottom: 1px solid rgba(36,19,56,.08);
}

.footer-supporters h4 {
    margin: 0 0 14px;
    color: var(--ink);
    font-size: 18px;
    line-height: 1.2;
}

.supporters-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.supporter-logo {
    min-width: 82px;
    min-height: 42px;
    padding: 8px 12px;
    border-radius: 8px;
    background: rgba(255,255,255,.94);
    border: 1px solid rgba(255,255,255,.16);
    color: #241338;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .02em;
    text-transform: uppercase;
}

.prefooter-gallery {
    margin: 0 0 24px;
}

.prefooter-gallery-head {
    display: flex;
    flex-wrap: wrap;
    align-items: end;
    justify-content: space-between;
    gap: 12px;
    margin: 0 0 14px;
}

.prefooter-gallery-head h4 {
    margin: 0;
    color: var(--ink);
    font-size: 20px;
    line-height: 1.15;
}

.prefooter-gallery-head p {
    margin: 0;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.6;
    max-width: 720px;
}

.prefooter-gallery-strip {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(240px, 320px);
    gap: 12px;
    overflow-x: auto;
    overflow-y: hidden;
    padding-bottom: 8px;
    scroll-snap-type: x proximity;
    scrollbar-width: thin;
}

.prefooter-gallery-strip::-webkit-scrollbar {
    height: 10px;
}

.prefooter-gallery-strip::-webkit-scrollbar-thumb {
    background: rgba(43,60,82,.22);
    border-radius: 999px;
}

.prefooter-gallery-strip::-webkit-scrollbar-track {
    background: rgba(43,60,82,.06);
    border-radius: 999px;
}

.prefooter-gallery-card {
    overflow: hidden;
    border-radius: 8px;
    border: 1px solid rgba(36,19,56,.08);
    background: #fff;
    box-shadow: 0 6px 18px rgba(36,19,56,.04);
    scroll-snap-align: start;
}

.prefooter-gallery-card img {
    width: 100%;
    height: 180px;
    display: block;
    object-fit: cover;
    object-position: center center;
}

.prefooter-gallery-copy {
    padding: 12px 14px 14px;
    display: grid;
    gap: 6px;
}

.prefooter-gallery-copy strong {
    color: var(--ink);
    font-size: 14px;
    line-height: 1.35;
}

.prefooter-gallery-copy span {
    color: var(--muted);
    font-size: 12px;
    line-height: 1.55;
}

.privacy-bar {
    margin: 0 0 24px;
    padding: 16px 18px;
    border-radius: 8px;
    background: #f7fbff;
    border: 1px solid rgba(36,19,56,.08);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    opacity: 1;
    transform: translateY(0);
    transition: opacity .32s ease, transform .32s ease;
}

.privacy-bar.is-fading {
    opacity: 0;
    transform: translateY(12px);
}

.privacy-bar.is-hidden {
    display: none;
}

.privacy-copy p {
    margin: 0;
    color: rgba(36,19,56,.72);
    font-size: 13px;
    line-height: 1.65;
}

.privacy-copy a {
    color: var(--purple-dark);
    font-weight: 700;
    text-decoration: none;
}

.privacy-copy a:hover {
    text-decoration: underline;
}

.privacy-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    flex: 0 0 auto;
}

.privacy-btn {
    min-height: 42px;
    padding: 0 16px;
    border-radius: 8px;
    border: 1px solid rgba(36,19,56,.12);
    text-decoration: none;
    font-size: 12px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.privacy-btn.primary {
    background: #2b63d9;
    color: #fff;
    border-color: #2b63d9;
}

.privacy-btn.secondary {
    background: #ffffff;
    color: var(--ink);
}

.footer-col:nth-child(2) h4 { color: #c91d12; }
.footer-col:nth-child(3) h4 { color: #1d57bf; }
.footer-col:nth-child(4) h4 { color: #007d6b; }
.footer-col:nth-child(5) h4 { color: #b51c63; }

.video-more-grid {
    margin-top: 14px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}

.video-more-card {
    background: rgba(255,255,255,.96);
    border: 1px solid rgba(36,19,56,.08);
    border-radius: 8px;
    box-shadow: 0 8px 20px rgba(36,19,56,.04);
    overflow: hidden;
    padding: 10px;
}

.video-more-card strong {
    display: block;
    margin: 10px 4px 4px;
    font-size: 14px;
    line-height: 1.3;
    color: var(--ink);
}

.video-more-card span {
    display: block;
    margin: 0 4px 2px;
    color: var(--muted);
    font-size: 12px;
    line-height: 1.5;
}

.closing-section {
    padding: 14px 0 0;
}

.closing-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.closing-panel {
    min-height: 520px;
    padding: 42px 28px 0;
    background: linear-gradient(180deg, #ffffff, #f7fbff);
    border: 1px solid rgba(36,19,56,.08);
    border-radius: 22px 22px 0 0;
    text-align: center;
    box-shadow: 0 18px 34px rgba(36,19,56,.08);
}

.closing-panel h3 {
    margin: 0 0 10px;
    font-size: 42px;
    line-height: 1.04;
    letter-spacing: -.05em;
}

.closing-panel p {
    max-width: 680px;
    margin: 0 auto;
    color: var(--muted);
    font-size: 15px;
    line-height: 1.7;
}

.closing-stage {
    position: relative;
    height: 280px;
    margin-top: 26px;
    background: linear-gradient(180deg, #2b3c52, #243446);
    border-radius: 26px 26px 0 0;
    overflow: hidden;
}

.closing-stage.placeholder::before,
.closing-stage.placeholder::after {
    content: "";
    position: absolute;
    border-radius: 999px;
    opacity: .6;
}

.closing-stage.placeholder::before {
    width: 44px;
    height: 44px;
    left: 18%;
    top: 52px;
    background: rgba(43,60,82,.55);
}

.closing-stage.placeholder::after {
    width: 56px;
    height: 56px;
    right: 22%;
    top: 78px;
    background: rgba(95,120,255,.4);
}

.report-mock {
    position: absolute;
    left: 50%;
    bottom: -8px;
    transform: translateX(-50%);
    width: min(88%, 600px);
    background: #ffffff;
    border: 1px solid rgba(43,60,82,.2);
    border-radius: 16px;
    box-shadow: 0 16px 34px rgba(36,19,56,.16);
    overflow: hidden;
}

.report-mock-top {
    padding: 10px 14px;
    border-bottom: 1px solid rgba(43,60,82,.14);
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .04em;
    color: var(--ink);
    background: #fff;
}

.report-mock-card {
    padding: 12px;
    text-align: left;
}

.report-mock-title,
.report-mock-label {
    color: var(--ink);
    font-weight: 800;
    text-transform: uppercase;
}

.report-mock-title {
    font-size: 12px;
    margin-bottom: 8px;
}

.report-mock-label {
    font-size: 10px;
    margin: 10px 0 6px;
}

.report-mock-tags,
.report-mock-actions,
.report-mock-row {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
}

.report-mock-tag,
.report-mock-action,
.report-mock-input,
.report-mock-check {
    min-height: 26px;
    border: 1px solid rgba(36,19,56,.12);
    border-radius: 8px;
    background: #fff;
    color: var(--ink);
    font-size: 10px;
}

.report-mock-tag,
.report-mock-action {
    display: inline-flex;
    align-items: center;
    padding: 0 8px;
}

.report-mock-area {
    height: 40px;
    border: 1px solid rgba(36,19,56,.12);
    border-radius: 8px;
    background: #fff;
}

.report-mock-input {
    flex: 1 1 0;
}

.report-mock-check {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 0 8px;
}

.report-mock-check .box {
    width: 12px;
    height: 12px;
    border: 1px solid rgba(36,19,56,.3);
    border-radius: 3px;
}

@media (max-width: 1100px) {
    .nav-inner {
        justify-content: space-between;
    }

    .nav-links {
        display: none;
    }

    .feature-grid {
        grid-template-columns: 1fr;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .gallery-strip {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .rss-grid {
        grid-template-columns: 1fr;
    }

    .sources-grid {
        grid-template-columns: 1fr;
    }

    .privacy-bar {
        flex-direction: column;
        align-items: stretch;
    }

    .privacy-actions {
        width: 100%;
        flex-direction: column;
    }

    .privacy-btn {
        width: 100%;
    }


    .video-grid {
        grid-template-columns: 1fr;
    }

    .video-overlay-card {
        width: min(340px, 42%);
    }

    .footer-form-grid {
        grid-template-columns: 1fr;
    }

    .gallery-card.hero-media,
    .gallery-card.form-wide {
        grid-column: span 2;
    }

    .feature-panel,
    .feature-panel:nth-child(2n) {
        border-right: 0;
    }

    .footer-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .closing-grid {
        grid-template-columns: 1fr;
    }

    .newsletter-band {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 760px) {
    .trusted-persona {
        display: none;
    }

    .site-nav {
        position: static;
    }

    .nav-inner {
        padding: 10px 14px;
        flex-wrap: wrap;
        gap: 12px;
    }

    .nav-brand,
    .nav-actions {
        margin: 0;
    }

    .nav-actions {
        width: 100%;
        justify-content: stretch;
    }

    .nav-actions .btn {
        flex: 1 1 0;
    }

    .nav-links {
        display: flex;
        order: 3;
        width: 100%;
        gap: 10px 14px;
        justify-content: flex-start;
        overflow-x: auto;
        flex-wrap: nowrap;
        padding-bottom: 4px;
        scrollbar-width: thin;
    }

    .nav-links a {
        flex: 0 0 auto;
        font-size: 11px;
        white-space: nowrap;
    }

    .hero-stage {
        min-height: 240px;
    }

    .hero-slider {
        min-height: 240px;
    }

    .feature-panel {
        min-height: auto;
        padding: 54px 22px 0;
    }

    .topics-section {
        padding: 34px 18px 28px;
    }

    .topics-row {
        grid-template-columns: 1fr;
    }

    .topic-card:not(:last-child)::after {
        top: auto;
        right: auto;
        bottom: 0;
        left: 34px;
        width: calc(100% - 68px);
        height: 1px;
        background-image: linear-gradient(to right, rgba(36,19,56,.18) 35%, rgba(255,255,255,0) 0%);
        background-size: 6px 1px;
        background-repeat: repeat-x;
    }

    .campaign-gallery {
        padding: 14px 14px 18px;
    }

    .newsletter-band {
        margin: 0 14px 24px;
        padding: 18px;
        border-radius: 22px;
    }

    .newsletter-copy h3 {
        font-size: 26px;
    }

    .rss-card.single-item .rss-list {
        min-height: auto;
    }

    .rss-card.single-item .rss-item {
        grid-template-columns: 1fr;
    }

    .rss-card.single-item .rss-thumb {
        min-height: 170px;
    }

    .closing-section {
        padding: 14px 14px 0;
    }

    .footer-form-band {
        padding: 14px 14px 0;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .gallery-strip {
        grid-template-columns: 1fr;
    }

    .rss-section {
        padding: 14px;
    }

    .sources-section {
        padding: 14px;
    }

    .trusted-search-form {
        grid-template-columns: 1fr;
    }

    .trusted-layout,
    .trusted-columns {
        grid-template-columns: 1fr;
    }

    .hero-stage {
        width: 100%;
    }


    .video-item {
        grid-template-columns: 96px minmax(0, 1fr);
    }

    .video-item img {
        height: 72px;
    }

    .video-overlay-card {
        position: relative;
        right: auto;
        bottom: auto;
        width: 100%;
        margin-top: 12px;
    }

    .gallery-card,
    .gallery-card.hero-media,
    .gallery-card.tall-media,
    .gallery-card.form-wide,
    .gallery-card.wide-media,
    .gallery-card.campaign-option {
        grid-column: span 1;
        min-height: 240px;
    }

    .footer-form-grid .gallery-card.report-form {
        min-height: 240px;
    }

    .gallery-card.text-media {
        padding: 24px 20px;
    }

    .supporter-logo {
        min-width: 72px;
        min-height: 38px;
        font-size: 11px;
    }

    .closing-panel {
        min-height: auto;
        padding: 40px 20px 0;
    }

    .closing-stage {
        height: 190px;
    }

    .report-row {
        grid-template-columns: 1fr;
    }

    .report-actions {
        flex-direction: column;
    }

    .feature-art.large,
    .feature-art.medium {
        height: 220px;
    }

    .cta-shell {
        padding: 24px 18px;
        flex-direction: column;
        align-items: stretch;
    }

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

    .site-footer {
        padding: 34px 18px 40px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .footer-signature span {
        font-size: 11.5px;
        padding: 10px 12px;
    }
}
@media (max-width: 860px) {
    .trusted-metrics,
    .trusted-criteria-grid,
    .trusted-headline {
        grid-template-columns: 1fr;
    }
}

.supporter-logo {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 14px;
    border-radius: 16px;
    background: rgba(255, 255, 255, .92);
    border: 1px solid rgba(36, 19, 56, .08);
    min-height: 64px;
    text-decoration: none;
}

.supporter-logo img {
    display: block;
    max-width: 140px;
    max-height: 42px;
    width: auto;
    height: auto;
    object-fit: contain;
}

@media (max-width: 1100px) {
    .topics-grid {
        grid-template-columns: 1fr;
    }
}

/* Override final do mascote da busca confiavel */
.trusted-persona-wrap,
.trusted-persona {
    display: none !important;
}

.trusted-persona-stage {
    position: relative;
    height: 0;
    z-index: 60;
    pointer-events: none;
}

.trusted-persona-floating {
    position: absolute;
    right: 250px;
    top: 8px;
    width: 82px;
    height: auto;
    display: block;
    filter: drop-shadow(0 10px 16px rgba(36,19,56,.16));
}

@media (max-width: 760px) {
    .trusted-persona-stage {
        display: block !important;
        z-index: 40;
    }

    .trusted-persona-floating {
        right: 18px;
        top: 10px;
        width: 52px;
    }
}

@media (max-width: 760px) {
    .video-section {
        padding: 14px 14px 18px;
    }

    .video-grid {
        display: grid;
        grid-template-columns: 1fr !important;
        gap: 14px;
    }

    .video-side {
        order: 2;
    }

    .video-main {
        order: 1;
    }

    .video-main,
    .video-side,
    .video-more-card {
        border-radius: 14px;
        overflow: hidden;
    }

    .video-main,
    .video-side {
        padding: 14px;
        background: rgba(255,255,255,.98);
        border: 1px solid rgba(36,19,56,.08);
        box-shadow: 0 8px 20px rgba(36,19,56,.05);
    }

    .video-frame,
    .video-frame iframe {
        border-radius: 12px;
    }

    .video-main h3,
    .video-side-head h4 {
        font-size: 20px;
        line-height: 1.2;
        margin-bottom: 8px;
    }

    .video-main p,
    .video-side-player span,
    .video-more-card span {
        font-size: 13px;
        line-height: 1.6;
    }

    .video-side-head {
        align-items: center;
        gap: 10px;
        margin-bottom: 12px;
    }

    .video-pill {
        min-height: 28px;
        padding: 0 10px;
        border-radius: 999px;
        font-size: 11px;
        font-weight: 700;
    }

    .video-side-player {
        padding-bottom: 14px;
        margin-bottom: 14px;
        border-bottom: 1px solid rgba(36,19,56,.08);
    }

    .video-side-player strong,
    .video-more-card strong {
        display: block;
        margin-top: 10px;
        font-size: 15px;
        line-height: 1.35;
    }

    .video-list {
        gap: 12px;
    }

    .video-item {
        grid-template-columns: 96px minmax(0, 1fr);
        gap: 10px;
        align-items: start;
        padding: 0 0 12px;
        border-bottom: 1px solid rgba(36,19,56,.08);
    }

    .video-item:last-child {
        padding-bottom: 0;
        border-bottom: 0;
    }

    .video-item img {
        width: 96px;
        height: 72px;
        border-radius: 10px;
        object-fit: cover;
        display: block;
    }

    .video-item strong {
        display: block;
        font-size: 13px;
        line-height: 1.35;
        margin-bottom: 4px;
    }

    .video-item span {
        display: -webkit-box;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
        overflow: hidden;
        font-size: 12px;
        line-height: 1.5;
    }

    .video-more-grid {
        grid-template-columns: 1fr;
        gap: 12px;
        margin-top: 12px;
    }

    .video-side-player strong,
    .video-side-head h4,
    .video-main h3 {
        word-break: break-word;
    }
}
