:root {
    --wp-bg: rgb(248, 246, 241);
    --wp-card: rgb(255, 255, 255);
    --wp-text: rgb(30, 32, 36);
    --wp-muted: rgb(102, 112, 124);
    --wp-border: rgb(226, 221, 211);
    --wp-dark: rgb(20, 24, 31);
    --wp-gold: rgb(178, 132, 70);
    --wp-soft: rgb(241, 233, 219);
    --wp-link: rgb(72, 86, 112);
    --wp-danger: rgb(164, 45, 45);
    --wp-ok: rgb(45, 122, 75);
}

* {
    box-sizing: border-box;
}

body.wp-body {
    margin: 0;
    font-family: Verdana, Arial, sans-serif;
    color: var(--wp-text);
    background: var(--wp-bg);
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    max-width: 100%;
    height: auto;
}

.wp-container {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
}

.wp-topbar {
    background: var(--wp-dark);
    color: rgb(255, 255, 255);
    font-size: 12px;
    padding: 9px 0;
}

.wp-topbar .wp-container {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    align-items: center;
}

.wp-header {
    background: rgba(255, 255, 255, 0.94);
    border-bottom: 1px solid var(--wp-border);
    position: sticky;
    top: 0;
    z-index: 50;
    backdrop-filter: blur(12px);
}

.wp-header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 0;
    gap: 24px;
}

.wp-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: bold;
    font-size: 22px;
    letter-spacing: -1px;
}

.wp-logo-mark {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgb(178, 132, 70), rgb(42, 48, 59));
    display: inline-block;
}

.wp-menu {
    display: flex;
    gap: 14px;
    align-items: center;
    flex-wrap: wrap;
    justify-content: flex-end;
    font-size: 13px;
}

.wp-menu a {
    padding: 7px 8px;
    border-radius: 999px;
}

.wp-menu a:hover {
    background: var(--wp-soft);
}

.wp-hero {
    padding: 54px 0 34px;
}

.wp-hero-grid {
    display: grid;
    grid-template-columns: 1.35fr 0.65fr;
    gap: 22px;
    align-items: stretch;
}

.wp-hero-card {
    background: var(--wp-card);
    border: 1px solid var(--wp-border);
    border-radius: 28px;
    padding: 34px;
    min-height: 360px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    box-shadow: 0 20px 50px rgba(34, 28, 18, 0.08);
}

.wp-kicker {
    color: var(--wp-gold);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 11px;
    font-weight: bold;
    margin-bottom: 12px;
}

.wp-hero h1 {
    margin: 0;
    font-size: clamp(34px, 5vw, 62px);
    line-height: 1.04;
    letter-spacing: -2px;
}

.wp-hero p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--wp-muted);
    margin: 18px 0 0;
    max-width: 760px;
}

.wp-side-card {
    background: var(--wp-dark);
    color: rgb(255, 255, 255);
    border-radius: 28px;
    padding: 28px;
    min-height: 220px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.wp-btns {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 24px;
}

.wp-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    padding: 12px 17px;
    font-size: 13px;
    font-weight: bold;
    border: 1px solid var(--wp-border);
    background: var(--wp-card);
}

.wp-btn-primary {
    background: var(--wp-dark);
    color: rgb(255, 255, 255);
    border-color: var(--wp-dark);
}

.wp-btn-gold {
    background: var(--wp-gold);
    color: rgb(255, 255, 255);
    border-color: var(--wp-gold);
}

.wp-section {
    padding: 34px 0;
}

.wp-section-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 18px;
}

.wp-section-head h2 {
    margin: 0;
    font-size: 28px;
    letter-spacing: -1px;
}

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

.wp-grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}

.wp-card {
    background: var(--wp-card);
    border: 1px solid var(--wp-border);
    border-radius: 22px;
    padding: 20px;
    min-height: 160px;
}

.wp-card h3 {
    margin: 10px 0 8px;
    line-height: 1.25;
    font-size: 19px;
}

.wp-card p {
    color: var(--wp-muted);
    line-height: 1.6;
    font-size: 13px;
}

.wp-materia-img {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    background: var(--wp-soft);
    border-radius: 16px;
    margin-bottom: 12px;
}

.wp-placeholder-img {
    width: 100%;
    aspect-ratio: 16 / 9;
    border-radius: 16px;
    background: linear-gradient(135deg, rgb(241, 233, 219), rgb(218, 202, 176));
    margin-bottom: 12px;
}

.wp-meta {
    color: var(--wp-muted);
    font-size: 12px;
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.wp-article {
    background: var(--wp-card);
    border: 1px solid var(--wp-border);
    border-radius: 28px;
    padding: clamp(22px, 4vw, 46px);
    margin: 28px auto;
}

.wp-article h1 {
    margin: 0 0 14px;
    font-size: clamp(30px, 5vw, 54px);
    line-height: 1.08;
    letter-spacing: -1.8px;
}

.wp-article .wp-resumo {
    color: var(--wp-muted);
    font-size: 18px;
    line-height: 1.7;
}

.wp-content {
    font-size: 17px;
    line-height: 1.85;
}

.wp-content p {
    margin: 0 0 18px;
}

.wp-form {
    display: grid;
    gap: 12px;
}

.wp-form input,
.wp-form textarea,
.wp-form select {
    width: 100%;
    padding: 13px 14px;
    border-radius: 14px;
    border: 1px solid var(--wp-border);
    font-family: Verdana, Arial, sans-serif;
    font-size: 13px;
    background: rgb(255, 255, 255);
}

.wp-form textarea {
    min-height: 130px;
}

.wp-alert {
    padding: 12px 14px;
    border-radius: 14px;
    background: var(--wp-soft);
    margin: 14px 0;
    font-size: 13px;
}

.wp-alert-ok {
    background: rgb(225, 244, 232);
    color: var(--wp-ok);
}

.wp-alert-erro {
    background: rgb(250, 228, 228);
    color: var(--wp-danger);
}

.wp-footer {
    background: var(--wp-dark);
    color: rgb(255, 255, 255);
    margin-top: 48px;
    padding: 38px 0;
}

.wp-footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 0.8fr;
    gap: 22px;
}

.wp-footer a,
.wp-footer p {
    color: rgba(255, 255, 255, 0.78);
    font-size: 13px;
    line-height: 1.7;
}

.wp-empty {
    background: var(--wp-card);
    border: 1px dashed var(--wp-border);
    padding: 24px;
    border-radius: 22px;
    color: var(--wp-muted);
}

.wp-pagination {
    margin-top: 22px;
    display: flex;
    gap: 10px;
}

@media (max-width: 900px) {
    .wp-hero-grid,
    .wp-grid-3,
    .wp-grid-2,
    .wp-footer-grid {
        grid-template-columns: 1fr;
    }

    .wp-header-inner {
        align-items: flex-start;
        flex-direction: column;
    }

    .wp-menu {
        justify-content: flex-start;
    }

    .wp-topbar .wp-container {
        flex-direction: column;
        align-items: flex-start;
    }
}


