@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@400;600;700&family=Special+Elite&family=Libre+Baskerville:wght@400;700&display=swap');

:root {
    --paper: #efe0bd;
    --paper-dark: #dcc99f;
    --ink: #1e1b17;
    --muted: #5d5344;
    --red: #8d3028;
    --blue: #183d4f;
    --green: #2f5732;
    --line: #2b251e;
}

* {
    box-sizing: border-box;
}

html,
body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}

body {
    margin: 0;
    background-color: #2b2925;
    background-image: url('bg-wood.jpg');
    background-repeat: repeat;
    background-position: top left;
    color: var(--ink);
    font-family: 'Libre Baskerville', Georgia, serif;
}

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

a:hover h2,
a:hover h3,
.quick a:hover {
    color: var(--red);
}

.newspaper {
    width: min(1180px, calc(100% - 28px));
    margin: 24px auto;
    padding: 28px;
    background: url('paper-texture.png');
    background-repeat: repeat;
    background-size: 480px auto;
    border: 1px solid #c8b481;
    border-radius: 12px;
    box-shadow: 0 5px 50px rgba(0, 0, 0, 1);
}

/* ======================================================
   BANNER PROMOCIONAL
   ====================================================== */

.top-promo-banner {
    display: block;
    margin: 0 0 18px;
    border: 2px solid rgba(30, 27, 23, 0.65);
    border-radius: 10px;
    overflow: hidden;
}

.top-promo-banner img {
    display: block;
    width: 100%;
    height: auto;
}

/* ======================================================
   CABEÇALHO
   ====================================================== */

.masthead {
    display: grid;
    grid-template-columns: 150px minmax(0, 1fr) 150px;
    gap: 24px;
    align-items: center;
    border-bottom: 4px double var(--line);
    padding-bottom: 16px;
}

.stamp {
    min-height: 126px;
    padding: 12px 8px;
    border: 2px solid var(--line);
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
}

.stamp strong {
    font-size: 1.05rem;
}

.stamp span {
    margin-top: 10px;
    font-weight: 700;
    line-height: 1.3;
}

.stamp small {
    margin-top: 6px;
    font-weight: 700;
}

.stamp-link {
    display: block;
    margin-top: 8px;
    padding-top: 7px;
    border-top: 1px solid var(--line);
    color: var(--ink);
    font-size: 0.82rem;
    font-weight: 700;
    text-transform: uppercase;
}

.stamp-link:hover {
    color: var(--red);
}

.stamp-disclaimer {
    display: block;
    margin-top: 8px;
    font-size: 0.72rem;
    line-height: 1.3;
    text-transform: uppercase;
    font-family: oswald;
}

.brand {
    min-width: 0;
    text-align: center;
}

.brand-logo {
    max-width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    overflow: hidden;
    font-family: 'Oswald', serif;
    line-height: 1;
    text-transform: uppercase;
}

.brand-logo:hover {
    color: inherit;
    text-decoration: none;
}

.veio-logo {
    width: 95px;
    height: 95px;
    margin-right: 12px;
    object-fit: contain;
    flex: 0 0 auto;
}

.jornal,
.veio {
    font-family: 'Oswald', serif;
    font-size: clamp(3.5rem, 8vw, 7rem);
    font-weight: 700;
    letter-spacing: -0.05em;
    white-space: nowrap;
}

.jornal {
    margin-right: -6px;
}

.veio {
    margin-left: -6px;
}

.do-circle {
    width: 42px;
    height: 42px;
    margin: 0 6px;
    border-radius: 50%;
    background: #1e1b17;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translateY(-4px);
    flex: 0 0 auto;
}

.do-circle span {
    font-family: 'Oswald', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    letter-spacing: 0;
}

