@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,500;0,600;1,500;1,600&display=swap');

:root {
    --nv-preto:       #0d0d0d;
    --nv-branco:      #ffffff;
    --nv-cinza:       #f4f4f2;
    --nv-cinza-esc:   #eae9e4;
    --nv-linha:       #e5e5e5;
    --nv-tinta:       #8b1e2b;
    --nv-texto:       #1a1a1a;
    --nv-texto-mid:   #555;
    --nv-texto-soft:  #888;
    --nv-container:   820px;
}


/* ============================================================================
   2. FUNDO DO SITE — branco em tudo que não for header nem footer
   ============================================================================ */

html,
body,
.site,
#page,
.wrapper,
.site-content,
.site-main,
.content-area,
.inside-article {
    background: var(--nv-branco);
    margin: 0;
    padding: 0;
}


/* ============================================================================
   3. HEADER — preto edge-to-edge
   ============================================================================ */

.site-header,
.site-header .inside-header {
    background: var(--nv-preto);
    border: none;
}

.site-header {
    width: 100%;
    max-width: 100%;
    padding: 0;
}

.site-header .inside-header {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0.75rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: auto;
}

.site-header .site-branding .main-title,
.site-header .site-branding .main-title a {
    color: var(--nv-branco);
    font-weight: 700;
    font-size: 1.5rem;
    letter-spacing: 0.02em;
    white-space: nowrap;
    text-decoration: none;
    line-height: 1;
}


/* ============================================================================
   4. NAVEGAÇÃO — hamburger branco, menu fullscreen
   ============================================================================ */

.main-navigation {
    background: transparent;
    margin: 0;
    padding: 0;
    min-height: auto;
    width: auto;
    position: static;
    border: none;
}

.main-navigation .inside-navigation {
    background: transparent;
    padding: 0;
    max-width: none;
}

.main-navigation .menu-toggle,
.main-navigation .menu-toggle:hover,
.main-navigation .menu-toggle:focus,
.main-navigation.toggled .menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem;
    background: transparent;
    color: var(--nv-branco);
    font-size: 0;
    border: none;
    cursor: pointer;
    line-height: 1;
}

.main-navigation .menu-toggle .mobile-menu {
    display: none;
    font-size: 0;
}

.main-navigation .menu-toggle svg,
.main-navigation .menu-toggle svg *,
.main-navigation .menu-toggle .gp-icon svg,
.main-navigation .menu-toggle .gp-icon svg * {
    fill: var(--nv-branco);
    stroke: var(--nv-branco);
    color: var(--nv-branco);
    width: 26px;
    height: 26px;
}

.main-navigation:not(.toggled) .main-nav {
    display: none;
}

.main-navigation.toggled .main-nav {
    display: block;
    position: fixed;
    top: 60px;
    left: 0;
    right: 0;
    background: var(--nv-preto);
    z-index: 9999;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    overflow-y: auto;
}

.main-navigation.toggled .main-nav > ul {
    display: flex;
    flex-direction: column;
    max-width: 1140px;
    margin: 0 auto;
    padding: 2rem;
    list-style: none;
    background: transparent;
}

.main-navigation.toggled .main-nav > ul > li {
    width: 100%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    background: transparent;
    white-space: nowrap;
}

.main-navigation.toggled .main-nav > ul > li:last-child {
    border-bottom: none;
}

.main-navigation.toggled .main-nav > ul > li > a {
    display: block;
    width: 100%;
    padding: 1.25rem 0;
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--nv-branco);
    background: transparent;
    letter-spacing: -0.02em;
    text-transform: none;
}

.main-navigation.toggled .main-nav > ul > li > a:hover {
    color: var(--nv-tinta);
    padding-left: 10px;
}

.main-navigation.toggled .menu-toggle {
    position: fixed;
    top: 12px;
    right: 2rem;
    z-index: 10000;
}

.admin-bar .main-navigation.toggled .menu-toggle {
    top: 44px;
}