/* Portal publico premium - V052 */
.wp-topbar-inner {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    align-items: center;
}

.wp-logo-mark {
    color: rgb(255, 255, 255);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 17px;
}

.wp-menu-cta {
    background: var(--wp-dark);
    color: rgb(255, 255, 255);
}

.wp-menu-toggle {
    display: none;
    border: 1px solid var(--wp-border);
    background: rgb(255, 255, 255);
    border-radius: 999px;
    padding: 10px 14px;
    font-weight: bold;
    cursor: pointer;
}

.wp-hero-grid-premium {
    display: grid;
    grid-template-columns: minmax(0, 1.45fr) minmax(320px, 0.55fr);
    gap: 22px;
    align-items: stretch;
}

.wp-hero-featured,
.wp-hero-side,
.wp-card,
.wp-materia-card,
.wp-author-card,
.wp-author-directory-card,
.wp-author-hero-card {
    background: rgb(255, 255, 255);
    border: 1px solid var(--wp-border);
    border-radius: 28px;
    box-shadow: 0 18px 50px rgba(20, 24, 31, 0.08);
}

.wp-hero-featured {
    overflow: hidden;
}

.wp-hero-image-wrap {
    display: block;
    min-height: 420px;
    background: rgb(241, 233, 219);
}

.wp-hero-image-wrap img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    display: block;
}

.wp-hero-featured-body {
    padding: 30px;
}

.wp-hero-featured h1 {
    margin: 10px 0;
    font-size: clamp(31px, 4vw, 54px);
    line-height: 1.05;
    letter-spacing: -0.05em;
}

.wp-hero-featured p {
    color: var(--wp-muted);
    font-size: 16px;
    line-height: 1.7;
    max-width: 760px;
}

.wp-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    padding: 12px 18px;
    font-weight: bold;
    border: 1px solid var(--wp-border);
}

.wp-btn-dark,
.wp-btn-primary {
    background: var(--wp-dark);
    color: rgb(255, 255, 255);
    border-color: var(--wp-dark);
}

.wp-hero-side {
    padding: 22px;
}

.wp-hero-side-head h2,
.wp-section-head h2 {
    margin: 6px 0 0;
    letter-spacing: -0.04em;
}

.wp-mini-card {
    display: grid;
    grid-template-columns: 94px minmax(0, 1fr);
    gap: 12px;
    padding: 14px 0;
    border-bottom: 1px solid var(--wp-border);
}

.wp-mini-card:last-child {
    border-bottom: 0;
}

.wp-mini-card img {
    width: 94px;
    height: 78px;
    object-fit: cover;
    border-radius: 16px;
}

.wp-mini-card h3 {
    margin: 4px 0 0;
    font-size: 15px;
    line-height: 1.35;
}

.wp-mini-card small {
    color: var(--wp-gold);
    font-weight: bold;
    text-transform: uppercase;
    font-size: 10px;
    letter-spacing: 0.06em;
}

.wp-section-head {
    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 20px;
    margin-bottom: 22px;
}

.wp-link-arrow {
    font-weight: bold;
    color: var(--wp-link);
}

.wp-editorias-strip {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
    gap: 14px;
}

.wp-editoria-pill-card {
    background: rgb(255, 255, 255);
    border: 1px solid var(--wp-border);
    border-radius: 22px;
    padding: 18px;
    min-height: 120px;
    box-shadow: 0 10px 30px rgba(20, 24, 31, 0.05);
}

.wp-editoria-pill-card strong,
.wp-editoria-pill-card span {
    display: block;
}

.wp-editoria-pill-card span {
    margin-top: 7px;
    color: var(--wp-muted);
    font-size: 13px;
    line-height: 1.5;
}

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

.wp-materia-card {
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.wp-card-img {
    display: block;
    background: var(--wp-soft);
}

.wp-card-img img,
.wp-placeholder-img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wp-placeholder-img {
    background: linear-gradient(135deg, rgb(241, 233, 219), rgb(255, 255, 255));
    color: var(--wp-muted);
    font-weight: bold;
}

.wp-card-body {
    padding: 18px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.wp-card-body h3 {
    margin: 8px 0;
    font-size: 20px;
    line-height: 1.25;
    letter-spacing: -0.03em;
}

.wp-card-body p {
    color: var(--wp-muted);
    line-height: 1.6;
    font-size: 14px;
}

.wp-meta-line,
.wp-card-footer {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 9px;
    color: var(--wp-muted);
    font-size: 12px;
}

.wp-meta-line a {
    color: var(--wp-gold);
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.wp-card-footer {
    margin-top: auto;
    justify-content: space-between;
    border-top: 1px solid var(--wp-border);
    padding-top: 12px;
}

.wp-soft-section {
    background: rgb(241, 233, 219);
    padding: 46px 0;
}

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

.wp-author-card,
.wp-author-directory-card {
    padding: 18px;
}

.wp-author-card {
    text-align: center;
}

.wp-author-card img,
.wp-author-avatar,
.wp-author-hero-card img,
.wp-author-hero-avatar {
    width: 86px;
    height: 86px;
    border-radius: 50%;
    object-fit: cover;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--wp-dark);
    color: rgb(255, 255, 255);
    font-size: 34px;
    font-weight: bold;
}

.wp-author-card strong,
.wp-author-card small,
.wp-author-card span {
    display: block;
}

.wp-author-card strong {
    margin-top: 10px;
}

.wp-author-card small,
.wp-author-card span {
    color: var(--wp-muted);
    font-size: 12px;
    line-height: 1.45;
    margin-top: 5px;
}

.wp-page-hero,
.wp-author-hero {
    padding: 54px 0 26px;
}

.wp-page-hero h1,
.wp-author-hero h1 {
    font-size: clamp(34px, 5vw, 62px);
    line-height: 1.05;
    margin: 8px 0;
    letter-spacing: -0.05em;
}

.wp-page-hero p {
    color: var(--wp-muted);
    max-width: 820px;
    font-size: 17px;
    line-height: 1.65;
}

.wp-author-hero-card {
    padding: 28px;
    display: grid;
    grid-template-columns: 128px minmax(0, 1fr);
    gap: 22px;
    align-items: start;
}

.wp-author-hero-card img,
.wp-author-hero-avatar {
    width: 128px;
    height: 128px;
}

.wp-author-role {
    color: var(--wp-muted);
    font-weight: bold;
}

.wp-author-links {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 14px;
}

.wp-author-links a {
    background: rgb(255, 255, 255);
    border: 1px solid var(--wp-border);
    border-radius: 999px;
    padding: 9px 12px;
    font-weight: bold;
}

.wp-author-directory {
    display: grid;
    gap: 16px;
}

.wp-author-directory-card {
    display: grid;
    grid-template-columns: 110px minmax(0, 1fr);
    gap: 18px;
}

.wp-author-directory-card img {
    width: 110px;
    height: 110px;
    object-fit: cover;
    border-radius: 24px;
}

.wp-search-premium {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 220px auto;
    gap: 12px;
    margin-top: 20px;
    max-width: 960px;
}

.wp-search-premium input,
.wp-search-premium select,
.wp-search-premium button,
.wp-newsletter-mini input,
.wp-newsletter-mini button {
    min-height: 48px;
    border-radius: 999px;
    border: 1px solid var(--wp-border);
    padding: 0 16px;
    font-family: Verdana, Arial, sans-serif;
}

.wp-search-premium button,
.wp-newsletter-mini button {
    background: var(--wp-dark);
    color: rgb(255, 255, 255);
    font-weight: bold;
    cursor: pointer;
}

.wp-pagination {
    margin-top: 28px;
    display: flex;
    gap: 12px;
    justify-content: center;
    align-items: center;
}

.wp-pagination a,
.wp-pagination span {
    border: 1px solid var(--wp-border);
    background: rgb(255, 255, 255);
    border-radius: 999px;
    padding: 10px 14px;
}

.wp-newsletter-band {
    background: var(--wp-dark);
    color: rgb(255, 255, 255);
    padding: 40px 0;
}

.wp-newsletter-band-inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 460px;
    gap: 24px;
    align-items: center;
}

.wp-newsletter-band h2 {
    margin: 6px 0;
}

.wp-newsletter-band p {
    color: rgba(255, 255, 255, 0.75);
}

.wp-newsletter-mini {
    display: grid;
    gap: 10px;
}

.wp-newsletter-mini input {
    background: rgba(255, 255, 255, 0.08);
    color: rgb(255, 255, 255);
    border-color: rgba(255, 255, 255, 0.24);
}

.wp-newsletter-mini input::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.wp-newsletter-mini button {
    background: rgb(255, 255, 255);
    color: var(--wp-dark);
}

.wp-footer-small {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.65);
}