.brand p {
    margin: 12px 0 0;
    color: var(--red);
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.mobile-edition-bar {
    display: none;
}

.mobile-archive-link {
    color: var(--blue);
    font-weight: 700;
    text-decoration: none;
}

.mobile-archive-link:hover {
    color: var(--red);
}

.sections {
    display: flex;
    justify-content: space-around;
    gap: 12px;
    border-bottom: 4px double var(--line);
    padding: 12px 0;
    margin-bottom: 18px;
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
}

.sections span:not(:last-child)::after {
    content: ' ★';
    margin-left: 20px;
}

.menu-principal {
    display: flex;
    justify-content: space-around;
    gap: 12px;
}

.menu-principal a {
    color: inherit;
    text-decoration: none;
    text-transform: uppercase;
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
}

.menu-principal a::before {
    content: ' ★';
    margin-left: 10px;
}

.menu-principal a.active {
    color: var(--red);
}

/* ======================================================
   GRID PRINCIPAL
   ====================================================== */

.grid {
    display: grid;
    grid-template-columns: 2fr 1.02fr;
    grid-template-areas:
        "lead sidebar"
        "quick sidebar"
        "community rumor"
        "date date";
    gap: 18px;
    align-items: start;
}

.label {
    display: inline-block;
    padding: 7px 12px;
    margin-bottom: 10px;
    color: #fff;
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
    letter-spacing: 0.03em;
    text-transform: uppercase;
}

.label.red {
    background: var(--red);
}

.label.blue {
    background: var(--blue);
}

.label.green {
    background: var(--green);
}

.label.dark {
    background: var(--ink);
}

.lead {
    grid-area: lead;
    padding-right: 18px;
    padding-bottom: 16px;
    border-bottom: 2px solid var(--line);
}

.lead h2 {
    margin: 0 0 14px;
    font-family: 'Oswald', sans-serif;
    font-size: clamp(2rem, 4vw, 3.5rem);
    line-height: 0.98;
    letter-spacing: -0.04em;
    text-transform: uppercase;
}

.lead p {
    max-width: 100%;
    columns: 1;
    column-gap: 0;
    font-size: 1.04rem;
    line-height: 1.55;
}

.story-image {
    width: 100%;
    max-width: 100%;
    display: block;
    object-fit: cover;
    border: 2px solid var(--line);
    background: var(--paper-dark);
    filter: sepia(0.22) contrast(0.95);
}

.story-image.large {
    height: 310px;
}

.story-image.medium {
    height: 190px;
    margin: 8px 0;
}

.story-image.thumb {
    height: 118px;
}

.placeholder {
    display: grid;
    place-items: center;
    color: rgba(30, 27, 23, 0.45);
    font-family: 'Oswald', sans-serif;
    font-size: 2.5rem;
}

.meta {
    margin-top: 8px;
    color: var(--muted);
    font-family: 'Oswald', sans-serif;
    font-size: 0.96rem;
}

/* ======================================================
   BARRA LATERAL
   ====================================================== */

.sidebar {
    grid-area: sidebar;
    position: relative;
    min-width: 0;
    padding-left: 0;
    border-left: 0;
}

.sidebar::before {
    content: "";
    position: absolute;
    left: -18px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(
        to bottom,
        transparent 0,
        rgba(30, 27, 23, 0.75) 24px,
        rgba(30, 27, 23, 0.75) calc(100% - 24px),
        transparent 100%
    );
}

.side-story,
.podcast-story {
    padding: 0 0 14px;
    margin-bottom: 14px;
    border-bottom: 1px solid rgba(30, 27, 23, 0.55);
}

.side-story:last-child {
    border-bottom: 0;
}

.podcast-story,
.store-story {
    border: 2px solid var(--red);
    padding: 10px;
    background: rgba(141, 48, 40, 0.08);
}

.podcast-story a,
.side-story a {
    display: grid;
    grid-template-columns: 130px minmax(0, 1fr);
    gap: 14px;
    align-items: start;
}

.podcast-story h3,
.side-story h3,
.store-story h3 {
    margin: 0 0 8px;
    font-family: 'Oswald', sans-serif;
    font-size: 1.22rem;
    line-height: 1.12;
}

.story-image.podcast-thumb,
.story-image.thumb {
    width: 130px;
    height: 130px;
    object-fit: cover;
}

.store-story {
    margin-bottom: 14px;
}

.store-story a {
    display: flex;
    gap: 14px;
    align-items: flex-start;
}

.story-image.store-thumb {
    width: 130px;
    height: auto;
    object-fit: contain;
    flex-shrink: 0;
}

.store-content {
    min-width: 0;
    display: flex;
    flex-direction: column;
}

.store-content .meta {
    margin-top: 8px;
}

/* ======================================================
   ANIVERSÁRIOS DO MÊS
   ====================================================== */

.anniversary-card {
    border: 2px solid rgba(30, 27, 23, 0.65);
    padding: 10px;
    margin-bottom: 16px;
    background: rgba(255, 255, 255, 0.08);
}

.anniversary-table {
    width: 100%;
    border-collapse: collapse;
    font-family: 'Oswald', sans-serif;
}

.anniversary-table tr {
    border-bottom: 1px dotted rgba(30, 27, 23, 0.55);
}

.anniversary-table tr:last-child {
    border-bottom: 0;
}

.anniversary-table td {
    padding: 7px 0;
    vertical-align: top;
}

.anniversary-table .date {
    width: 48px;
    color: var(--red);
    font-weight: 700;
    white-space: nowrap;
}

.anniversary-table strong {
    display: block;
    font-size: 1rem;
    line-height: 1.05;
}

.anniversary-table span {
    display: block;
    margin-top: 3px;
    color: var(--muted);
    font-size: 0.78rem;
}

.anniversary-table tr.milestone .date,
.anniversary-table tr.milestone strong {
    color: var(--red);
    font-weight: 800;
}

/* ======================================================
   VALE A PENA LER DE NOVO
   ====================================================== */

.retro-mag-card {
    border: 2px solid rgba(30, 27, 23, 0.65);
    padding: 10px;
    margin-bottom: 16px;
}

.retro-mag-content {
    display: flex;
    gap: 10px;
    align-items: flex-start;
}

.retro-mag-cover {
    width: 90px;
    height: auto;
    border: 1px solid rgba(0, 0, 0, 0.4);
    flex-shrink: 0;
}

.retro-mag-info {
    min-width: 0;
}

.retro-mag-info h3 {
    margin: 0 0 6px;
    font-family: 'Oswald', sans-serif;
    font-size: 1.25rem;
    line-height: 1.05;
}

.retro-mag-info p {
    margin: 0 0 8px;
    color: var(--muted);
    font-size: 0.9rem;
}

.retro-mag-info a {
    color: var(--red);
    font-weight: 700;
    text-decoration: none;
}

.retro-mag-info a:hover {
    text-decoration: underline;
}

/* ======================================================
   CARDS SECUNDÁRIOS
   ====================================================== */

.more-news {
    grid-area: quick;
    margin-top: 0;
    padding-top: 0;
    padding-right: 18px;
}

.more-news-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
    align-items: start;
}