/* ============================================================================
   5. LUPA E SLIDEOUT — removidos
   ============================================================================ */

.main-navigation .navigation-search,
.navigation-search,
.nav-search-enabled .main-nav ul li.search-item,
.main-navigation li.search-item,
.search-item,
button.search-item,
.site-header .search-form,
.site-header form[role="search"],
.slideout-navigation,
.slideout-overlay,
#generate-slideout-menu {
    display: none;
    visibility: hidden;
}


/* ============================================================================
   6. ÁREA DE CONTEÚDO — centralizada em 820px
   ============================================================================ */

.site-content {
    background: var(--nv-branco);
    max-width: 100%;
    padding: 3rem 1rem;
    margin: 0;
}

.site-content > .container,
.site-content .content-area,
.site-main {
    max-width: var(--nv-container);
    margin: 0 auto;
    background: transparent;
    box-shadow: none;
    border: none;
    padding: 0;
}


/* ============================================================================
   7. ABERTURA DA HOME — texto serif italic + foto editorial em duas colunas
   Em mobile vira coluna única (foto acima do texto)
   ============================================================================ */

.nv-abertura {
    display: grid;
    grid-template-columns: 1fr 240px;
    gap: 2.5rem;
    align-items: center;
    max-width: var(--nv-container);
    margin: 2rem auto 3rem;
    padding: 0 2rem;
    box-sizing: border-box;
}

.nv-abertura-texto {
    min-width: 0;
}

.nv-abertura-foto {
    width: 240px;
    height: 240px;
    flex-shrink: 0;
}

.nv-abertura-foto img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
    display: block;
}

.nv-eyebrow {
    font-family: 'Inter', 'Helvetica Neue', Helvetica, sans-serif;
    font-size: 0.7rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--nv-tinta);
    font-weight: 500;
    margin: 0 0 1.5rem;
    line-height: 1;
    position: relative;
    padding-left: 2.5rem;
}

.nv-eyebrow::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 1.75rem;
    height: 1px;
    background: var(--nv-tinta);
}

/* Frase de boas-vindas — Cormorant Garamond italic, editorial */
.nv-home-title {
    font-family: 'Cormorant Garamond', 'Times New Roman', serif;
    font-style: italic;
    font-size: clamp(2rem, 4.5vw, 3rem);
    font-weight: 500;
    line-height: 1.15;
    letter-spacing: -0.005em;
    color: var(--nv-preto);
    margin: 0 0 1.5rem;
}

.nv-home-lede {
    font-family: 'Sora', sans-serif;
    font-size: 1.15rem;
    font-weight: 400;
    line-height: 1.55;
    color: var(--nv-texto-mid);
    letter-spacing: -0.005em;
    margin: 0;
    max-width: 540px;
}


/* ============================================================================
   8. POSTS — listagem (home/categoria): cards com zebra
   ============================================================================ */

.site-main,
.site-main > *,
.content-area,
.content-area > * {
    display: block;
    grid-template-columns: none;
    columns: auto;
    column-count: auto;
}

.wp-block-latest-posts,
.wp-block-latest-posts.columns-2,
.wp-block-latest-posts.columns-3,
.wp-block-latest-posts.columns-4,
.is-grid,
.blog-grid,
.generate-columns-container {
    display: block;
    grid-template-columns: 1fr;
    columns: auto;
}

/* Cards de post na listagem (home, categoria) */
body:not(.single) .site-main article,
body:not(.single) .site-main .post,
body:not(.single) .site-main .inside-article,
body:not(.single) .wp-block-post {
    display: block;
    width: 100%;
    max-width: 100%;
    float: none;
    background: var(--nv-branco);
    border: 1px solid var(--nv-linha);
    border-radius: 16px;
    padding: 2.5rem 2rem;
    margin-bottom: 1.25rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.03);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

body:not(.single) .site-main article:hover,
body:not(.single) .site-main .post:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.06);
}