.wp-muted {
    color: var(--wp-muted);
}

@media (max-width: 980px) {
    .wp-hero-grid-premium,
    .wp-newsletter-band-inner,
    .wp-author-hero-card,
    .wp-author-directory-card {
        grid-template-columns: 1fr;
    }

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

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

    .wp-search-premium {
        grid-template-columns: 1fr;
    }

    .wp-menu-toggle {
        display: inline-flex;
    }

    .wp-menu {
        display: none;
        width: 100%;
        padding-top: 14px;
        justify-content: flex-start;
    }

    .wp-menu.is-open {
        display: flex;
    }

    .wp-header-inner {
        flex-wrap: wrap;
    }
}

@media (max-width: 640px) {
    .wp-grid-cards,
    .wp-author-grid {
        grid-template-columns: 1fr;
    }

    .wp-hero-image-wrap,
    .wp-hero-image-wrap img {
        min-height: 260px;
        height: 260px;
    }

    .wp-hero-featured-body {
        padding: 22px;
    }

    .wp-topbar-inner {
        display: block;
    }

    .wp-author-hero-card {
        text-align: center;
    }
}


/* Newsletter layer e webpush - V058 */
body.wp-modal-open {
    overflow: hidden;
}

.wp-newsletter-modal[hidden] {
    display: none;
}

.wp-newsletter-modal {
    position: fixed;
    inset: 0;
    z-index: 99990;
    padding: 22px;
    overflow: auto;
}

.wp-newsletter-modal-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, 0.72);
}

.wp-newsletter-modal-card {
    position: relative;
    max-width: 880px;
    margin: 4vh auto;
    background: rgb(255, 255, 255);
    border-radius: 30px;
    box-shadow: 0 30px 90px rgba(0, 0, 0, 0.35);
    padding: 28px;
    border: 1px solid rgb(226, 232, 240);
}

.wp-newsletter-modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    border: 1px solid rgb(226, 232, 240);
    background: rgb(255, 255, 255);
    color: rgb(15, 23, 42);
    border-radius: 999px;
    padding: 10px 14px;
    font-weight: bold;
    cursor: pointer;
}

.wp-newsletter-modal-head {
    padding-right: 110px;
    margin-bottom: 20px;
}

.wp-newsletter-modal-head h2 {
    margin: 6px 0 8px;
    font-size: clamp(28px, 4vw, 44px);
    line-height: 1.05;
    letter-spacing: -0.05em;
}

.wp-newsletter-modal-head p {
    color: var(--wp-muted);
    line-height: 1.65;
    max-width: 680px;
}

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

.wp-newsletter-modal-form label {
    display: block;
    font-weight: bold;
    font-size: 12px;
    margin: 0 0 6px;
}

.wp-newsletter-modal-form input,
.wp-newsletter-modal-form select {
    width: 100%;
    min-height: 46px;
    border: 1px solid rgb(203, 213, 225);
    border-radius: 14px;
    padding: 0 12px;
    font-family: Verdana, Arial, sans-serif;
}

.wp-newsletter-modal-consents {
    margin-top: 16px;
    padding: 16px;
    border-radius: 20px;
    background: rgb(248, 250, 252);
    border: 1px solid rgb(226, 232, 240);
}

.wp-newsletter-modal-consents label {
    display: flex;
    gap: 9px;
    align-items: flex-start;
    margin: 0 0 9px;
    font-size: 13px;
}

.wp-newsletter-modal-consents input {
    width: auto;
    min-height: auto;
    margin-top: 2px;
}

.wp-newsletter-modal-consents small,
.wp-newsletter-mini small {
    display: block;
    color: rgb(100, 116, 139);
    line-height: 1.45;
    margin-top: 6px;
}

.wp-newsletter-modal-actions {
    display: flex;
    gap: 12px;
    align-items: center;
    flex-wrap: wrap;
    margin-top: 18px;
}

.wp-newsletter-modal-actions button {
    border: 0;
    border-radius: 999px;
    min-height: 48px;
    padding: 0 20px;
    background: var(--wp-dark);
    color: rgb(255, 255, 255);
    font-weight: bold;
    cursor: pointer;
}

#wpNewsletterStatus {
    color: var(--wp-muted);
    font-size: 13px;
    line-height: 1.45;
}

#wpNewsletterStatus.is-ok {
    color: rgb(6, 95, 70);
    font-weight: bold;
}

#wpNewsletterStatus.is-erro {
    color: rgb(127, 29, 29);
    font-weight: bold;
}

#wpNewsletterStatus.is-aviso {
    color: rgb(124, 45, 18);
    font-weight: bold;
}

#wpNewsletterStatus.is-info {
    color: rgb(51, 65, 85);
    font-weight: bold;
}