.more-news .label {
    margin-bottom: 12px;
}

.feature-card {
    border: 2px solid rgba(30, 27, 23, 0.65);
    padding: 12px;
    background: rgba(255, 255, 255, 0.08);
}

.feature-card,
.community,
.rumor,
.date-card {
    width: 100%;
    border: 2px solid rgba(30, 27, 23, 0.65);
    padding: 12px;
    background: rgba(255, 255, 255, 0.08);
}

.feature-card h3,
.community h3,
.rumor h3,
.date-card h3 {
    margin: 8px 0;
    font-family: 'Oswald', sans-serif;
    font-size: 1.55rem;
    line-height: 1.08;
}

.feature-card p,
.more-news p,
.more-news-grid p {
    overflow-wrap: anywhere;
    word-break: break-word;
}

.feature-card p {
    margin: 8px 0 0;
    font-size: 0.95rem;
    line-height: 1.45;
}

.story-image.feature {
    height: 165px;
}

.community,
.rumor,
.date-card {
    width: calc(100% - 18px);
    max-width: calc(100% - 18px);
}

.community {
    grid-area: community;
}

.rumor {
    grid-area: rumor;
}

.date-card {
    grid-area: date;
    display: grid;
    grid-template-columns: 180px minmax(0, 1fr);
    gap: 16px;
    align-items: start;
}