/* Zebra — posts pares ficam cinza (só na listagem) */
body:not(.single) .site-main article:nth-child(even),
body:not(.single) .site-main .post:nth-child(even) {
    background: var(--nv-cinza);
    border-color: var(--nv-cinza-esc);
}

.site-main article .inside-article {
    background: transparent;
    border: none;
    box-shadow: none;
    padding: 0;
    margin: 0;
}

/* Listagem SEM featured image — cards tipográficos limpos
   (home, categoria, tag) Featured image fica só no post individual */
body:not(.single) .post-image,
body:not(.single) .featured-image,
body:not(.single) .post-thumbnail,
body:not(.single) article .wp-post-image,
body:not(.single) .post-image-above-header,
body:not(.single) .featured-image.page-header-image-single {
    display: none;
}


/* ============================================================================
   9. POST INDIVIDUAL
   ============================================================================ */

/* Container do article single — flow vertical natural (sem grid) */
body.single .site-main article,
body.single .site-main .post,
body.single .site-main .inside-article {
    background: var(--nv-branco);
    border: none;
    border-radius: 0;
    padding: 0;
    margin: 0 0 2rem;
    box-shadow: none;
    transition: none;
}

body.single .site-main article:hover {
    transform: none;
    box-shadow: none;
}

/* Featured image como BANNER 21:9 acima do título */
body.single .featured-image,
body.single .post-image,
body.single .post-thumbnail,
body.single .featured-image.page-header-image-single {
    width: 100%;
    aspect-ratio: 21 / 9;
    margin: 0 0 2rem;
    padding: 0;
    border-radius: 8px;
    overflow: hidden;
    display: block;
}

body.single .featured-image img,
body.single .post-image img,
body.single .post-thumbnail img,
body.single .featured-image.page-header-image-single img {
    width: 100%;
    height: 100%;
    aspect-ratio: 21 / 9;
    object-fit: cover;
    display: block;
    margin: 0;
    border-radius: 8px;
}

/* Esconde container de featured image vazio (post sem foto) */
body.single .featured-image:empty,
body.single .post-image:empty,
body.single .post-thumbnail:empty {
    display: none;
}

/* Categoria com ÍCONE temático no post individual */
body.single .entry-categories,
body.single .post-categories,
body.single .cat-links {
    font-family: 'Inter', 'Helvetica Neue', Helvetica, sans-serif;
    font-size: 0.7rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--nv-tinta);
    font-weight: 500;
    margin: 0 0 1.5rem;
    line-height: 1;
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

body.single .entry-categories a,
body.single .post-categories a,
body.single .cat-links a {
    color: var(--nv-tinta);
    text-decoration: none;
}