@media (max-width: 700px) {
    .wp-newsletter-modal {
        padding: 10px;
    }

    .wp-newsletter-modal-card {
        border-radius: 22px;
        padding: 20px;
        margin: 2vh auto;
    }

    .wp-newsletter-modal-head {
        padding-right: 0;
        padding-top: 42px;
    }

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

    .wp-newsletter-modal-actions {
        align-items: stretch;
        flex-direction: column;
    }

    .wp-newsletter-modal-actions button {
        width: 100%;
    }
}


/* Portal V058 - logo oficial, flags, carrossel e editoriais */
.wp-logo-img {
    display: inline-flex;
    align-items: center;
    min-width: 220px;
}

.wp-logo-img img {
    height: 48px;
    width: auto;
    display: block;
}

.wp-editoria-flags {
    position: fixed;
    right: 16px;
    top: 220px;
    z-index: 50;
    display: grid;
    gap: 8px;
}

.wp-editoria-flags a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    min-width: 138px;
    padding: 9px 10px;
    border-radius: 999px 0 0 999px;
    background: rgba(15, 23, 42, 0.9);
    color: rgb(255, 255, 255);
    font-size: 11px;
    font-weight: bold;
    box-shadow: 0 12px 28px rgba(15, 23, 42, 0.16);
}

.wp-editoria-flags small {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 22px;
    height: 22px;
    border-radius: 999px;
    background: rgb(255, 255, 255);
    color: rgb(15, 23, 42);
}

.wp-home-carousel-section {
    padding: 42px 0 22px;
    background: linear-gradient(180deg, rgb(248, 250, 252), rgb(255, 255, 255));
}

.wp-home-carousel {
    overflow: hidden;
    width: 100%;
}

.wp-home-carousel-track {
    display: flex;
    gap: 18px;
    transition: transform 0.55s ease;
    will-change: transform;
}

.wp-home-carousel-item {
    flex: 0 0 calc((100% - 36px) / 3);
    background: rgb(255, 255, 255);
    border: 1px solid rgb(226, 232, 240);
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 18px 50px rgba(15, 23, 42, 0.08);
}

.wp-home-carousel-img {
    display: block;
    background: rgb(241, 245, 249);
}

.wp-home-carousel-img img,
.wp-home-carousel-img .wp-placeholder-img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    display: block;
}

.wp-home-carousel-body {
    padding: 18px;
}

.wp-home-carousel-body h2 {
    margin: 10px 0 8px;
    font-size: 22px;
    line-height: 1.18;
    letter-spacing: -0.04em;
}

.wp-home-carousel-body p {
    color: var(--wp-muted);
    font-size: 14px;
    line-height: 1.55;
}

.wp-home-carousel-controls {
    display: flex;
    gap: 8px;
}

.wp-home-carousel-controls button {
    border: 1px solid rgb(226, 232, 240);
    background: rgb(255, 255, 255);
    color: rgb(15, 23, 42);
    border-radius: 999px;
    padding: 10px 14px;
    font-weight: bold;
    cursor: pointer;
}

.wp-hero-featured-wide {
    max-width: none;
}

.wp-editorial-home-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
}

.wp-editorial-home-card {
    background: rgb(255, 255, 255);
    border: 1px solid rgb(226, 232, 240);
    border-radius: 28px;
    box-shadow: 0 18px 50px rgba(15, 23, 42, 0.07);
    padding: 20px;
}

.wp-editorial-home-head {
    display: flex;
    justify-content: space-between;
    align-items: start;
    gap: 14px;
    margin-bottom: 14px;
}

.wp-editorial-home-head h3 {
    margin: 5px 0 0;
    font-size: 25px;
    letter-spacing: -0.04em;
}

.wp-editorial-home-head > a {
    font-weight: bold;
    font-size: 12px;
    color: var(--wp-link);
    white-space: nowrap;
}

.wp-editorial-main img,
.wp-editorial-main .wp-placeholder-img {
    width: 100%;
    height: 270px;
    object-fit: cover;
    border-radius: 22px;
    display: block;
}

.wp-editorial-main h4 {
    margin: 12px 0 6px;
    font-size: 22px;
    line-height: 1.2;
    letter-spacing: -0.035em;
}

.wp-editorial-main p {
    color: var(--wp-muted);
    line-height: 1.55;
    font-size: 14px;
}

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

.wp-editorial-small img,
.wp-editorial-small .wp-placeholder-img {
    width: 100%;
    height: 112px;
    object-fit: cover;
    border-radius: 16px;
    display: block;
}

.wp-editorial-small h4 {
    margin: 8px 0 0;
    font-size: 14px;
    line-height: 1.35;
}

.wp-footer-authors-band {
    background: rgb(248, 250, 252);
    padding: 38px 0;
    border-top: 1px solid rgb(226, 232, 240);
}

.wp-footer-authors {
    display: grid;
    grid-template-columns: repeat(8, minmax(0, 1fr));
    gap: 12px;
}

.wp-footer-author-card {
    text-align: center;
    background: rgb(255, 255, 255);
    border: 1px solid rgb(226, 232, 240);
    border-radius: 22px;
    padding: 14px 10px;
}

.wp-footer-author-card img,
.wp-footer-author-card span {
    width: 62px;
    height: 62px;
    border-radius: 50%;
    object-fit: cover;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgb(15, 23, 42);
    color: rgb(255, 255, 255);
    font-weight: bold;
    margin-bottom: 8px;
}

.wp-footer-author-card strong,
.wp-footer-author-card small {
    display: block;
}

.wp-footer-author-card strong {
    font-size: 12px;
    line-height: 1.3;
}

.wp-footer-author-card small {
    margin-top: 4px;
    font-size: 11px;
    color: var(--wp-muted);
}

.wp-footer-brand {
    display: flex;
    gap: 10px;
    align-items: center;
}

.wp-footer-brand img {
    width: 42px;
    height: 42px;
    object-fit: contain;
    border-radius: 12px;
}

.wp-social-ico {
    width: 22px;
    height: 22px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgb(15, 23, 42);
    color: rgb(255, 255, 255);
    border-radius: 999px;
    font-size: 10px;
    line-height: 1;
}

.wp-newsletter-extra {
    margin-top: 22px;
    padding-top: 18px;
    border-top: 1px solid rgb(226, 232, 240);
}

.wp-newsletter-extra-head h3 {
    margin: 0 0 6px;
}

.wp-newsletter-extra-head p {
    color: var(--wp-muted);
    line-height: 1.55;
}