.date-card .label {
    grid-column: 1 / -1;
}

.date-card .story-image {
    width: 180px;
    height: 180px;
}

.date-card h3 {
    margin-top: 0;
}

/* ======================================================
   CLASSIFICADOS DO VÉIO
   ====================================================== */

.classifieds-page {
    margin-top: 18px;
}

.classifieds-back {
    display: inline-block;
    margin-bottom: 18px;
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
}

.classifieds-back:hover {
    color: var(--red);
}

.classifieds-header {
    margin-bottom: 20px;
}

.classifieds-header h1 {
    margin: 0 0 12px;
    font-family: 'Oswald', sans-serif;
    font-size: clamp(2rem, 3.2vw, 3.2rem);
    line-height: 0.95;
    letter-spacing: -0.04em;
    text-transform: uppercase;
}

.classifieds-header p {
    max-width: none;
    margin: 0 0 22px;
    font-size: 1rem;
    line-height: 1.55;
}

.classified-category {
    margin: 0 0 34px;
}

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

.classified-card {
    position: relative;
    display: block;
    padding: 12px;
    border: 2px solid rgba(30, 27, 23, 0.65);
    background: rgba(255, 255, 255, 0.5);
    color: var(--ink);
    text-decoration: none;
    transition: background 0.16s ease, transform 0.16s ease;
}

.classified-card:hover {
    background: rgba(255, 255, 255, 0.18);
    transform: translateY(-1px);
}

.classified-card:hover h2 {
    color: var(--red);
}

.classified-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    padding: 4px 8px;
    background: var(--blue);
    color: #fff;
    font-family: 'Oswald', sans-serif;
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    z-index: 2;
}

.classified-title-row h2 {
    margin: 0 0 8px;
    padding-right: 90px;
    font-family: 'Oswald', sans-serif;
    font-size: 1.7rem;
    line-height: 1.03;
    text-transform: uppercase;
    letter-spacing: -0.02em;
}

.classified-body {
    display: grid;
    grid-template-columns: 190px minmax(0, 1fr);
    gap: 14px;
    align-items: start;
}

.classified-image img,
.classified-placeholder {
    width: 100%;
    aspect-ratio: 1 / 1;
    display: block;
    object-fit: cover;
    border: 2px solid var(--line);
    background: var(--paper-dark);
}

.classified-placeholder {
    display: grid;
    place-items: center;
    color: rgba(30, 27, 23, 0.45);
    font-family: 'Oswald', sans-serif;
    font-size: 2.5rem;
}

.classified-info {
    min-width: 0;
}

.classified-info p {
    margin: 0;
    font-size: 0.96rem;
    line-height: 1.4;
    overflow-wrap: anywhere;
}

.classified-footer {
    margin-top: 14px;
    padding-top: 12px;
    border-top: 2px solid var(--line);
    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 12px;
}

.classified-price {
    font-family: 'Oswald', sans-serif;
    font-size: 1.7rem;
    line-height: 1;
}

.classified-store {
    font-family: 'Oswald', sans-serif;
    font-size: 0.98rem;
    font-weight: 700;
    text-align: right;
    text-transform: uppercase;
}

/* ======================================================
   RODAPÉ
   ====================================================== */