body.single .entry-categories::before,
body.single .post-categories::before,
body.single .cat-links::before {
    content: '';
    display: inline-block;
    width: 14px;
    height: 14px;
    flex-shrink: 0;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

/* Experiências — taça */
body.single .cat-links:has(a[href*="experiencias"])::before {
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg' fill='none' stroke='%238b1e2b' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M8 3 C8 3 8 11 12 13 C16 11 16 3 16 3 L8 3 Z M12 13 L12 20 M8 20 L16 20'/%3E%3C/svg%3E");
}

/* Recomendações — estrela */
body.single .cat-links:has(a[href*="recomendacoes"])::before {
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg' fill='none' stroke='%238b1e2b' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolygon points='12 2 15 9 22 9 17 14 19 21 12 17 5 21 7 14 2 9 9 9'/%3E%3C/svg%3E");
}

/* Cultura do Vinho — livro */
body.single .cat-links:has(a[href*="cultura"])::before {
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg' fill='none' stroke='%238b1e2b' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 3 L20 3 L20 18 L12 21 L4 18 Z'/%3E%3Cline x1='12' y1='3' x2='12' y2='21'/%3E%3C/svg%3E");
}

/* Regiões — pino */
body.single .cat-links:has(a[href*="regioes"])::before {
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg' fill='none' stroke='%238b1e2b' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 2 C7 2 4 5 4 10 C4 15 12 22 12 22 C12 22 20 15 20 10 C20 5 17 2 12 2 Z'/%3E%3Ccircle cx='12' cy='10' r='3'/%3E%3C/svg%3E");
}

/* Cabeçalho do post — título acima da meta, flow vertical natural
   Banner está acima (full width), título logo abaixo */
body.single .entry-header {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin: 0 0 2.5rem;
    padding: 0;
    border: none;
}

/* Título */
body.single .entry-title {
    font-family: 'Sora', sans-serif;
    font-weight: 700;
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    line-height: 1.15;
    letter-spacing: -0.025em;
    color: var(--nv-preto);
    margin: 0;
}

/* Meta (data + autor) */
body.single .entry-meta {
    font-family: 'Inter', 'Helvetica Neue', Helvetica, sans-serif;
    font-size: 0.85rem;
    color: var(--nv-texto-soft);
    margin: 0;
    padding: 0;
    float: none;
    text-align: left;
    line-height: 1.4;
}

body.single .entry-meta a {
    color: var(--nv-tinta);
    text-decoration: none;
    font-weight: 500;
}

/* FICHA DO VINHO — box cinza com fita bordô */
.nv-ficha {
    background: var(--nv-cinza);
    border-radius: 8px;
    padding: 1.75rem 1.75rem 1.75rem 2rem;
    margin: 0 0 2.5rem;
    position: relative;
    overflow: hidden;
}

.nv-ficha::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 4px;
    background: var(--nv-tinta);
}

.nv-ficha-header {
    font-family: 'Inter', 'Helvetica Neue', Helvetica, sans-serif;
    font-size: 0.65rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--nv-texto-soft);
    font-weight: 500;
    margin: 0 0 1.25rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid var(--nv-cinza-esc);
}

.nv-ficha-row {
    display: grid;
    grid-template-columns: 120px 1fr;
    gap: 1rem;
    padding: 0.65rem 0;
    border-bottom: 1px solid var(--nv-cinza-esc);
    align-items: baseline;
}

.nv-ficha-row:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.nv-ficha-label {
    font-family: 'Inter', 'Helvetica Neue', Helvetica, sans-serif;
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--nv-texto-soft);
    font-weight: 500;
}

.nv-ficha-value {
    font-family: 'Sora', sans-serif;
    font-size: 0.95rem;
    color: var(--nv-preto);
    font-weight: 500;
    letter-spacing: -0.01em;
    line-height: 1.35;
}

.nv-ficha-carater {
    font-family: 'Sora', sans-serif;
    font-size: 0.95rem;
    color: var(--nv-tinta);
    font-weight: 600;
    font-style: italic;
    letter-spacing: -0.01em;
}

/* CORPO DO POST — Sora generoso */
body.single .entry-content {
    font-family: 'Sora', sans-serif;
    font-size: 1.05rem;
    line-height: 1.75;
    color: var(--nv-texto);
    letter-spacing: -0.005em;
}

body.single .entry-content p {
    margin: 0 0 1.5rem;
}

body.single .entry-content h2 {
    font-family: 'Sora', sans-serif;
    font-weight: 700;
    font-size: 1.5rem;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: var(--nv-preto);
    margin: 2.5rem 0 1.5rem;
}

body.single .entry-content h3 {
    font-family: 'Sora', sans-serif;
    font-weight: 600;
    font-size: 1.25rem;
    line-height: 1.25;
    color: var(--nv-preto);
    margin: 2rem 0 1rem;
}

body.single .entry-content a {
    color: var(--nv-tinta);
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-color 0.2s;
}

body.single .entry-content a:hover {
    border-bottom-color: var(--nv-tinta);
}

/* Imagens dentro do conteúdo */
body.single .entry-content img,
body.single .entry-content .wp-block-image img {
    max-width: 100%;
    height: auto;
    max-height: 70vh;
    object-fit: contain;
    display: block;
    margin: 2rem auto;
    border-radius: 4px;
}