@media (max-width: 1180px) {
    .wp-editoria-flags {
        display: none;
    }

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

@media (max-width: 1000px) {
    .wp-home-carousel-item {
        flex-basis: calc((100% - 18px) / 2);
    }

    .wp-editorial-home-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 700px) {
    .wp-logo-img {
        min-width: 170px;
    }

    .wp-logo-img img {
        height: 40px;
    }

    .wp-home-carousel-item {
        flex-basis: 100%;
    }

    .wp-home-carousel-img img,
    .wp-home-carousel-img .wp-placeholder-img {
        height: 230px;
    }

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


/* Busca inteligente da home - V061 */
.wp-smart-search-section {
    padding: 34px 0 20px;
    background: linear-gradient(180deg, rgb(255, 255, 255), rgb(248, 250, 252));
}

.wp-smart-search-card {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 0.75fr) minmax(360px, 1.25fr);
    gap: 24px;
    align-items: center;
    background: rgb(255, 255, 255);
    border: 1px solid rgb(226, 232, 240);
    border-radius: 30px;
    box-shadow: 0 22px 70px rgba(15, 23, 42, 0.08);
    padding: 24px;
}

.wp-smart-search-copy h2 {
    margin: 6px 0 8px;
    font-size: clamp(24px, 3vw, 42px);
    line-height: 1.08;
    letter-spacing: -0.05em;
}

.wp-smart-search-copy p {
    color: var(--wp-muted);
    line-height: 1.65;
    margin: 0;
}

.wp-smart-search-box {
    position: relative;
}

.wp-smart-search-box label {
    display: block;
    font-weight: bold;
    margin-bottom: 8px;
    font-size: 12px;
}

.wp-smart-search-input-wrap {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 10px;
}

.wp-smart-search-input-wrap input {
    width: 100%;
    min-height: 56px;
    border: 1px solid rgb(203, 213, 225);
    border-radius: 999px;
    padding: 0 18px;
    font-family: Verdana, Arial, sans-serif;
    font-size: 15px;
    outline: none;
}

.wp-smart-search-input-wrap input:focus {
    border-color: rgb(15, 23, 42);
    box-shadow: 0 0 0 4px rgba(15, 23, 42, 0.08);
}

.wp-smart-search-input-wrap button {
    border: 0;
    background: rgb(15, 23, 42);
    color: rgb(255, 255, 255);
    border-radius: 999px;
    padding: 0 18px;
    font-weight: bold;
    cursor: pointer;
}

.wp-smart-search-hint {
    margin-top: 8px;
    font-size: 12px;
    color: rgb(100, 116, 139);
}

.wp-smart-search-results {
    position: absolute;
    z-index: 80;
    left: 0;
    right: 0;
    top: calc(100% + 12px);
    background: rgb(255, 255, 255);
    border: 1px solid rgb(226, 232, 240);
    border-radius: 24px;
    box-shadow: 0 26px 80px rgba(15, 23, 42, 0.22);
    overflow: hidden;
}

.wp-smart-search-loading,
.wp-smart-search-empty {
    padding: 18px;
    color: rgb(71, 85, 105);
    font-size: 14px;
}

.wp-smart-search-list {
    display: grid;
    max-height: 520px;
    overflow: auto;
}

.wp-smart-search-item {
    display: grid;
    grid-template-columns: 88px minmax(0, 1fr);
    gap: 14px;
    padding: 14px;
    border-bottom: 1px solid rgb(241, 245, 249);
    color: rgb(15, 23, 42);
}

.wp-smart-search-item:hover {
    background: rgb(248, 250, 252);
}

.wp-smart-search-thumb {
    width: 88px;
    height: 68px;
    border-radius: 16px;
    overflow: hidden;
    background: rgb(15, 23, 42);
    color: rgb(255, 255, 255);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

.wp-smart-search-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.wp-smart-search-content strong,
.wp-smart-search-content small,
.wp-smart-search-content em,
.wp-smart-search-content b {
    display: block;
}

.wp-smart-search-content strong {
    font-size: 15px;
    line-height: 1.3;
    margin-bottom: 5px;
}

.wp-smart-search-content small {
    color: rgb(180, 129, 64);
    font-size: 11px;
    font-style: normal;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.wp-smart-search-content em {
    color: rgb(71, 85, 105);
    font-size: 12px;
    line-height: 1.45;
    font-style: normal;
    margin-top: 6px;
}

.wp-smart-search-content b {
    color: rgb(100, 116, 139);
    font-size: 11px;
    line-height: 1.4;
    margin-top: 6px;
}

.wp-smart-search-suggestions {
    display: grid;
    gap: 12px;
    padding: 14px;
    background: rgb(248, 250, 252);
    border-top: 1px solid rgb(226, 232, 240);
}

.wp-smart-search-suggestions strong {
    display: block;
    margin-bottom: 8px;
    font-size: 12px;
    color: rgb(15, 23, 42);
}

.wp-smart-search-chipline {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.wp-smart-search-chipline a {
    display: inline-flex;
    gap: 6px;
    align-items: center;
    padding: 8px 10px;
    border-radius: 999px;
    background: rgb(255, 255, 255);
    border: 1px solid rgb(226, 232, 240);
    font-size: 12px;
    font-weight: bold;
    color: rgb(15, 23, 42);
}

.wp-smart-search-chipline small {
    color: rgb(100, 116, 139);
}

.wp-smart-search-footer {
    padding: 14px;
    text-align: center;
    border-top: 1px solid rgb(226, 232, 240);
}

.wp-smart-search-footer a {
    font-weight: bold;
    color: var(--wp-link);
}

@media (max-width: 860px) {
    .wp-smart-search-card {
        grid-template-columns: 1fr;
    }

    .wp-smart-search-results {
        position: static;
        margin-top: 12px;
    }
}

@media (max-width: 560px) {
    .wp-smart-search-input-wrap {
        grid-template-columns: 1fr;
    }

    .wp-smart-search-input-wrap button {
        min-height: 46px;
    }

    .wp-smart-search-item {
        grid-template-columns: 70px minmax(0, 1fr);
    }

    .wp-smart-search-thumb {
        width: 70px;
        height: 58px;
    }
}


/* Busca simples abaixo da logomarca - V063 */
.wp-smart-search-simple-section {
    padding: 16px 0 22px;
    background: rgb(255, 255, 255);
    border-bottom: 1px solid rgb(226, 232, 240);
}

.wp-smart-search-simple {
    max-width: 760px;
    margin: 0 auto;
    position: relative;
}

.wp-smart-search-simple.wp-smart-search-card {
    display: block;
    background: transparent;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    padding: 0;
}

.wp-smart-search-label-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip-path: inset(50%);
    white-space: nowrap;
}

.wp-smart-search-simple .wp-smart-search-box {
    position: relative;
}

.wp-smart-search-simple .wp-smart-search-input-wrap {
    display: grid;
    grid-template-columns: 46px minmax(0, 1fr) auto;
    gap: 0;
    align-items: center;
    min-height: 54px;
    border: 1px solid rgb(203, 213, 225);
    border-radius: 999px;
    background: rgb(255, 255, 255);
    box-shadow: 0 14px 36px rgba(15, 23, 42, 0.08);
    overflow: hidden;
}

.wp-smart-search-simple .wp-smart-search-lupa {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: rgb(100, 116, 139);
    font-size: 18px;
    height: 54px;
}

.wp-smart-search-simple .wp-smart-search-input-wrap input {
    min-height: 54px;
    border: 0;
    border-radius: 0;
    padding: 0 12px 0 0;
    box-shadow: none;
    font-size: 15px;
}

.wp-smart-search-simple .wp-smart-search-input-wrap input:focus {
    border: 0;
    box-shadow: none;
    outline: none;
}

.wp-smart-search-simple .wp-smart-search-input-wrap button {
    min-height: 42px;
    margin-right: 6px;
    padding: 0 16px;
    border-radius: 999px;
    background: rgb(15, 23, 42);
    color: rgb(255, 255, 255);
    border: 0;
    font-weight: bold;
    cursor: pointer;
}

.wp-smart-search-simple .wp-smart-search-results {
    top: calc(100% + 10px);
    left: 0;
    right: 0;
    text-align: left;
}

@media (max-width: 700px) {
    .wp-smart-search-simple-section {
        padding: 12px 0 16px;
    }

    .wp-smart-search-simple .wp-smart-search-input-wrap {
        grid-template-columns: 42px minmax(0, 1fr);
        border-radius: 22px;
    }

    .wp-smart-search-simple .wp-smart-search-input-wrap button {
        grid-column: 1 / -1;
        margin: 0 8px 8px 8px;
        min-height: 42px;
    }

    .wp-smart-search-simple .wp-smart-search-results {
        position: static;
        margin-top: 10px;
    }
}


/* Lupa pulsante e busca expansível no cabeçalho - V065 */
.wp-nav-search {
    position: relative;
    display: inline-flex;
    align-items: center;
}

.wp-nav-search-trigger {
    width: 42px;
    height: 42px;
    border-radius: 999px;
    border: 1px solid rgb(226, 232, 240);
    background: rgb(255, 255, 255);
    color: rgb(15, 23, 42);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 10px 28px rgba(15, 23, 42, 0.08);
    animation: wpSearchPulse 1.8s ease-in-out infinite;
}

.wp-nav-search.is-open .wp-nav-search-trigger,
.wp-nav-search-trigger:hover {
    background: rgb(15, 23, 42);
    color: rgb(255, 255, 255);
    animation: none;
}

@keyframes wpSearchPulse {
    0% { box-shadow: 0 0 0 0 rgba(15, 23, 42, 0.22), 0 10px 28px rgba(15, 23, 42, 0.08); }
    70% { box-shadow: 0 0 0 11px rgba(15, 23, 42, 0), 0 10px 28px rgba(15, 23, 42, 0.08); }
    100% { box-shadow: 0 0 0 0 rgba(15, 23, 42, 0), 0 10px 28px rgba(15, 23, 42, 0.08); }
}

.wp-nav-search-panel {
    position: absolute;
    top: calc(100% + 12px);
    right: 0;
    width: min(640px, calc(100vw - 32px));
    background: rgb(255, 255, 255);
    border: 1px solid rgb(226, 232, 240);
    border-radius: 24px;
    box-shadow: 0 26px 80px rgba(15, 23, 42, 0.24);
    padding: 14px;
    z-index: 999;
}

.wp-nav-search-panel .wp-smart-search-input-wrap {
    display: grid;
    grid-template-columns: 44px minmax(0, 1fr) auto;
    gap: 0;
    align-items: center;
    min-height: 52px;
    border: 1px solid rgb(203, 213, 225);
    border-radius: 999px;
    background: rgb(255, 255, 255);
    overflow: hidden;
}

.wp-nav-search-panel .wp-smart-search-lupa {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 52px;
    font-size: 17px;
}

.wp-nav-search-panel .wp-smart-search-input-wrap input {
    border: 0;
    min-height: 52px;
    padding: 0 10px 0 0;
    font-family: Verdana, Arial, sans-serif;
    outline: none;
}

.wp-nav-search-panel .wp-smart-search-input-wrap button {
    border: 0;
    border-radius: 999px;
    margin-right: 6px;
    min-height: 40px;
    padding: 0 15px;
    background: rgb(15, 23, 42);
    color: rgb(255, 255, 255);
    font-weight: bold;
    cursor: pointer;
}

.wp-nav-search-panel .wp-smart-search-results {
    position: static;
    margin-top: 12px;
    border-radius: 18px;
    box-shadow: none;
    border: 1px solid rgb(226, 232, 240);
    max-height: 520px;
    overflow: auto;
}

.wp-nav-search-panel .wp-smart-search-list {
    max-height: none;
}

.wp-smart-search-simple-section {
    display: none;
}

@media (max-width: 980px) {
    .wp-nav-search {
        width: auto;
    }

    .wp-nav-search-panel {
        position: fixed;
        left: 14px;
        right: 14px;
        top: 118px;
        width: auto;
    }
}

@media (max-width: 560px) {
    .wp-nav-search-panel .wp-smart-search-input-wrap {
        grid-template-columns: 40px minmax(0, 1fr);
        border-radius: 20px;
    }

    .wp-nav-search-panel .wp-smart-search-input-wrap button {
        grid-column: 1 / -1;
        margin: 0 8px 8px 8px;
        min-height: 40px;
    }
}


/* Ícones sociais padronizados - V080 */
.wp-author-social-btn,
.wp-author-links-icons a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 12px;
    border-radius: 999px;
    background: rgb(255, 255, 255);
    border: 1px solid rgb(226, 232, 240);
    text-decoration: none;
    color: rgb(15, 23, 42);
    font-weight: 700;
}

.wp-author-social-btn img,
.wp-author-links-icons a img {
    width: 24px;
    height: 24px;
    object-fit: contain;
    display: block;
}

.wp-author-links-icons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    align-items: center;
}

.wp-author-mini-social {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin: 10px 0 4px;
}

.wp-author-mini-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 999px;
    border: 1px solid rgb(226, 232, 240);
    background: rgb(255, 255, 255);
}