.footer {
    margin-top: 22px;
    background: var(--ink);
    color: #f2e8d0;
    padding: 14px 18px;
    display: flex;
    justify-content: space-between;
    gap: 20px;
    font-family: 'Oswald', sans-serif;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.footer a {
    color: inherit;
}

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

.empty {
    padding: 40px 20px;
    border: 2px dashed var(--line);
    text-align: center;
}

/* ======================================================
   MOBILE
   ====================================================== */

@media (max-width: 860px) {
    .newspaper {
        width: calc(100% - 20px);
        max-width: 420px;
        margin: 12px auto;
        padding: 18px;
    }

    .masthead {
        display: block;
        padding-bottom: 10px;
    }

    .stamp {
        display: none;
    }

    .brand {
        width: 100%;
        max-width: 100%;
        padding: 4px 0 10px;
        overflow: hidden;
    }

    .brand-logo {
        width: 100%;
        max-width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 3px;
        overflow: hidden;
    }

    .veio-logo {
        width: 38px;
        height: 38px;
        margin-right: 2px;
    }

    .jornal,
    .veio {
        font-size: clamp(1.65rem, 8.2vw, 2.35rem);
        line-height: 0.9;
        letter-spacing: -0.06em;
        white-space: nowrap;
    }

    .jornal {
        margin-right: -3px;
    }

    .veio {
        margin-left: -3px;
    }

    .do-circle {
        width: 26px;
        height: 26px;
        margin: 0 2px;
        transform: translateY(-1px);
    }

    .do-circle span {
        font-size: 0.64rem;
    }

    .brand p {
        margin-top: 10px;
        font-size: 0.78rem;
        letter-spacing: 0.16em;
    }

    .mobile-edition-bar {
        display: block;
        padding: 0px 4px;
        margin-top: 0px;
        text-align: center;
        font-family: 'Oswald', sans-serif;
        font-size: 0.78rem;
        line-height: 1.35;
        text-transform: uppercase;
    }

    .mobile-edition-bar div + div {
        margin-top: 3px;
    }

    .sections {
        display: flex;
    }

    .menu-principal {
        flex-wrap: wrap;
        justify-content: center;
        gap: 8px 14px;
        padding: 10px 0;
        margin-bottom: 14px;
    }

    .menu-principal a {
        padding: 3px 0;
        font-size: 0.82rem;
    }

    .menu-principal a:not(:last-child)::after {
        content: '';
        margin-left: 0;
    }

    .grid {
        grid-template-columns: minmax(0, 1fr);
        grid-template-areas:
            "lead"
            "sidebar"
            "quick"
            "community"
            "rumor"
            "date";
        gap: 18px;
    }

    .lead {
        padding-right: 0;
        padding-top: 18px;
    }

    .lead .label {
        margin-top: 0;
        margin-bottom: 18px;
    }

    .lead h2 {
        font-size: clamp(1.9rem, 9vw, 2.9rem);
    }

    .story-image.large {
        height: 260px;
    }

    .sidebar {
        max-width: 100%;
        padding-left: 0;
        border-left: 0;
        overflow-x: hidden;
    }

    .sidebar::before {
        display: none;
    }

    .more-news {
        padding-right: 0;
    }

    .more-news-grid {
        display: grid;
        grid-template-columns: minmax(0, 1fr);
        gap: 18px;
        width: 100%;
        max-width: 100%;
    }

    .feature-card,
    .feature-card a,
    .feature-card h3,
    .feature-card p {
        max-width: 100%;
        min-width: 0;
        overflow-wrap: anywhere;
    }

    .feature-card {
        width: 100%;
        overflow: hidden;
    }

    .story-image.feature {
        width: 100%;
        max-width: 100%;
        height: 150px;
        object-fit: cover;
    }

    .podcast-story a,
    .side-story a {
        grid-template-columns: 96px minmax(0, 1fr);
        gap: 10px;
    }

    .store-story a,
    .retro-mag-content {
        gap: 10px;
    }

    .story-image.podcast-thumb,
    .story-image.thumb {
        width: 96px;
        height: 96px;
    }

    .story-image.store-thumb,
    .retro-mag-cover {
        width: 90px;
    }

    .date-card {
        grid-template-columns: 96px minmax(0, 1fr);
        gap: 10px;
    }

    .date-card .story-image {
        width: 96px;
        height: 96px;
    }

    .community,
    .rumor,
    .date-card {
        width: 100%;
        max-width: 100%;
    }

    .retro-mag-info,
    .store-content,
    .side-story h3,
    .podcast-story h3,
    .store-story h3,
    .feature-card h3,
    .community h3,
    .rumor h3,
    .date-card h3 {
        min-width: 0;
        overflow-wrap: anywhere;
    }

    .footer {
        flex-direction: column;
    }

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

    .classified-title-row h2 {
        padding-right: 0;
        font-size: 1.55rem;
    }

    .classified-badge {
        position: static;
        display: inline-block;
        margin-bottom: 8px;
    }

    .classified-body {
        grid-template-columns: 110px minmax(0, 1fr);
        gap: 10px;
    }

    .classified-info p {
        font-size: 0.9rem;
    }

    .classified-footer {
        display: block;
    }

    .classified-price {
        display: block;
        margin-bottom: 6px;
        font-size: 1.45rem;
    }

    .classified-store {
        display: block;
        text-align: left;
    }
}

/* ======================================================
   AJUSTE DE ESPAÇAMENTO ENTRE MANCHETE E MAIS NOTÍCIAS
   ====================================================== */

@media (min-width: 861px) {
    .grid {
        grid-template-columns: minmax(0, 2fr) minmax(300px, 1.02fr);
        grid-template-areas:
            "lead sidebar"
            "quick sidebar"
            "community sidebar"
            "rumor sidebar"
            "date sidebar";
        grid-template-rows: min-content min-content min-content min-content min-content;
        column-gap: 18px;
        row-gap: 18px;
        align-items: start;
        align-content: start;
    }

    .lead,
    .more-news,
    .community,
    .rumor,
    .date-card,
    .sidebar {
        align-self: start;
        min-height: 0;
    }

    .more-news {
        height: auto;
        min-height: 0;
        padding-right: 18px;
    }

    .more-news-grid {
        height: auto;
        min-height: 0;
        align-items: start;
        align-content: start;
    }

    .feature-card {
        height: auto;
        min-height: 0;
    }

    .community,
    .rumor,
    .date-card {
        width: calc(100% - 18px);
        max-width: calc(100% - 18px);
    }

}

@media (max-width: 430px) {
    .classified-body {
        grid-template-columns: 1fr;
    }
}


/* ======================================================
   AJUSTES HEADER UNIFICADO — V2
   ====================================================== */

.top-promo-banner {
    margin-bottom: 12px;
}

@media (max-width: 860px) {
    .newspaper {
        padding-top: 14px;
    }

    .masthead {
        display: block;
        padding-bottom: 8px;
    }

    .stamp {
        display: none;
    }

    .brand {
        width: 100%;
        max-width: 100%;
        padding: 2px 0 8px;
        overflow: hidden;
    }

    .brand-logo {
        width: 100%;
        max-width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 3px;
        overflow: hidden;
    }

    .veio-logo {
        width: 38px;
        height: 38px;
        margin-right: 2px;
    }

    .jornal,
    .veio {
        font-size: clamp(1.65rem, 8.2vw, 2.35rem);
        line-height: 0.9;
        letter-spacing: -0.06em;
        white-space: nowrap;
    }

    .jornal {
        margin-right: -3px;
    }

    .veio {
        margin-left: -3px;
    }

    .do-circle {
        width: 26px;
        height: 26px;
        margin: 0 2px;
        transform: translateY(-1px);
    }

    .do-circle span {
        font-size: 0.64rem;
    }

    .brand p {
        margin-top: 9px;
        font-size: 0.78rem;
        letter-spacing: 0.16em;
    }

    .mobile-edition-bar {
        display: block;
        padding: 0px 4px;
        margin-top: 0px;
        text-align: center;
        font-family: 'Oswald', sans-serif;
        font-size: 0.82rem;
        line-height: 1.25;
        text-transform: uppercase;
    }

    .sections {
        display: flex;
    }

    .menu-principal {
        flex-wrap: wrap;
        justify-content: center;
        gap: 8px 14px;
        padding: 9px 0;
        margin-bottom: 10px;
    }

    .menu-principal a {
        padding: 3px 0;
        font-size: 0.82rem;
    }

    .menu-principal a:not(:last-child)::after {
        content: '';
        margin-left: 0;
    }

    .top-promo-banner {
        margin-bottom: 8px;
    }

    .lead {
        padding-top: 8px;
    }
}
