/* ==================================
   LINHA EM DESTAQUE
================================== */

.highlight-bar {
    background: #ffffff;
}

.highlight-bar-inner {
    width: 100%;
    height: 50px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid var(--navy);
}

.highlight-label {
    height: 27px;
    padding: 0 15px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    color: var(--navy-dark);
    background: var(--lime);
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
}

.highlight-bar-inner p {
    margin: 0;
    padding-left: 16px;
    overflow: hidden;
    color: #4e5961;
    font-size: 12px;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.highlight-text {
    min-width: 0;
    flex: 1;
}

.highlight-link {
    min-width: 0;
    display: flex;
    align-items: center;
    gap: 6px;
    overflow: hidden;
    color: inherit;
    text-decoration: none;
    transition: color 0.2s ease;
}

.highlight-link:hover {
    color: var(--navy);
}

.highlight-link:focus-visible {
    border-radius: 2px;
    outline: 2px solid var(--navy);
    outline-offset: 3px;
}

.highlight-category {
    flex: 0 0 auto;
    color: var(--navy);
    font-weight: 700;
    text-transform: uppercase;
}

.highlight-separator {
    flex: 0 0 auto;
    color: #879199;
}

.highlight-title {
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.highlight-link i {
    flex: 0 0 auto;
    margin-left: 3px;
    font-size: 9px;
    transition: transform 0.2s ease;
}

.highlight-link:hover i {
    transform: translateX(3px);
}



/* ==================================
   ELEMENTOS EDITORIAIS
================================== */

.article-category {
    display: inline-block;
    color: var(--navy);
    font-size: 9px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.045em;
}

.article-metadata {
    color: var(--muted);
    font-size: 9px;
    line-height: 1.6;
}

.article-metadata > span {
    display: block;
}

.article-metadata div {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0;
}

.article-metadata div span + span::before {
    content: "•";
    margin: 0 8px;
}


/* ==================================
   CAPA EDITORIAL
================================== */

.editorial-cover {
    padding: 30px 0 26px;
}

.editorial-cover-grid {
    display: grid;
    grid-template-columns:
        235px
        minmax(0, 1fr)
        275px;
    align-items: stretch;
}


/* ==================================
   NOTÍCIAS DA ESQUERDA
================================== */

.secondary-news-column {
    padding-right: 23px;
    display: flex;
    flex-direction: column;
    border-right: 1px solid var(--border);
}

.secondary-news-item {
    min-height: 190px;
    padding-bottom: 23px;
}

.secondary-news-item + .secondary-news-item {
    padding-top: 24px;
    border-top: 1px solid var(--border);
}

.secondary-news-item:last-child {
    padding-bottom: 0;
}

.secondary-news-item h2 {
    margin: 7px 0 14px;
    font-family: var(--serif);
    font-size: 25px;
    font-weight: 700;
    line-height: 1.12;
    letter-spacing: -0.02em;
}

.secondary-news-item h2 a:hover {
    color: var(--navy);
}


/* ==================================
   MANCHETE CENTRAL
================================== */

.main-headline {
    min-width: 0;
    padding: 0 23px;
    border-right: 1px solid var(--border);
}

.main-headline-image {
    aspect-ratio: 1200 / 784;
    background: var(--soft-gray);
    display: block;
    height: auto;
    overflow: hidden;
    width: 100%;
}

.main-headline-image img {
    display: block;
    height: 100%;
    object-fit: contain;
    object-position: center;
    width: 100%;
}

.main-headline-image:hover img {
    transform: none;
}

.main-headline-content {
    padding-top: 12px;
}

.main-headline-content h1 {
    max-width: 810px;
    margin: 5px 0 7px;
    font-family: var(--serif);
    font-size: clamp(38px, 3.3vw, 57px);
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.035em;
}

.main-headline-content h1 a:hover {
    color: var(--navy);
}

.main-headline-content > p {
    max-width: 760px;
    margin: 0 0 13px;
    color: #4c565d;
    font-size: 15px;
    line-height: 1.45;
}

.main-headline-metadata {
    display: flex;
    flex-wrap: wrap;
    color: var(--muted);
    font-size: 9px;
}

.main-headline-metadata span + span::before {
    content: "•";
    margin: 0 9px;
}


/* ==================================
   MAIS LIDAS
================================== */

.most-read-column {
    padding-left: 23px;
    display: flex;
    flex-direction: column;
}

.most-read-column > h2 {
    margin: 0 0 15px;
    color: var(--navy);
    font-family: var(--serif);
    font-size: 25px;
    font-weight: 700;
}

.most-read-column ol {
    margin: 0;
    padding: 0;
    list-style: none;
}

.most-read-column li {
    min-height: 77px;
    display: grid;
    grid-template-columns: 55px 1fr;
    gap: 8px;
}

.most-read-position {
    color: var(--navy);
    font-family: var(--serif);
    font-size: 36px;
    line-height: 1;
}

.most-read-content h3 {
    margin: 0 0 5px;
    font-family: var(--serif);
    font-size: 13px;
    font-weight: 700;
    line-height: 1.3;
}

.most-read-content h3 a:hover {
    color: var(--navy);
}

.most-read-content > span {
    color: var(--muted);
    font-size: 9px;
}


/* ==================================
   PUBLICIDADE LATERAL DA CAPA
================================== */

.cover-side-publicity {
    width: 100%;
    margin-top: 50px;
    padding-top: 10px;
    display: flex;
    justify-content: center;
    border-top: 1px solid var(--border);
}

.cover-side-publicity .publicidade-bloco {
    width: 100%;
    max-width: 250px;
    margin: 0 auto;
}

.cover-side-publicity .publicidade-bloco__conteudo,
.cover-side-publicity .publicidade-direta,
.cover-side-publicity .publicidade-direta picture {
    width: 100%;
    max-width: 100%;
}

.cover-side-publicity .publicidade-direta img {
    width: 100%;
    max-width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
}


/* ==================================
   ÁREA VAZIA
================================== */

.editorial-empty {
    padding: 80px 20px;
    text-align: center;
    border-bottom: 1px solid var(--border);
}

.editorial-empty i {
    color: var(--navy);
    font-size: 44px;
}

.editorial-empty h1 {
    margin: 15px 0 5px;
    font-family: var(--serif);
}


/* ==================================
   PUBLICIDADE
================================== */

.cover-advertising {
    padding-bottom: 21px;
}

.cover-advertising .editorial-container {
    padding-top: 14px;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--navy);
}

.advertising-identification {
    margin-bottom: 5px;
    color: #666d72;
    font-size: 8px;
    font-weight: 600;
    text-align: center;
    text-transform: uppercase;
}

.advertising-banner {
    min-height: 90px;
    display: grid;
    place-items: center;
    overflow: hidden;
}

.advertising-banner img {
    max-width: 100%;
    max-height: 110px;
    object-fit: contain;
}

.advertising-placeholder {
    min-height: 61px;
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 13px;
    color: #74787b;
    background:
        linear-gradient(
            90deg,
            #f1f0ec,
            #e8e7e3,
            #f1f0ec
        );
    font-size: 20px;
}

.advertising-placeholder strong {
    font-weight: 400;
}


/* ==================================
   RESPONSIVIDADE
================================== */

@media (max-width: 1199px) {

    .editorial-cover-grid {
        grid-template-columns:
            205px
            minmax(0, 1fr)
            245px;
    }

    .secondary-news-item h2 {
        font-size: 21px;
    }

    .main-headline-image {
        aspect-ratio: 1200 / 784;
        height: auto;
    }

    .main-headline-content h1 {
        font-size: 43px;
    }

}


@media (max-width: 991px) {

    .editorial-cover-grid {
        grid-template-columns:
            minmax(0, 1fr)
            250px;
    }

    .main-headline {
        grid-column: 1;
        grid-row: 1;
        padding-left: 0;
    }

    .most-read-column {
        grid-column: 2;
        grid-row: 1 / span 2;
    }

    .secondary-news-column {
        grid-column: 1;
        grid-row: 2;
        margin-top: 25px;
        padding: 25px 23px 0 0;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 25px;
        border-top: 1px solid var(--border);
    }

    .secondary-news-column .cover-side-publicity {
        grid-column: 1 / -1;
        margin-top: 0;
    }

    .secondary-news-item {
        min-height: auto;
    }

    .secondary-news-item + .secondary-news-item {
        padding-top: 0;
        padding-left: 25px;
        border-top: 0;
        border-left: 1px solid var(--border);
    }

}


@media (max-width: 767px) {

    .highlight-bar-inner {
        height: 44px;
    }

    .highlight-label {
        height: 24px;
        padding: 0 9px;
        font-size: 8px;
    }

    .highlight-bar-inner p {
        font-size: 10px;
    }

    .highlight-category,
    .highlight-separator {
        display: none;
    }

    .highlight-link {
        gap: 4px;
    }

.highlight-link i {
    font-size: 8px;
}

    .editorial-cover {
        padding-top: 18px;
    }

    .editorial-cover-grid {
        display: flex;
        flex-direction: column;
    }

    .main-headline {
        padding: 0 0 23px;
        border-right: 0;
        border-bottom: 1px solid var(--border);
    }

    .main-headline-image {
        aspect-ratio: 1200 / 784;
        height: auto;
    }

    .main-headline-content h1 {
        font-size: 34px;
    }

    .main-headline-content > p {
        font-size: 13px;
    }

    .secondary-news-column {
        order: 2;
        margin: 0;
        padding: 22px 0;
        display: block;
        border-right: 0;
    }

    .secondary-news-item {
        padding: 0 0 20px;
    }

    .secondary-news-item + .secondary-news-item {
        padding: 20px 0 0;
        border-top: 1px solid var(--border);
        border-left: 0;
    }

    .most-read-column {
        order: 3;
        padding: 22px 0 0;
        border-top: 1px solid var(--border);
    }

    .cover-side-publicity {
        margin-top: 22px;
    }

    .cover-side-publicity--left {
        display: none;
    }

    .advertising-placeholder {
        min-height: 70px;
        font-size: 15px;
    }

}


/* ==========================================================
   CONFIGURAÇÕES COMPARTILHADAS
========================================================== */

.article-category {
    display: inline-block;
    color: #173f5d;
    font-family: "DM Sans", sans-serif;
    font-size: 0.66rem;
    font-weight: 700;
    letter-spacing: 0.025em;
    line-height: 1.2;
    margin-bottom: 6px;
    text-decoration: none;
    text-transform: uppercase;
}

.article-category:hover {
    color: #071f34;
}

.article-meta {
    align-items: center;
    color: #4f555a;
    display: flex;
    flex-wrap: wrap;
    font-family: "DM Sans", sans-serif;
    font-size: 0.65rem;
    gap: 5px;
    line-height: 1.35;
}

.meta-separator {
    color: #8a8f93;
}

.editorial-section-heading {
    align-items: center;
    display: flex;
    gap: 18px;
    margin-bottom: 18px;
}

.editorial-section-heading h2 {
    color: #17232c;
    flex: 0 0 auto;
    font-family: "Libre Caslon Text", Georgia, serif;
    font-size: 1.85rem;
    font-weight: 400;
    line-height: 1;
    margin: 0;
}

.editorial-heading-line {
    background-color: #173f5d;
    flex: 1;
    height: 1px;
}

.all-news-link {
    color: #173f5d;
    flex: 0 0 auto;
    font-family: "DM Sans", sans-serif;
    font-size: 0.68rem;
    font-weight: 600;
    text-decoration: none;
}

.all-news-link i {
    font-size: 0.6rem;
    margin-left: 3px;
}

.home-empty-state {
    align-items: center;
    border: 1px solid #d9dddf;
    color: #667078;
    display: flex;
    font-family: "DM Sans", sans-serif;
    justify-content: center;
    min-height: 160px;
    padding: 30px;
    text-align: center;
}


/* ==========================================================
   ÚLTIMAS NOTÍCIAS
========================================================== */

.latest-news-section {
    border-top: 1px solid #173f5d;
    padding-bottom: 28px: 28px;
    padding-top: 24px;
}

.latest-news-layout {
    display: grid;
    gap: 22px;
    grid-template-columns: minmax(280px, 0.95fr) minmax(0, 2fr);
}

.latest-main-card {
    border-right: 1px solid #cbd1d5;
    padding-right: 20px;
}

.latest-main-image-link {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
    overflow: hidden;
    background-color: #f2f1ee;
}

.latest-main-image {
    width: 100%;
    height: auto;
    aspect-ratio: 1.53 / 1;
    display: block;
    object-fit: contain;
    object-position: center;
    transition: transform 220ms ease;
}

.latest-main-image-link:hover .latest-main-image {
    transform: scale(1.015);
}

.latest-main-title {
    font-family: "Libre Caslon Text", Georgia, serif;
    font-size: 1.55rem;
    font-weight: 400;
    line-height: 1.1;
    margin: 0 0 10px;
}

.latest-main-title a,
.latest-small-title a,
.special-main-title a,
.special-side-article h3 a {
    color: #17232c;
    text-decoration: none;
}

.latest-main-title a:hover,
.latest-small-title a:hover,
.special-main-title a:hover,
.special-side-article h3 a:hover {
    color: #315b78;
}

.latest-small-news-grid {
    display: grid;
    gap: 0 20px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.latest-small-card {
    align-items: flex-start;
    border-bottom: 1px solid #d8dcdf;
    display: grid;
    gap: 12px;
    grid-template-columns: 96px minmax(0, 1fr);
    min-height: 116px;
    padding: 0 0 14px;
}

.latest-small-card:nth-child(n + 3) {
    padding-top: 14px;
}

.latest-small-card:nth-last-child(-n + 2) {
    border-bottom: 0;
}

.latest-small-image-link {
    display: block;
    overflow: hidden;
}

.latest-small-image {
    aspect-ratio: 1.18 / 1;
    display: block;
    height: auto;
    object-fit: cover;
    transition: transform 220ms ease;
    width: 100%;
}

.latest-small-image-link:hover .latest-small-image {
    transform: scale(1.025);
}

.latest-small-title {
    font-family: "Libre Caslon Text", Georgia, serif;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.15;
    margin: 0 0 8px;
}

.article-meta-small {
    font-size: 0.58rem;
}


/* ==========================================================
   ESPECIAL — GUIA DO SÍNDICO
========================================================== */

.special-news-section {
    padding-bottom: 34px;
}

.special-news-layout {
    align-items: stretch;
    display: grid;
    gap: 26px;
    grid-template-columns: minmax(0, 2.08fr) minmax(260px, 0.92fr);
}

.special-guide-box {
    border: 1px solid #173f5d;
    padding: 18px;
}

.special-guide-header {
    color: #173f5d;
    font-family: "DM Sans", sans-serif;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.025em;
    margin-bottom: 16px;
    text-transform: uppercase;
}

.special-header-separator {
    margin: 0 5px;
}

.special-guide-content {
    display: grid;
    gap: 24px;
    grid-template-columns: minmax(0, 1.7fr) minmax(190px, 0.82fr);
}

.special-main-image-link {
    display: block;
    margin-bottom: 13px;
    overflow: hidden;
}

.special-main-image {
    aspect-ratio: 1.76 / 1;
    display: block;
    height: auto;
    object-fit: cover;
    width: 100%;
}

.special-main-title {
    font-family: "Libre Caslon Text", Georgia, serif;
    font-size: 1.75rem;
    font-weight: 400;
    line-height: 1.06;
    margin: 0 0 8px;
}

.special-main-summary {
    color: #525a60;
    font-family: "DM Sans", sans-serif;
    font-size: 0.75rem;
    line-height: 1.45;
    margin: 0 0 8px;
}

.special-side-news {
    display: flex;
    flex-direction: column;
}

.special-side-article {
    border-bottom: 1px solid #cfd4d7;
    flex: 1;
    padding: 4px 0 18px;
}

.special-side-article + .special-side-article {
    padding-top: 21px;
}

.special-side-article:last-child {
    border-bottom: 0;
    padding-bottom: 0;
}

.special-side-article h3 {
    font-family: "Libre Caslon Text", Georgia, serif;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.25;
    margin: 0 0 12px;
}

.article-meta-stacked {
    align-items: flex-start;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.special-empty-state {
    border: 0;
}


/* ==========================================================
   PUBLICIDADE LATERAL
========================================================== */

.special-sidebar {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.sidebar-advertising {
    align-items: center;
    background: linear-gradient(120deg, #f1f0ed, #e7e5e1);
    color: #858585;
    display: flex;
    flex: 1;
    flex-direction: column;
    font-family: "DM Sans", sans-serif;
    justify-content: center;
    min-height: 250px;
    text-align: center;
    text-transform: uppercase;
}

.sidebar-advertising span {
    font-size: 0.82rem;
}

.sidebar-advertising strong {
    font-size: 0.85rem;
    font-weight: 400;
    margin-top: 4px;
}


/* ==========================================================
   NEWSLETTER LATERAL
========================================================== */

.sidebar-newsletter {
    border: 1px solid #173f5d;
    padding: 18px 20px 16px;
}

.sidebar-newsletter h2 {
    color: #17232c;
    font-family: "Libre Caslon Text", Georgia, serif;
    font-size: 1.25rem;
    font-weight: 400;
    line-height: 1.1;
    margin: 0 0 6px;
}

.sidebar-newsletter p {
    color: #565d62;
    font-family: "DM Sans", sans-serif;
    font-size: 0.67rem;
    line-height: 1.4;
    margin: 0 0 12px;
}

.sidebar-newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.sidebar-newsletter-form input:not([type="checkbox"]) {
    background-color: #fff;
    border: 1px solid #cbd0d3;
    border-radius: 2px;
    color: #17232c;
    font-family: "DM Sans", sans-serif;
    font-size: 0.72rem;
    height: 38px;
    outline: none;
    padding: 0 12px;
    width: 100%;
}

.sidebar-newsletter-form input:not([type="checkbox"]):focus {
    border-color: #173f5d;
    box-shadow: 0 0 0 2px rgb(23 63 93 / 9%);
}

.sidebar-newsletter-form button {
    background-color: #d9ed1c;
    border: 0;
    color: #112b3f;
    cursor: pointer;
    font-family: "DM Sans", sans-serif;
    font-size: 0.72rem;
    font-weight: 700;
    height: 38px;
    transition:
        background-color 160ms ease,
        color 160ms ease;
}

.sidebar-newsletter-form button:hover {
    background-color: #173f5d;
    color: #fff;
}

.sidebar-newsletter small {
    color: #767c80;
    display: block;
    font-family: "DM Sans", sans-serif;
    font-size: 0.55rem;
    margin-top: 10px;
    text-align: center;
}


/* ==========================================================
   RESPONSIVIDADE
========================================================== */

@media (max-width: 1100px) {
    .latest-small-card {
        grid-template-columns: 82px minmax(0, 1fr);
    }

    .latest-small-title {
        font-size: 0.9rem;
    }

    .special-guide-content {
        grid-template-columns: minmax(0, 1.45fr) minmax(170px, 0.8fr);
    }
}

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

    .latest-main-card {
        border-bottom: 1px solid #cbd1d5;
        border-right: 0;
        padding-bottom: 22px;
        padding-right: 0;
    }

    .special-sidebar {
        display: grid;
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 680px) {
    .editorial-section-heading {
        align-items: flex-end;
        flex-wrap: wrap;
        gap: 9px;
    }

    .editorial-section-heading h2 {
        font-size: 1.55rem;
    }

    .editorial-heading-line {
        order: 3;
        flex-basis: 100%;
    }

    .all-news-link {
        margin-left: auto;
    }

    .latest-small-news-grid {
        grid-template-columns: 1fr;
    }

    .latest-small-card,
    .latest-small-card:nth-child(n + 3) {
        border-bottom: 1px solid #d8dcdf;
        padding: 14px 0;
    }

    .latest-small-card:first-child {
        padding-top: 0;
    }

    .latest-small-card:last-child {
        border-bottom: 0;
    }

    .special-guide-content,
    .special-sidebar {
        grid-template-columns: 1fr;
    }

    .special-main-title {
        font-size: 1.45rem;
    }

    .sidebar-advertising {
        min-height: 250px;
    }
}

@media (max-width: 430px) {
    .latest-small-card {
        grid-template-columns: 78px minmax(0, 1fr);
    }

    .special-guide-box {
        padding: 14px;
    }

    .article-meta {
        font-size: 0.58rem;
    }
}

/* ==========================================================
   GUIA DE SERVIÇOS
========================================================== */

.services-guide {
    padding-bottom: 24px;
    padding-top: 10px;
}

.services-guide-heading {
    align-items: end;
    display: grid;
    gap: 28px;
    grid-template-columns: minmax(250px, 1fr) minmax(500px, 1.2fr);
    margin-bottom: 18px;
}

.services-heading-copy h2 {
    color: #17232c;
    font-family: "Libre Caslon Text", Georgia, serif;
    font-size: 1.7rem;
    font-weight: 400;
    line-height: 1;
    margin: 0 0 7px;
}

.services-heading-copy p {
    color: #525b62;
    font-family: "DM Sans", sans-serif;
    font-size: 0.72rem;
    margin: 0;
}

.services-search-form {
    display: grid;
    gap: 10px;
    grid-template-columns: 155px minmax(190px, 1fr) 100px;
}

.services-search-form select,
.services-search-form input,
.services-search-form button {
    border-radius: 2px;
    font-family: "DM Sans", sans-serif;
    font-size: 0.68rem;
    height: 40px;
}

.services-select-wrapper {
    position: relative;
}

.services-select-wrapper select {
    appearance: none;
    background: #fff;
    border: 1px solid #ccd2d5;
    color: #303a42;
    padding: 0 34px 0 12px;
    width: 100%;
}

.services-select-wrapper i {
    color: #657079;
    font-size: 0.6rem;
    pointer-events: none;
    position: absolute;
    right: 12px;
    top: 16px;
}

.services-search-form input {
    border: 1px solid #ccd2d5;
    outline: none;
    padding: 0 13px;
    width: 100%;
}

.services-search-form input:focus,
.services-select-wrapper select:focus {
    border-color: #173f5d;
    box-shadow: 0 0 0 2px rgb(23 63 93 / 8%);
    outline: none;
}

.services-search-form button {
    background: #082f4c;
    border: 1px solid #082f4c;
    color: #fff;
    cursor: pointer;
    font-weight: 600;
}

.services-categories {
    border-bottom: 1px solid #d9dddf;
    display: grid;
    grid-template-columns: repeat(8, minmax(0, 1fr));
    margin-bottom: 0;
    padding: 0 0 15px;
}

.service-category-item {
    align-items: center;
    color: #27323a;
    display: flex;
    font-family: "DM Sans", sans-serif;
    font-size: 0.64rem;
    font-weight: 600;
    gap: 8px;
    justify-content: center;
    text-decoration: none;
}

.service-category-item:hover {
    color: #173f5d;
}

.service-category-icon {
    align-items: center;
    color: #58636a;
    display: flex;
    font-size: 1.25rem;
    height: 30px;
    justify-content: center;
    width: 30px;
}

.providers-list {
    border-left: 1px solid #d9dddf;
    border-right: 1px solid #d9dddf;
}

.provider-row {
    align-items: center;
    border-bottom: 1px solid #d9dddf;
    display: grid;
    font-family: "DM Sans", sans-serif;
    gap: 12px;
    grid-template-columns:
        minmax(245px, 1.4fr)
        minmax(135px, 0.8fr)
        minmax(110px, 0.65fr)
        minmax(115px, 0.7fr)
        minmax(110px, 0.65fr)
        80px;
    min-height: 67px;
    padding: 8px 14px;
}

.provider-identity {
    align-items: center;
    display: flex;
    gap: 12px;
    min-width: 0;
}

.provider-logo {
    align-items: center;
    display: flex;
    flex: 0 0 42px;
    font-size: 1.8rem;
    height: 42px;
    justify-content: center;
    overflow: hidden;
    text-decoration: none;
    width: 42px;
}

.provider-logo img {
    height: 100%;
    object-fit: contain;
    width: 100%;
}

.provider-name-box {
    min-width: 0;
}

.provider-name-line {
    align-items: center;
    display: flex;
    gap: 7px;
}

.provider-name-line h3 {
    font-size: 0.72rem;
    font-weight: 700;
    margin: 0;
}

.provider-name-line h3 a {
    color: #253038;
    text-decoration: none;
}

.provider-name-box p {
    color: #758087;
    font-size: 0.53rem;
    margin: 3px 0 0;
}

.provider-verified {
    color: #276cc2;
    font-size: 0.5rem;
    white-space: nowrap;
}

.provider-service,
.provider-city,
.provider-phone {
    color: #5f696f;
    font-size: 0.55rem;
}

.provider-dot {
    margin: 0 3px;
}

.provider-rating {
    align-items: center;
    display: flex;
    font-size: 0.55rem;
    gap: 5px;
    white-space: nowrap;
}

.provider-stars {
    color: #f4c400;
    display: flex;
    font-size: 0.48rem;
    gap: 1px;
}

.provider-rating strong {
    color: #343d43;
}

.provider-rating small {
    color: #737d83;
}

.provider-phone {
    align-items: center;
    display: flex;
    gap: 6px;
    white-space: nowrap;
}

.provider-details {
    color: #315d79;
    font-size: 0.55rem;
    font-weight: 600;
    text-align: right;
    text-decoration: none;
    white-space: nowrap;
}

.provider-register-wrapper {
    display: flex;
    justify-content: center;
    padding-top: 16px;
}

.provider-register-button {
    border: 1px solid #173f5d;
    color: #173f5d;
    font-family: "DM Sans", sans-serif;
    font-size: 0.7rem;
    font-weight: 600;
    min-width: 330px;
    padding: 9px 22px;
    text-align: center;
    text-decoration: none;
}


/* ==========================================================
   JORNAL PERSONALIZADO
========================================================== */

.custom-newspaper {
    padding-bottom: 18px;
}

.custom-newspaper-box {
    background: linear-gradient(105deg, #fff 15%, #f8f7f2 100%);
    border: 1px solid #173f5d;
    display: grid;
    grid-template-columns: minmax(330px, 0.92fr) minmax(420px, 1.08fr);
    min-height: 340px;
    overflow: hidden;
    padding: 24px 28px;
}

.custom-newspaper-copy {
    position: relative;
    z-index: 2;
}

.custom-newspaper-eyebrow {
    color: #173f5d;
    display: block;
    font-family: "DM Sans", sans-serif;
    font-size: 0.64rem;
    font-weight: 700;
    margin-bottom: 8px;
    text-transform: uppercase;
}

.custom-newspaper-copy h2 {
    color: #17232c;
    font-family: "Libre Caslon Text", Georgia, serif;
    font-size: 2rem;
    font-weight: 400;
    line-height: 1.02;
    margin: 0 0 13px;
}

.custom-newspaper-copy > p {
    color: #4e575d;
    font-family: "DM Sans", sans-serif;
    font-size: 0.7rem;
    line-height: 1.45;
    margin: 0 0 12px;
    max-width: 440px;
}

.custom-newspaper-copy ul {
    list-style: none;
    margin: 0 0 15px;
    padding: 0;
}

.custom-newspaper-copy li {
    color: #485159;
    font-family: "DM Sans", sans-serif;
    font-size: 0.65rem;
    margin: 5px 0;
}

.custom-newspaper-copy li i {
    color: #cfe719;
    font-size: 0.75rem;
    margin-right: 8px;
}

.custom-newspaper-actions {
    display: flex;
    gap: 12px;
    margin-bottom: 12px;
}

.newspaper-primary-button,
.newspaper-secondary-button {
    font-family: "DM Sans", sans-serif;
    font-size: 0.65rem;
    font-weight: 700;
    min-width: 145px;
    padding: 10px 18px;
    text-align: center;
    text-decoration: none;
}

.newspaper-primary-button {
    background: #d9ed1c;
    color: #173349;
}

.newspaper-secondary-button {
    border: 1px solid #9bb0bd;
    color: #173f5d;
}

.custom-newspaper-copy > small {
    color: #68737a;
    font-family: "DM Sans", sans-serif;
    font-size: 0.5rem;
    text-transform: uppercase;
}

.newspaper-covers {
    min-height: 290px;
    position: relative;
}

.newspaper-cover {
    background: #fff;
    box-shadow: 0 8px 18px rgb(21 37 47 / 20%);
    display: block;
    height: 265px;
    overflow: hidden;
    position: absolute;
    top: 5px;
    width: 180px;
}

.newspaper-cover img {
    height: 100%;
    object-fit: cover;
    width: 100%;
}

.newspaper-cover-1 {
    left: 5%;
    transform: rotate(-7deg);
    z-index: 1;
}

.newspaper-cover-2 {
    left: 34%;
    transform: rotate(2deg);
    z-index: 3;
}

.newspaper-cover-3 {
    left: 63%;
    transform: rotate(8deg);
    z-index: 2;
}


/* ==========================================================
   COLUNISTAS
========================================================== */

.columnists-section {
    padding-bottom: 14px;
}

.home-title-with-line {
    align-items: center;
    display: flex;
    gap: 18px;
}

.home-title-with-line h2 {
    color: #17232c;
    flex: 0 0 auto;
    font-family: "Libre Caslon Text", Georgia, serif;
    font-size: 1.45rem;
    font-weight: 400;
    margin: 0;
}

.home-title-with-line > div {
    background: #173f5d;
    flex: 1;
    height: 1px;
}

.columnists-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-top: 12px;
}

.columnist-card {
    align-items: center;
    border-right: 1px solid #d6dade;
    display: grid;
    gap: 16px;
    grid-template-columns: 88px minmax(0, 1fr);
    min-height: 125px;
    padding: 8px 26px;
}

.columnist-card:first-child {
    padding-left: 8px;
}

.columnist-card:last-child {
    border-right: 0;
}

.columnist-photo {
    border-radius: 50%;
    display: block;
    height: 82px;
    overflow: hidden;
    width: 82px;
}

.columnist-photo img {
    height: 100%;
    object-fit: cover;
    width: 100%;
}

.columnist-topic {
    color: #253d4e;
    font-family: "Libre Caslon Text", Georgia, serif;
    font-size: 0.76rem;
}

.columnist-content h3 {
    font-family: "DM Sans", sans-serif;
    font-size: 0.58rem;
    font-weight: 400;
    margin: 4px 0;
}

.columnist-content h3 a {
    color: #525c62;
    text-decoration: none;
}

.columnist-content p {
    color: #4e585e;
    font-family: "DM Sans", sans-serif;
    font-size: 0.57rem;
    line-height: 1.35;
    margin: 0 0 8px;
}

.columnist-link {
    color: #173f5d;
    font-family: "DM Sans", sans-serif;
    font-size: 0.52rem;
    font-weight: 600;
    text-decoration: none;
}


/* ==========================================================
   PORTFÓLIO
========================================================== */

.portfolio-home {
    padding-bottom: 20px;
}

.portfolio-home-heading {
    align-items: center;
    display: flex;
    justify-content: space-between;
    margin-bottom: 12px;
}

.portfolio-title {
    flex: 1;
    margin-right: 20px;
}

.portfolio-home-heading > a {
    color: #173f5d;
    font-family: "DM Sans", sans-serif;
    font-size: 0.55rem;
    font-weight: 600;
    text-decoration: none;
}

.portfolio-home-grid {
    display: grid;
    gap: 12px;
    grid-template-columns: repeat(6, minmax(0, 1fr));
}

.portfolio-home-card {
    border: 1px solid #d8dcde;
    padding: 8px 8px 0;
}

.portfolio-home-card > a {
    color: #17232c;
    text-decoration: none;
}

.portfolio-home-card h3 {
    font-family: "Libre Caslon Text", Georgia, serif;
    font-size: 0.8rem;
    font-weight: 400;
    margin: 0 0 7px;
    overflow: hidden;
    text-align: center;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.portfolio-home-image {
    aspect-ratio: 1.55 / 1;
    overflow: hidden;
}

.portfolio-home-image img {
    height: 100%;
    object-fit: cover;
    transition: transform 200ms ease;
    width: 100%;
}

.portfolio-home-card:hover img {
    transform: scale(1.03);
}


/* ==========================================================
   NEWSLETTER INFERIOR
========================================================== */

.home-bottom-newsletter {
    align-items: center;
    background: #062f4c;
    border-radius: 7px;
    color: #ffffff;
    display: grid;
    gap: 20px;
    grid-template-columns:
        58px
        minmax(270px, 0.75fr)
        minmax(650px, 1.75fr);
    min-height: 112px;
    padding: 16px 22px;
}

.bottom-newsletter-icon {
    align-items: center;
    border: 2px solid #d7ef00;
    color: #d7ef00;
    display: flex;
    font-size: 25px;
    height: 44px;
    justify-content: center;
    transform: rotate(-3deg);
    width: 50px;
}

.home-bottom-newsletter-copy {
    display: block;
    min-width: 0;
}

.home-bottom-newsletter-copy h2 {
    color: #ffffff;
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 23px;
    font-weight: 400;
    line-height: 1.05;
    margin: 0 0 7px;
}

.home-bottom-newsletter-copy p {
    color: #d4dde2;
    font-size: 11px;
    line-height: 1.45;
    margin: 0;
    max-width: 330px;
}

.home-bottom-newsletter-form {
    align-items: center;
    display: grid;
    gap: 8px 14px;
    grid-template-areas:
        'turnstile fields'
        'turnstile privacy';
    grid-template-columns:
        minmax(300px, 1fr)
        minmax(330px, 1.15fr);
    min-width: 0;
}

.home-bottom-turnstile {
    grid-area: turnstile;
    min-width: 300px;
    width: 100%;
}

.home-bottom-turnstile .cf-turnstile {
    display: block;
    max-width: 100%;
    width: 100%;
}



.bottom-newsletter-form {
    display: grid;
    gap: 8px;
    grid-template-columns: minmax(180px, 1fr) 145px;
}

.bottom-newsletter-form input,
.bottom-newsletter-form button {
    border: 0;
    border-radius: 3px;
    font-family: "DM Sans", sans-serif;
    font-size: 0.68rem;
    height: 38px;
}

.bottom-newsletter-form input {
    padding: 0 13px;
}

.bottom-newsletter-form button {
    background: #d9ed1c;
    color: #173349;
    cursor: pointer;
    font-weight: 700;
}

.home-bottom-newsletter-fields {
    display: grid;
    gap: 8px;
    grid-area: fields;
    grid-template-columns:
        minmax(160px, 1fr)
        145px;
    min-width: 0;
}

.home-bottom-newsletter-fields input {
    background: #ffffff;
    border: 0;
    border-radius: 3px;
    color: #1c2a35;
    font-size: 12px;
    height: 38px;
    min-width: 0;
    outline: none;
    padding: 0 14px;
    width: 100%;
}

.home-bottom-newsletter-fields input:focus {
    box-shadow:
        0 0 0 2px
        rgba(215, 239, 0, 0.65);
}

.home-bottom-newsletter-fields button {
    background: #d7ef00;
    border: 0;
    border-radius: 3px;
    color: #062f4c;
    cursor: pointer;
    font-size: 12px;
    font-weight: 700;
    height: 38px;
    padding: 0 15px;
    white-space: nowrap;
    width: 100%;
}

.home-bottom-newsletter-fields button:hover {
    background: #e4fa24;
}


/* PRIVACIDADE */

.home-bottom-newsletter-privacy {
    align-items: flex-start;
    color: #d4dde2;
    display: flex;
    font-size: 10px;
    gap: 6px;
    grid-area: privacy;
    line-height: 1.35;
    margin: 0;
}

.home-bottom-newsletter-privacy input {
    flex: 0 0 auto;
    height: 14px;
    margin: 0;
    width: 14px;
}

.home-bottom-newsletter-privacy a {
    color: #ffffff;
    font-weight: 700;
    text-decoration: underline;
}




/* ==========================================================
   ESTADOS VAZIOS
========================================================== */

.services-empty {
    color: #687279;
    font-family: "DM Sans", sans-serif;
    font-size: 0.72rem;
    grid-column: 1 / -1;
    padding: 28px;
    text-align: center;
}


/* ==========================================================
   RESPONSIVIDADE
========================================================== */

@media (max-width: 1150px) {
    .provider-row {
        grid-template-columns:
            minmax(220px, 1.4fr)
            minmax(130px, 0.8fr)
            100px
            105px
            70px;
    }

    .provider-phone {
        display: none;
    }

    .columnist-card {
        gap: 12px;
        grid-template-columns: 70px minmax(0, 1fr);
        padding: 8px 16px;
    }

    .columnist-photo {
        height: 66px;
        width: 66px;
    }
}

@media (max-width: 900px) {
    .services-guide-heading {
        align-items: stretch;
        grid-template-columns: 1fr;
    }

    .services-categories {
        grid-template-columns: repeat(4, minmax(0, 1fr));
        row-gap: 16px;
    }

    .provider-row {
        grid-template-columns: minmax(230px, 1.4fr) 1fr 100px 75px;
    }

    .provider-city,
    .provider-phone {
        display: none;
    }

    .custom-newspaper-box {
        grid-template-columns: 1fr;
    }

    .newspaper-covers {
        margin-top: 25px;
    }

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

    .columnist-card,
    .columnist-card:first-child {
        border-bottom: 1px solid #d6dade;
        border-right: 0;
        grid-template-columns: 82px minmax(0, 1fr);
        padding: 14px 8px;
    }

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

    .home-bottom-newsletter {
        grid-template-columns: 55px 1fr;
    }

    .bottom-newsletter-form {
        grid-column: 1 / -1;
    }
}

@media (max-width: 650px) {
    .services-search-form {
        grid-template-columns: 1fr;
    }

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

    .service-category-item {
        justify-content: flex-start;
    }

    .provider-row {
        gap: 8px;
        grid-template-columns: 1fr auto;
        padding: 12px;
    }

    .provider-service,
    .provider-city,
    .provider-rating,
    .provider-phone {
        display: none;
    }

    .provider-register-button {
        min-width: 0;
        width: 100%;
    }

    .custom-newspaper-box {
        padding: 20px;
    }

    .custom-newspaper-copy h2 {
        font-size: 1.6rem;
    }

    .newspaper-covers {
        display: flex;
        gap: 10px;
        min-height: 190px;
    }

    .newspaper-cover {
        flex: 1;
        height: 180px;
        left: auto;
        position: relative;
        top: auto;
        transform: none;
        width: auto;
    }

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

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

    .bottom-newsletter-icon {
        display: none;
    }

    .bottom-newsletter-form {
        grid-column: auto;
        grid-template-columns: 1fr;
    }
}

.newsletter-privacy-check {
    align-items: flex-start;
    color: #687178;
    cursor: pointer;
    display: flex;
    font-family: "DM Sans", sans-serif;
    font-size: 0.58rem;
    gap: 7px;
    line-height: 1.35;
    margin: 2px 0;
    width: 100%;
}

.newsletter-privacy-check input[type="checkbox"] {
    appearance: auto;
    flex: 0 0 auto;
    height: 14px;
    margin: 1px 0 0;
    padding: 0;
    width: 14px;
}

.newsletter-privacy-check span {
    display: inline;
    min-width: 0;
}

.newsletter-privacy-check a {
    color: #173f5d;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.special-sidebar > .publicidade-bloco--lateral {
    align-self: flex-start;
    justify-self: center;
    margin: 0 auto;
    max-width: 300px;
    width: min(100%, 300px);
}

.special-sidebar > .publicidade-bloco--lateral
.publicidade-bloco__conteudo,
.special-sidebar > .publicidade-bloco--lateral
.publicidade-bloco__placeholder {
    box-sizing: border-box;
    margin-right: auto;
    margin-left: auto;
    max-width: 100%;
    min-width: 0;
    width: 100%;
}

.special-sidebar > .publicidade-bloco--lateral
.publicidade-bloco__conteudo {
    justify-content: center;
    overflow: hidden;
}

/*
 * Quando o AdSense não preenche o espaço, o elemento <ins>
 * precisa deixar de ocupar os 300 px. Caso contrário, ele
 * empurra o placeholder para fora da coluna lateral.
 */
.special-sidebar >
.publicidade-bloco--lateral.publicidade-bloco--sem-preenchimento
.adsbygoogle {
    display: none !important;
}

.special-sidebar >
.publicidade-bloco--lateral.publicidade-bloco--sem-preenchimento
.publicidade-bloco__placeholder {
    display: flex !important;
}


/* ======================================================
   NEWSLETTER — TABLETS E TELAS INTERMEDIÁRIAS
   ====================================================== */

@media (max-width: 1199px) {

    .home-bottom-newsletter {
        grid-template-columns:
            55px
            minmax(0, 1fr);
        min-height: 0;
    }

    .home-bottom-newsletter-form {
        grid-column: 1 / -1;
    }

}


/* ======================================================
   NEWSLETTER — CELULAR
   ====================================================== */

@media (max-width: 767px) {

    .home-bottom-newsletter {
        grid-template-columns: minmax(0, 1fr);
        padding: 20px 16px;
    }

    .bottom-newsletter-icon {
        display: none;
    }

    .home-bottom-newsletter-copy h2 {
        font-size: 22px;
    }

    .home-bottom-newsletter-copy p {
        font-size: 12px;
        max-width: none;
    }

    .home-bottom-newsletter-form {
        grid-column: auto;
        grid-template-areas:
            'turnstile'
            'fields'
            'privacy';
        grid-template-columns: minmax(0, 1fr);
        width: 100%;
    }

    .home-bottom-turnstile {
        min-width: 0;
    }

    .home-bottom-newsletter-fields {
        grid-template-columns: minmax(0, 1fr);
    }

}


/* Mantém os 300px necessários em aparelhos estreitos. */

@media (max-width: 360px) {

    .home-bottom-newsletter {
        padding-left: 10px;
        padding-right: 10px;
    }

}