.wp-author-mini-social img {
    width: 22px;
    height: 22px;
    object-fit: contain;
    display: block;
}

.wp-footer-social img {
    width: 24px;
    height: 24px;
    object-fit: contain;
    display: block;
}


/* Ícones sociais padronizados - V080 */
.wp-social-list {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    align-items: center;
}

.wp-social-pill {
    display: inline-flex !important;
    align-items: center !important;
    gap: 10px !important;
    min-height: 48px;
    padding: 6px 16px 6px 8px !important;
    border-radius: 999px !important;
    border: 1px solid rgb(226, 232, 240) !important;
    background: rgb(255, 255, 255) !important;
    color: rgb(15, 23, 42) !important;
    text-decoration: none !important;
    font-weight: 700 !important;
    line-height: 1.1;
    box-shadow: 0 8px 18px rgba(15, 23, 42, 0.05);
}

.wp-social-pill:hover {
    transform: translateY(-1px);
    border-color: var(--wp-gold) !important;
}

.wp-social-pill-icon,
.wp-social-mini-icon {
    width: 34px !important;
    height: 34px !important;
    min-width: 34px !important;
    border-radius: 999px !important;
    background: rgb(15, 23, 42) !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    overflow: hidden;
}

.wp-social-pill-image,
.wp-social-mini-image {
    width: 18px !important;
    height: 18px !important;
    max-width: 18px !important;
    max-height: 18px !important;
    object-fit: contain !important;
    display: block !important;
}