/* IMAGEM ESPECIAL: garrafa/rótulo final em 300×300 centralizada
   Padrão minimalista — foto pequena, centralizada, fechamento elegante */
body.single .entry-content figure.nv-bottle {
    text-align: center;
    margin: 2.5rem 0 2rem;
    width: 100%;
}

body.single .entry-content img.nv-bottle,
body.single .entry-content figure.nv-bottle img {
    width: 300px;
    max-width: 100%;
    height: 300px;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    max-height: none;
    margin: 0 auto;
    border-radius: 4px;
    display: block;
}

@media (max-width: 480px) {
    body.single .entry-content img.nv-bottle,
    body.single .entry-content figure.nv-bottle img {
        width: 260px;
        height: 260px;
    }
}

/* TAGS no final do post */
body.single .entry-footer,
body.single .post-tags {
    margin: 2.5rem 0 0;
    padding-top: 1.5rem;
    border-top: 1px solid var(--nv-linha);
    font-size: 0.875rem;
}

body.single .entry-footer .tags-links,
body.single .post-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

body.single .entry-footer .tags-links a,
body.single .post-tags a {
    display: inline-block;
    font-family: 'Inter', 'Helvetica Neue', Helvetica, sans-serif;
    font-size: 0.65rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--nv-texto-mid);
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 0.85rem;
    border: 1px solid var(--nv-linha);
    border-radius: 999px;
    background: var(--nv-branco);
    transition: all 0.2s ease;
}

body.single .entry-footer .tags-links a:hover,
body.single .post-tags a:hover {
    color: var(--nv-branco);
    background: var(--nv-preto);
    border-color: var(--nv-preto);
}


/* ============================================================================
   10. FOOTER — cinza zebra + aviso 18+
   ============================================================================ */

.site-info,
.inside-site-info,
footer.site-info,
#footer-widgets,
.footer-widgets,
.footer-widgets-container {
    display: none;
    visibility: hidden;
    height: 0;
    padding: 0;
    margin: 0;
    border: none;
}

.nv-footer {
    display: block;
    background: var(--nv-cinza);
    border-top: none;
    padding: 4rem 1rem 2.5rem;
    margin-top: 4rem;
    width: 100%;
}

.nv-footer-inner {
    max-width: var(--nv-container);
    margin: 0 auto;
    padding: 0 1rem;
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.nv-footer-block {
    padding-bottom: 2.5rem;
    border-bottom: 1px solid var(--nv-cinza-esc);
}

.nv-footer-block:last-of-type {
    border-bottom: 1px solid var(--nv-cinza-esc);
    padding-bottom: 2.5rem;
}

.nv-footer-eyebrow {
    font-family: 'Inter', 'Helvetica Neue', Helvetica, sans-serif;
    font-size: 0.7rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--nv-tinta);
    font-weight: 500;
    margin: 0 0 1rem;
    line-height: 1;
    position: relative;
    padding-left: 2.5rem;
}

.nv-footer-eyebrow::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 1.75rem;
    height: 1px;
    background: var(--nv-tinta);
}

.nv-footer-manifesto {
    font-family: 'Sora', sans-serif;
    font-size: 1.1rem;
    font-weight: 400;
    line-height: 1.55;
    color: var(--nv-texto);
    letter-spacing: -0.01em;
    margin: 0;
    max-width: 520px;
}

.nv-footer-label {
    font-family: 'Inter', 'Helvetica Neue', Helvetica, sans-serif;
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--nv-texto-soft);
    font-weight: 500;
    margin: 0 0 1.25rem;
    line-height: 1;
}

.nv-footer-nav {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem 2rem;
}

.nv-footer-nav li {
    margin: 0;
}

.nv-footer-nav a {
    font-family: 'Sora', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--nv-preto);
    text-decoration: none;
    letter-spacing: -0.015em;
    transition: color 0.2s;
    border-bottom: none;
}