.wp-social-pill-glyph {
    color: rgb(255, 255, 255);
    font-size: 11px;
    line-height: 1;
    font-weight: 700;
    letter-spacing: 0.02em;
}

.wp-social-list-author,
.wp-social-list-author-box {
    margin-top: 14px;
}

.wp-social-mini-list {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin: 10px 0 4px;
}

.wp-social-mini {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 42px !important;
    height: 42px !important;
    border-radius: 999px !important;
    border: 1px solid rgb(226, 232, 240) !important;
    background: rgb(255, 255, 255) !important;
    box-shadow: 0 8px 18px rgba(15, 23, 42, 0.05);
}

.wp-footer-social-box {
    margin: 20px 0 18px 0;
    padding: 14px;
    border: 1px solid rgba(255,255,255,.14);
    border-radius: 18px;
    background: rgba(255,255,255,.04);
}

.wp-footer-social-title {
    display: block;
    margin-bottom: 10px;
    color: rgb(255,255,255);
}

.wp-social-pill-footer {
    background: rgba(255,255,255,.08) !important;
    border-color: rgba(255,255,255,.18) !important;
    color: rgb(255,255,255) !important;
}

.wp-social-pill-footer .wp-social-pill-icon {
    background: rgb(255,255,255) !important;
}

.wp-social-pill-footer .wp-social-pill-image {
    width: 18px !important;
    height: 18px !important;
}

.wp-social-pill-footer .wp-social-pill-glyph {
    color: rgb(15, 23, 42);
}

@media (max-width: 700px) {
    .wp-social-pill {
        min-height: 44px;
        padding-right: 14px !important;
    }

    .wp-social-pill span:last-child {
        font-size: 14px;
    }
}


/* Home portal jornalístico - V081 */
.wp-news-home-top {
    padding: 24px 0 28px;
    background: linear-gradient(180deg, rgb(255, 255, 255), rgba(248, 246, 241, 0));
    border-bottom: 1px solid var(--wp-border);
}

.wp-news-home-labelbar {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    align-items: center;
    color: var(--wp-muted);
    font-size: 12px;
    margin-bottom: 16px;
}

.wp-news-home-label {
    color: var(--wp-gold);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.10em;
}

.wp-news-home-date {
    color: var(--wp-text);
    font-weight: 700;
}

.wp-news-ticker {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    gap: 14px;
    align-items: center;
    border: 1px solid var(--wp-border);
    background: rgb(255, 255, 255);
    border-radius: 999px;
    padding: 8px 14px;
    margin-bottom: 22px;
    overflow: hidden;
}

.wp-news-ticker strong {
    background: var(--wp-dark);
    color: rgb(255, 255, 255);
    border-radius: 999px;
    padding: 7px 12px;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.wp-news-ticker div {
    display: flex;
    gap: 24px;
    overflow: hidden;
    white-space: nowrap;
}

.wp-news-ticker a {
    color: var(--wp-link);
    font-weight: 700;
    font-size: 13px;
}

.wp-news-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.45fr) minmax(320px, 0.55fr);
    gap: 24px;
    align-items: stretch;
}

.wp-news-lead,
.wp-news-side,
.wp-news-sidebar-card,
.wp-news-editoria-block,
.wp-news-empty-home {
    background: rgb(255, 255, 255);
    border: 1px solid var(--wp-border);
    border-radius: 28px;
    box-shadow: 0 18px 50px rgba(20, 24, 31, 0.07);
}

.wp-news-lead {
    overflow: hidden;
}

.wp-news-lead-image {
    display: block;
    background: var(--wp-soft);
}

.wp-news-lead-image img {
    display: block;
    width: 100%;
    height: 430px;
    object-fit: cover;
}

.wp-news-lead-body {
    padding: 30px;
}

.wp-news-meta {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    align-items: center;
    color: var(--wp-muted);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.wp-news-meta a {
    color: var(--wp-gold);
}

.wp-news-lead h1 {
    margin: 12px 0;
    font-size: clamp(34px, 4.6vw, 62px);
    line-height: 1.03;
    letter-spacing: -0.06em;
}

.wp-news-lead p {
    max-width: 820px;
    color: var(--wp-muted);
    font-size: 16px;
    line-height: 1.72;
    margin: 0 0 20px;
}

.wp-news-read,
.wp-news-sidebar-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 0 18px;
    border-radius: 999px;
    background: var(--wp-dark);
    color: rgb(255, 255, 255);
    font-weight: 800;
    border: 0;
    cursor: pointer;
    font-family: Verdana, Arial, sans-serif;
}

.wp-news-side {
    padding: 22px;
}

.wp-news-side-title {
    color: var(--wp-gold);
    text-transform: uppercase;
    letter-spacing: 0.10em;
    font-size: 11px;
    font-weight: 900;
    margin-bottom: 14px;
}

.wp-news-side-item {
    display: grid;
    grid-template-columns: 116px minmax(0, 1fr);
    gap: 14px;
    padding: 14px 0;
    border-top: 1px solid var(--wp-border);
}

.wp-news-side-item:first-of-type {
    border-top: 0;
    padding-top: 0;
}

.wp-news-side-thumb {
    display: block;
    border-radius: 18px;
    overflow: hidden;
    background: var(--wp-soft);
}

.wp-news-side-thumb img {
    width: 116px;
    height: 86px;
    object-fit: cover;
    display: block;
}

.wp-news-side-item h2 {
    margin: 6px 0 0;
    font-size: 16px;
    line-height: 1.28;
    letter-spacing: -0.03em;
}

.wp-news-home-main,
.wp-news-editorias-section,
.wp-news-authors-section {
    padding: 34px 0;
}

.wp-news-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 330px;
    gap: 28px;
    align-items: start;
}

.wp-news-section-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 18px;
}

.wp-news-section-head.compact {
    align-items: flex-start;
}

.wp-news-section-head h2 {
    margin: 4px 0 0;
    font-size: clamp(26px, 3vw, 38px);
    line-height: 1.08;
    letter-spacing: -0.05em;
}

.wp-news-section-head a {
    font-weight: 800;
    color: var(--wp-link);
}

.wp-news-card-list {
    display: grid;
    gap: 16px;
}