.nv-footer-nav a:hover {
    color: var(--nv-tinta);
}

.nv-footer-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    line-height: 1;
    padding: 0;
    margin: 0;
}

.nv-footer-tags a,
.nv-footer-tags .nv-tag {
    display: inline-block;
    font-family: 'Inter', 'Helvetica Neue', Helvetica, sans-serif;
    font-size: 0.7rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--nv-texto-mid);
    text-decoration: none;
    font-weight: 500;
    padding: 0.55rem 0.9rem;
    margin: 0;
    border: 1px solid var(--nv-linha);
    border-radius: 999px;
    background: var(--nv-branco);
    transition: all 0.2s ease;
    white-space: nowrap;
    line-height: 1;
}

.nv-footer-tags a:hover,
.nv-footer-tags .nv-tag:hover {
    color: var(--nv-branco);
    background: var(--nv-preto);
    border-color: var(--nv-preto);
}

.nv-footer-bottom {
    padding-top: 2rem;
    border-top: none;
    margin-top: 0;
}

.nv-footer-bottom p {
    font-family: 'Inter', 'Helvetica Neue', Helvetica, sans-serif;
    font-size: 0.8rem;
    color: var(--nv-texto-soft);
    margin: 0;
    letter-spacing: 0.02em;
}

/* Aviso 18+ no rodapé — discreto, legível */
.nv-footer-aviso {
    font-family: 'Inter', 'Helvetica Neue', Helvetica, sans-serif;
    font-size: 0.7rem;
    color: var(--nv-texto-soft);
    margin: 0.75rem 0 0;
    line-height: 1.5;
    letter-spacing: 0.02em;
    max-width: 540px;
}


/* ============================================================================
   11. RESPONSIVO — tablet e mobile
   ============================================================================ */

@media (max-width: 1024px) {
    .site-header .inside-header {
        padding: 0.6rem 1.25rem;
    }

    .site-header .site-branding .main-title,
    .site-header .site-branding .main-title a {
        font-size: 1.2rem;
    }
}

@media (max-width: 768px) {
    .site-content {
        padding: 2rem 1rem;
    }

    body:not(.single) .site-main article,
    body:not(.single) .site-main .post {
        padding: 1.75rem 1.5rem;
        border-radius: 12px;
    }

    body:not(.single) .entry-title {
        font-size: 1.5rem;
    }

    /* Abertura no mobile vira coluna única, foto vai pra cima */
    .nv-abertura {
        grid-template-columns: 1fr;
        gap: 1.75rem;
        padding: 0 1rem;
    }

    .nv-abertura-foto {
        width: 200px;
        height: 200px;
        order: -1;
        justify-self: center;
    }

    .nv-home-lede {
        font-size: 1.05rem;
    }

    /* Post individual no mobile: banner mantém 21:9 mas mais baixo
       Título e meta seguem flow vertical natural */
    body.single .featured-image,
    body.single .post-image,
    body.single .post-thumbnail {
        margin-bottom: 1.5rem;
        border-radius: 6px;
    }

    body.single .entry-title {
        font-size: 1.75rem;
    }

    .nv-ficha-row {
        grid-template-columns: 1fr;
        gap: 0.25rem;
    }

    .admin-bar .main-navigation.toggled .menu-toggle {
        top: 62px;
    }

    .nv-footer {
        padding: 3rem 1rem 2rem;
        margin-top: 3rem;
    }

    .nv-footer-inner {
        gap: 2rem;
        padding: 0;
    }

    .nv-footer-block {
        padding-bottom: 2rem;
    }

    .nv-footer-manifesto {
        font-size: 1rem;
    }

    .nv-footer-nav {
        flex-direction: column;
        gap: 0.75rem;
    }

    .nv-footer-nav a {
        font-size: 1rem;
    }

    .nv-footer-aviso {
        font-size: 0.65rem;
        max-width: 100%;
    }

    .nv-footer-aviso br {
        display: none;
    }
}