.wp-news-row-card {
    display: grid;
    grid-template-columns: 220px minmax(0, 1fr);
    gap: 18px;
    padding: 16px;
    border: 1px solid var(--wp-border);
    border-radius: 24px;
    background: rgb(255, 255, 255);
    box-shadow: 0 12px 32px rgba(20, 24, 31, 0.05);
}

.wp-news-row-thumb {
    display: block;
    border-radius: 18px;
    overflow: hidden;
    background: var(--wp-soft);
}

.wp-news-row-thumb img {
    width: 220px;
    height: 148px;
    display: block;
    object-fit: cover;
}

.wp-news-row-body h3 {
    margin: 8px 0;
    font-size: 23px;
    line-height: 1.16;
    letter-spacing: -0.04em;
}

.wp-news-row-body p {
    color: var(--wp-muted);
    line-height: 1.65;
    margin: 0;
}

.wp-news-sidebar {
    display: grid;
    gap: 18px;
    position: sticky;
    top: 96px;
}

.wp-news-sidebar-card {
    padding: 22px;
}

.wp-news-sidebar-card p {
    color: var(--wp-muted);
    line-height: 1.65;
}

.wp-news-rank-list {
    margin: 0;
    padding: 0;
    list-style: none;
    counter-reset: wp-rank;
}

.wp-news-rank-list li {
    counter-increment: wp-rank;
    display: grid;
    grid-template-columns: 36px minmax(0, 1fr);
    gap: 10px;
    padding: 14px 0;
    border-top: 1px solid var(--wp-border);
}

.wp-news-rank-list li::before {
    content: counter(wp-rank);
    width: 32px;
    height: 32px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--wp-dark);
    color: rgb(255, 255, 255);
    font-size: 12px;
    font-weight: 900;
}

.wp-news-rank-list a {
    font-weight: 800;
    line-height: 1.35;
}

.wp-news-rank-list small {
    display: block;
    margin-top: 4px;
    color: var(--wp-muted);
}

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

.wp-news-editoria-block {
    padding: 20px;
}

.wp-news-editoria-head {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    align-items: start;
    padding-bottom: 14px;
    border-bottom: 1px solid var(--wp-border);
    margin-bottom: 14px;
}

.wp-news-editoria-head span {
    color: var(--wp-gold);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 10px;
    font-weight: 900;
}

.wp-news-editoria-head h3 {
    margin: 5px 0 0;
    font-size: 23px;
    letter-spacing: -0.04em;
}

.wp-news-editoria-head > a {
    font-weight: 800;
    color: var(--wp-link);
}

.wp-news-editoria-story {
    display: grid;
    grid-template-columns: 92px minmax(0, 1fr);
    gap: 12px;
    align-items: start;
    padding: 12px 0;
    border-top: 1px solid rgb(241, 245, 249);
}

.wp-news-editoria-story:first-of-type {
    border-top: 0;
    padding-top: 0;
}

.wp-news-editoria-thumb {
    border-radius: 14px;
    overflow: hidden;
    display: block;
    background: var(--wp-soft);
}

.wp-news-editoria-thumb img {
    width: 92px;
    height: 70px;
    object-fit: cover;
    display: block;
}

.wp-news-editoria-story h4 {
    margin: 0 0 6px;
    font-size: 15px;
    line-height: 1.25;
}

.wp-news-editoria-story small {
    color: var(--wp-muted);
}

.wp-news-authors-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
}

.wp-news-author-mini {
    display: grid;
    grid-template-columns: 58px minmax(0, 1fr);
    gap: 12px;
    align-items: center;
    padding: 14px;
    border: 1px solid var(--wp-border);
    background: rgb(255, 255, 255);
    border-radius: 22px;
    box-shadow: 0 12px 30px rgba(20, 24, 31, 0.05);
}

.wp-news-author-mini img,
.wp-news-author-mini span {
    width: 58px;
    height: 58px;
    border-radius: 999px;
    object-fit: cover;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--wp-dark);
    color: rgb(255, 255, 255);
    font-weight: 900;
}

.wp-news-author-mini strong {
    display: block;
    line-height: 1.25;
}

.wp-news-author-mini small {
    display: block;
    margin-top: 4px;
    color: var(--wp-muted);
}

.wp-news-card-text-only {
    background:
        radial-gradient(circle at top left, rgba(178, 132, 70, 0.12), transparent 34%),
        linear-gradient(135deg, rgb(255, 255, 255), rgb(248, 250, 252));
}

.wp-news-card-text-only .wp-news-row-body,
.wp-news-card-text-only .wp-news-lead-body {
    position: relative;
}

.wp-news-card-text-only::before {
    content: "Texto";
    display: inline-flex;
    width: fit-content;
    margin: 16px 16px 0;
    padding: 7px 11px;
    border-radius: 999px;
    background: var(--wp-dark);
    color: rgb(255, 255, 255);
    font-size: 10px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.wp-news-lead.wp-news-card-text-only::before {
    margin: 26px 30px 0;
}

.wp-news-side-item.wp-news-card-text-only,
.wp-news-row-card.wp-news-card-text-only,
.wp-news-editoria-story.wp-news-card-text-only {
    display: block;
}

.wp-news-side-item.wp-news-card-text-only::before,
.wp-news-editoria-story.wp-news-card-text-only::before {
    margin: 0 0 8px;
}

.wp-news-empty-home {
    padding: 34px;
}

.wp-news-empty-small {
    color: var(--wp-muted);
}

@media (max-width: 1050px) {
    .wp-news-grid,
    .wp-news-layout {
        grid-template-columns: 1fr;
    }

    .wp-news-sidebar {
        position: static;
    }

    .wp-news-editorias-grid,
    .wp-news-authors-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 700px) {
    .wp-news-home-top {
        padding-top: 18px;
    }

    .wp-news-ticker {
        border-radius: 22px;
        grid-template-columns: 1fr;
    }

    .wp-news-ticker div {
        display: grid;
        gap: 10px;
        white-space: normal;
    }

    .wp-news-grid {
        gap: 16px;
    }

    .wp-news-lead-image img {
        height: 260px;
    }

    .wp-news-lead-body,
    .wp-news-side,
    .wp-news-sidebar-card {
        padding: 18px;
    }

    .wp-news-lead h1 {
        font-size: 34px;
    }

    .wp-news-side-item,
    .wp-news-row-card,
    .wp-news-editoria-story,
    .wp-news-author-mini {
        grid-template-columns: 1fr;
    }

    .wp-news-side-thumb img,
    .wp-news-row-thumb img,
    .wp-news-editoria-thumb img {
        width: 100%;
        height: 190px;
    }

    .wp-news-editorias-grid,
    .wp-news-authors-grid {
        grid-template-columns: 1fr;
    }

    .wp-news-section-head {
        align-items: flex-start;
        flex-direction: column;
    }
}