@media (max-width: 480px) {
    .site-header .inside-header {
        padding: 0.5rem 1rem;
    }

    .site-header .site-branding .main-title,
    .site-header .site-branding .main-title a {
        font-size: 1.05rem;
    }

    .site-content {
        padding: 1.5rem 0.75rem;
    }

    body:not(.single) .site-main article,
    body:not(.single) .site-main .post {
        padding: 1.5rem 1.25rem;
    }

    body:not(.single) .entry-title {
        font-size: 1.35rem;
    }

    .main-navigation .menu-toggle svg {
        width: 22px;
        height: 22px;
    }

    .main-navigation.toggled .main-nav > ul > li > a {
        font-size: 1.5rem;
    }

    .nv-abertura {
        padding: 0 0.75rem;
    }

    .nv-abertura-foto {
        width: 160px;
        height: 160px;
    }

    .nv-eyebrow,
    .nv-footer-eyebrow {
        font-size: 0.65rem;
    }

    .nv-footer-eyebrow {
        padding-left: 2rem;
    }

    .nv-footer-eyebrow::before {
        width: 1.5rem;
    }

    body.single .entry-title {
        font-size: 1.5rem;
    }

    body.single .entry-content {
        font-size: 1rem;
    }

    .nv-footer {
        padding: 2.5rem 0.75rem 1.5rem;
    }

    .nv-footer-label {
        font-size: 0.65rem;
    }
}


/* ============================================================================
   12. LIMPEZA — resíduos de templates antigos
   ============================================================================ */

.page-title,
.archive-header,
.page-header-image,
.wp-block-archive-title,
.wp-block-query-title,
body.home .page-title,
.site-main > .navigation.pagination:first-child,
.site-main > nav.pagination:first-child {
    display: none;
}

.site-logo:empty,
.custom-logo-link:empty,
.site-branding .site-logo:empty,
.site-branding-wrapper .site-logo:empty,
.widget-area:empty,
.sidebar:empty,
body.home > .site > aside {
    display: none;
    border: none;
    width: 0;
    padding: 0;
    margin: 0;
}

img[src=""],
img:not([src]),
.site-branding img[alt="Craft"],
.site-branding img[alt="CRAFT"],
[class*="craft"],
[class*="Craft"],
[class*="CRAFT"] {
    display: none;
}

.sidebar,
aside.sidebar,
.widget-area,
body > div,
.site,
#page,
.wrapper {
    border-left: none;
    border-right: none;
}


/* ============================================================================
   13. AJUSTES FINAIS — categoria, data e nota de revisão
   ============================================================================ */

/* Esconde ícone padrão do GeneratePress na categoria do post
   Mantém apenas o ícone temático personalizado (taça/estrela/livro/pino) */
body.single .cat-links .gp-icon,
body.single .entry-categories .gp-icon,
body.single .post-categories .gp-icon,
body.single .cat-links svg,
body.single .entry-categories svg,
body.single .post-categories svg,
body.single .cat-links .icon-categories,
body.single .entry-categories .icon-categories {
    display: none;
}

/* Resolve data duplicada — mostra só a data de publicação,
   esconde a data de modificação (que aparece colada no HTML) */
body.single .entry-meta .posted-on time.updated {
    display: none;
}

/* Nota de revisão ao final do post (.nv-revisao)
   Texto em itálico discreto, separado do conteúdo por linha sutil */
.nv-revisao {
    font-family: 'Inter', 'Helvetica Neue', Helvetica, sans-serif;
    font-size: 0.85rem;
    color: var(--nv-texto-soft);
    border-top: 1px solid var(--nv-linha);
    padding-top: 1.5rem;
    margin-top: 2rem;
    line-height: 1.5;
}

.nv-revisao em {
    font-style: italic;
}

.nv-revisao a {
    color: var(--nv-tinta);
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-color 0.2s;
}

.nv-revisao a:hover {
    border-bottom-color: var(--nv-tinta);
}