:root {
    --clr-accent: #DE7356; /* Preto Vercel padrão (mude se quiser cor) #DE7356 */
    --clr-text: #404040;
    --clr-bg: #ffffff;
    --clr-border: #eaeaea;
    --font-main: 'Geist', sans-serif;
    
    --header-height: 70px;
    --sidebar-width: 300px;
    --radius: 6px;
	
	/* Layout */
    --container-width: 1140px;
    --header-height: 80px;
	
	--sidebar-width: 365px;
}

/* Reset Básico */
* { box-sizing: border-box; margin: 0; padding: 0; }
body { font-family: system-ui, -apple-system, sans-serif; color: var(--clr-text); line-height: 1.6; }
img { max-width: 100%; height: auto; }
a { color: var(--clr-accent); text-decoration: none; }



/* Container Utilitário */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 1rem;
}

body {
    font-family: var(--font-main);
    color: var(--clr-text);
    background: var(--clr-bg);
    overflow-x: hidden; /* Evita scroll horizontal na animação */
}

/* --- Header Vercel Style --- */
.site-header {
    background-color: var(--clr-accent);
    color: #fff;
    /* Altura Padrão */
    height: 70px; 
    display: flex;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 100;
    /* Animação Suave */
    transition: height 0.3s ease, background-color 0.3s ease, box-shadow 0.3s ease;
}

/* Classe adicionada via JS ao rolar */
.site-header.is-scrolled {
    height: 50px; /* Altura Reduzida */
    box-shadow: 0 4px 10px rgba(0,0,0,0.1); /* Sombra suave quando flutuar */
}

.header-grid {
    display: grid;
    grid-template-columns: 50px 1fr 50px; /* Esquerda fixa, Centro flex, Direita fixa */
    align-items: center;
    width: 100%;
}

.header-center {
    text-align: center;
    display: flex;
    justify-content: center;
}

/* Ajuste da Logo para acompanhar a redução */
.custom-logo-link img {
    max-height: 40px; /* Altura normal */
    width: auto;
    transition: max-height 0.3s ease;
}
.site-header.is-scrolled .custom-logo-link img {
    max-height: 30px; /* Logo reduzida no scroll */
}

/* --- Títulos (Header e Footer) --- */
.site-title-text,
.footer-site-title {
    color: #fff;
    font-weight: 300!important; /* Mais fino como pediu */
    text-transform: uppercase; /* Caixa Alta */
    letter-spacing: 1px; /* Espaçamento chique */
    font-size: 1.5rem!important;
}

/* --- Botão Menu com Texto --- */
.btn-toggle-menu {
    background: transparent;
    border: none;
    color: #fff;
    cursor: pointer;
    padding: 8px;
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    gap: 10px; /* Espaço entre ícone e texto */
    transition: background 0.2s;
}

.btn-toggle-menu:hover {
    background: rgba(255,255,255, 0.1);
}

.btn-close-menu {
    background: transparent;
    border: none;
    color: var(--clr-text);
    cursor: pointer;
    padding: 4px;
}

/* Overlay (Fundo escuro) */
.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.4);
    z-index: 150;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease;
    backdrop-filter: blur(2px);
}

.menu-overlay.is-active {
    opacity: 1;
    visibility: visible;
}

.menu-label {
    display: none; /* Escondido por padrão (Mobile) */
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.sidebar-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: var(--sidebar-width);
    height: 100vh;
    background: #fff;
    z-index: 200;
    transform: translateX(-100%);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    border-right: 1px solid var(--clr-border);
    display: flex;
    flex-direction: column;
}

.sidebar-menu.is-active {
    transform: translateX(0);
}

/* Header da Sidebar */
.sidebar-header {
    height: var(--header-height);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 1.5rem;
    border-bottom: 1px solid var(--clr-border);
    flex-shrink: 0;
}

.sidebar-title {
    font-weight: 600;
    color: var(--clr-text);
}

/* Botão Fechar */
.btn-close-menu {
    background: transparent;
    border: none;
    color: var(--clr-text);
    cursor: pointer;
    padding: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Área de Navegação */
.sidebar-nav {
    padding: 0;
    overflow-y: auto;
    flex-grow: 1;
}

.sidebar-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

/* Item da Lista (Bloco Sólido) */
.sidebar-list li {
    margin: 0;
    border-bottom: 1px solid var(--clr-border);
}

.sidebar-list a {
    display: flex; /* Mantém flex para centralizar o texto verticalmente */
    align-items: center;
    width: 100%;
    padding: 1.2rem 1.5rem;
    color: var(--clr-text);
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    transition: background 0.2s, color 0.2s;
}

/* Hover Effect: Apenas fundo e cor */
.sidebar-list a:hover {
    background-color: #fafafa;
    color: var(--clr-accent);
}

/* Links ativos (página atual) */
.sidebar-list .current-menu-item a {
    background-color: #f0f0f0;
    font-weight: 600;
    color: var(--clr-accent);
}

/* Mobile */
@media (max-width: 768px) {
    .sidebar-menu {
        width: 100%;
        max-width: 100vw;
    }
    
    .sidebar-list a {
        padding: 1.5rem; 
        font-size: 1.1rem;
    }
}

/* --- Main Layout --- */
.site-main {
    padding: 3rem 0;
}

.page-header {
    margin-bottom: 2rem;
    text-align: center;
}

/* --- Post Grid System --- */
.post-grid {
    display: grid;
    /* Grid responsivo automático: cria colunas de min 300px */
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
}

/* --- Card Styles --- */
.post-card {
    background: #fff;
    border: 1px solid #eaeaea;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    display: flex;
    flex-direction: column;
}

.post-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
}

.post-thumbnail-link {
    display: block;
    height: 200px; /* Altura fixa para alinhar cards */
    overflow: hidden;
}

.post-image {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Garante que a imagem preencha sem distorcer */
    transition: transform 0.3s ease;
}

.post-card:hover .post-image {
    transform: scale(1.05);
}

.post-content {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1; /* Empurra o conteúdo para preencher o card */
}

.post-meta {
    font-size: 0.85rem;
    margin-bottom: 0.5rem;
}
.post-meta a { color: #888; }

.entry-title {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

.entry-title a {
    color: var(--clr-text);
}

.entry-title a:hover {
    color: var(--clr-accent);
}

.entry-excerpt {
    font-size: 0.95rem;
    color: #666;
    margin-bottom: 1.5rem;
    flex-grow: 1; /* Mantém o botão alinhado embaixo */
}

/* Botão com a cor de acento */
.btn-read-more {
    display: inline-block;
    color: var(--clr-accent);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.8rem;
    margin-top: auto; /* Empurra para o fundo do flex container */
}

/* --- Pagination --- */
.pagination {
    margin-top: 3rem;
    display: flex;
    justify-content: center;
    gap: 0.5rem;
}
.pagination .page-numbers {
    padding: 0.5rem 1rem;
    border: 1px solid #ddd;
    color: var(--clr-text);
    border-radius: 4px;
}
.pagination .current {
    background-color: var(--clr-accent);
    color: #fff;
    border-color: var(--clr-accent);
}

/* --- Footer Styles --- */
.site-footer {
    background-color: var(--clr-accent);
    color: #fff;
    padding-top: 4rem;
    padding-bottom: 2rem;
    margin-top: auto; /* Garante que fique no fundo mesmo com pouco conteúdo */
    text-align: center;
}

/* Área Superior (Logo + Menu) */
.footer-top {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    margin-bottom: 3rem;
}

/* Logo adjustments for Footer */
.footer-branding .custom-logo-link img {
    max-height: 50px;
    width: auto;
    /* Truque: Se sua logo for PRETA, isso a torna BRANCA. 
       Se sua logo já for colorida/branca, remova a linha abaixo. */
    filter: brightness(0) invert(1); 
    opacity: 0.9;
}

.footer-site-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
}

/* Menu Horizontal */
.footer-menu-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem 2.5rem; /* Gap vertical e horizontal */
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-menu-list a {
    color: rgba(255, 255, 255, 0.7); /* Branco suave */
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.2s ease;
}

.footer-menu-list a:hover {
    color: #fff; /* Branco total no hover */
}

/* Linha Divisória */
.footer-divider {
    width: 100%;
    height: 1px;
    background-color: rgba(255, 255, 255, 0.15); /* Linha sutil */
    margin-bottom: 2rem;
}

/* Copyright */
.footer-bottom {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
}

/* --- HERO SECTION LAYOUT --- */
.hero-news-section {
    padding-bottom: 3rem;
    border-bottom: 1px solid var(--clr-border);
    margin-bottom: 3rem;
}

.ratio-16-9 {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    border-radius: var(--radius);
    background-color: #f0f0f0;
    position: relative;
}

.ratio-16-9 img, .ratio-16-9 .img-cover {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
    display: block;
}

.ratio-16-9:hover img, .ratio-16-9:hover .img-cover {
    transform: scale(1.03);
}

/* --- GRID SYSTEM (DESKTOP) --- */
.hero-top-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr; /* Coluna Imagem vs Coluna Texto */
    gap: 0 2.5rem; /* Gap horizontal apenas */
    margin-bottom: 2.5rem;
    
    /* DEFINIÇÃO DAS ÁREAS */
    grid-template-areas: 
        "area-img area-title"
        "area-img area-list";
    /* A linha do titulo se ajusta ao conteudo, a lista pega o resto */
    grid-template-rows: min-content 1fr; 
}

/* Atribuindo as áreas */
.hero-area-image { grid-area: area-img; }
.hero-area-title { grid-area: area-title; }
.hero-area-list  { grid-area: area-list; align-self: end; } /* Lista alinhada ao fundo da imagem */

/* Estilos Título Principal */
.accent-mark {
    display: block;
    width: 40px;
    height: 6px;
    background-color: var(--clr-accent);
    margin-bottom: 1rem;
    border-radius: 2px;
}

.hero-title-main {
    font-size: 2.2rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1rem;
    letter-spacing: -0.03em;
}

.hero-title-main a { color: var(--clr-text); }
.hero-title-main a:hover { color: var(--clr-accent); }

.hero-excerpt {
    font-size: 1.05rem;
    color: #666;
    line-height: 1.5;
    margin-bottom: 1.5rem;
}

.desktop-divider {
    width: 100%;
    height: 1px;
    background: var(--clr-border);
    margin-bottom: 1.5rem;
}

/* Estilos Lista Secundária */
.hero-mini-card {
    border-bottom: 1px solid #f0f0f0;
    padding-bottom: 1rem;
    margin-bottom: 1rem;
}
.hero-mini-card:last-child { border: none; margin: 0; padding: 0; }

.mini-card-content { display: flex; align-items: flex-start; gap: 10px; }
.mini-icon {
    color: var(--clr-accent);
    width: 20px;
    height: 20px;
    margin-top: 5px;
    flex-shrink: 0;
}
.hero-title-mini {
    font-size: 1.2rem;
    font-weight: 600;
    line-height: 1.35;
    margin: 0;
}
.hero-title-mini a { color: var(--clr-text); }
.hero-title-mini a:hover { color: var(--clr-accent); }


/* --- GRID INFERIOR (Posts 4, 5, 6) --- */
.hero-bottom-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--clr-border);
}

.hero-grid-card {
    display: flex;
    flex-direction: column-reverse; /* Inverte: Imagem vai pro topo, Titulo pra baixo */
    
    /* ADICIONE ISSO: */
    justify-content: flex-end; /* Força o alinhamento ao topo visual (fim do eixo reverso) */
}

.hero-grid-card .grid-content { margin-top: 1rem; margin-bottom: 0; }
.hero-grid-card .grid-img-wrap { margin-bottom: 0; }

.accent-mark-small {
    display: block;
    width: 20px;
    height: 4px;
    background-color: var(--clr-accent);
    margin-bottom: 0.5rem;
    border-radius: 2px;
}
.hero-title-grid {
    font-size: 1.1rem;
    font-weight: 600;
    line-height: 1.3;
}
.hero-title-grid a { color: var(--clr-text); }

/* --- LATEST NEWS LIST (Grid 2 Colunas) --- */
.latest-news-section {
    padding-bottom: 4rem;
}
/* --- LATEST NEWS LIST (Ajustes) --- */
.latest-news-section {
    padding-bottom: 0rem;
    margin-top: 2rem; /* Espaço para desgrudar do Hero */
}

/* Removemos .section-heading e .img-corner-tag pois você pediu para tirar */

.latest-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem 3rem;
}

.latest-card {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #f0f0f0;
}

.latest-img-wrap {
    flex-shrink: 0;
    width: 140px;
    height: 95px;
    border-radius: var(--radius);
    overflow: hidden;
    background: #eee;
}

.latest-thumb {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
    display: block;
}

.latest-card:hover .latest-thumb {
    transform: scale(1.05);
}

/* Conteúdo ajustado para o traço ficar embaixo */
.latest-content {
    flex-grow: 1;
    display: flex;
    flex-direction: column; /* Importante para empilhar Título e Traço */
}

.latest-title {
    font-size: 1.05rem;
    font-weight: 600;
    line-height: 1.4;
    margin: 0;
}

.latest-title a { color: var(--clr-text); }
.latest-title a:hover { color: var(--clr-accent); }

/* Reutilizando a classe accent-mark-small que já existe */
.accent-mark-small {
    display: block;
    width: 25px;
    height: 4px;
    background-color: var(--clr-accent);
    border-radius: 2px;
}

/* --- Botão Load More (Estilo Sólido & Espaçado) --- */
.load-more-container {
    text-align: center;
    margin-top: 3rem; /* Aumentei bastante (era 3rem) para desgrudar das notícias */
    margin-bottom: 3rem;
}

.btn-load-more {
    background-color: var(--clr-accent); /* Fundo Vermelho (sua cor accent) */
    color: #fff; /* Texto Branco */
    cursor: pointer;
    display: inline-block;
    padding: 1rem 3.5rem; /* Mais largo e alto para dar imponência */
    border: 2px solid var(--clr-accent); /* Borda da mesma cor */
    border-radius: 50px; /* Pill shape (pílula) */
    font-weight: 600;
    font-family: var(--font-main);
    font-size: 0.95rem;
    text-transform: uppercase; /* Opcional: deixa mais pro estilo "botão de ação" */
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1); /* Sombra leve para destacar do fundo */
}

/* Hover: Inverte as cores (Fundo Branco, Texto Vermelho) */
.btn-load-more:hover {
    background-color: transparent;
    color: var(--clr-accent);
    transform: translateY(-2px); /* Leve subidinha ao passar o mouse */
    box-shadow: 0 6px 12px rgba(0,0,0,0.15);
}

/* --- RESPONSIVIDADE (MOBILE OTIMIZADO) --- */
@media (max-width: 900px) {
    
    /* 1. Container Principal */
    .hero-top-grid {
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
    }

    /* 2. Ordem: Título -> Imagem -> Lista */
    .hero-area-title { order: 1; }
    .hero-area-image { order: 2; }
    .hero-area-list  { order: 3; }

    /* 3. Título Principal */
    .hero-area-title {
        display: flex;
        flex-direction: column;
    }

    .hero-title-main {
        order: 1;
        font-size: 1.6rem;
        line-height: 1.2;
        margin-bottom: 0.5rem;
    }

    /* Traço colorido abaixo do título */
    .hero-area-title .accent-mark {
        order: 2;
        margin-bottom: 0.5rem;
        width: 30px;
        height: 4px;
    }

    .hero-excerpt, .desktop-divider { display: none; }

    /* 4. Imagem Full Width */
    .hero-area-image {
        margin-left: -1rem; 
        margin-right: -1rem;
        width: calc(100% + 2rem);
        margin-bottom: 0;
    }
    
    .hero-area-image .ratio-16-9 { border-radius: 0; }

    /* 5. Lista Secundária (CORREÇÃO DO DIVISOR) */
    .hero-area-list {
        order: 3;
        width: 100%;
        align-self: stretch;
    }

    .secondary-posts-list {
        display: flex;
        flex-direction: column;
        gap: 0;
        width: 100%;
    }

    .hero-mini-card {
        padding: 1rem 0rem 1rem 0rem; 
        margin: 0;
        border-bottom: 1px solid #e5e5e5;
        width: 100%;
    }
    
    .hero-mini-card:last-child {
        border-bottom: none;
        padding-top: 1rem;
    }

    .mini-card-content {
        margin-left: 0;
        padding-left: 0;
        gap: 12px;
        display: flex;
        align-items: flex-start;
    }

    .hero-title-mini {
        font-size: 1.1rem;
        line-height: 1.4; /* Melhora leitura */
    }

    /* --- GRID DE BAIXO (CORREÇÃO DEFINITIVA DO TRAÇO) --- */
    .hero-bottom-row {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding-top: 2rem;
    }

    .hero-grid-card {
        flex-direction: column; /* Imagem embaixo */
    }

    .hero-grid-card .grid-content {
        display: flex;
        /* TRUQUE: Inverte a ordem visual. O que é HTML #1 vira visual #2 */
        flex-direction: column-reverse; 
        margin-bottom: 0.8rem;
        margin-top: 0;
    }

    /* Ajuste de margens pois invertemos a ordem */
    .hero-title-grid {
        font-size: 1.25rem;
        margin-bottom: 0; /* Título fica em cima, sem margem pra baixo necessária */
    }

    .accent-mark-small {
        margin-bottom: 0; 
        margin-top: 0.5rem; /* Margem passa a ser no topo, pois ele está visualmente embaixo */
        width: 30px;
    }
    
    .hero-grid-card .grid-img-wrap {
        border-radius: var(--radius);
        width: 100%; 
        margin-left: 0;
    }
	
	/* --- LATEST NEWS MOBILE --- */
	.latest-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    .latest-img-wrap {
        width: 120px; 
        height: 80px;
    }
    
    .latest-img-wrap {
        width: 120px; /* Levemente menor no mobile */
        height: 80px;
    }
    
    .section-heading {
        margin-top: 2rem; /* Espaço extra do bloco anterior */
    }
}

/* --- SEARCH SPOTLIGHT MODAL --- */

/* Botão Lupa no Header */
.header-end {
    display: flex;
    justify-content: flex-end;
}
.btn-search-trigger {
    background: transparent;
    border: none;
    color: #fff;
    cursor: pointer;
    padding: 8px;
    border-radius: var(--radius);
    transition: background 0.2s;
}
.btn-search-trigger:hover {
    background: rgba(255,255,255,0.1);
}

/* Overlay (Fundo) */
.search-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(5px); /* Efeito Blur do Mac */
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.2s ease;
    display: flex;
    justify-content: center;
    align-items: flex-start; /* Alinha ao topo, não centro */
    padding-top: 15vh; /* Distância do topo */
}

.search-overlay.is-active {
    opacity: 1;
    visibility: visible;
}

/* O Modal em Si */
.search-modal {
    width: 100%;
    max-width: 660px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    overflow: hidden;
    transform: scale(0.95);
    transition: transform 0.2s ease;
    margin: 0 1rem; /* Margem lateral no mobile */
}

.search-overlay.is-active .search-modal {
    transform: scale(1);
}

/* Header do Modal (Input) */
.search-header {
    display: flex;
    align-items: center;
    padding: 1rem 1.5rem;
    border-bottom: 1px solid var(--clr-border);
    gap: 1rem;
}

.search-input-icon {
    color: #999;
    width: 20px;
}

#search-input {
    flex-grow: 1;
    border: none;
    font-size: 1.2rem;
    font-family: var(--font-main);
    color: var(--clr-text);
    outline: none;
    background: transparent;
}

.btn-close-search {
    background: #f0f0f0;
    border: none;
    padding: 0.3rem 0.6rem;
    border-radius: 4px;
    font-size: 0.75rem;
    color: #666;
    font-weight: 600;
    cursor: pointer;
}

/* Lista de Resultados */
.search-results-container {
    max-height: 60vh; /* Scroll interno se for muito grande */
    overflow-y: auto;
    padding: 0.5rem 0;
}

/* --- Placeholder da Busca (Estilo App Icon) --- */
.search-placeholder {
    padding: 4rem 4rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    text-align: center;
    color: #A0A0A0;
}

/* A moldura do ícone */
.app-icon-frame {
    width: 80px;
    height: 80px;
    /* Degradê sutil para dar volume (fica mais chique que cor sólida) */
    background: var(--clr-accent);
	color: #FFFFFF;
    border-radius: 20px; /* Curva suave estilo iOS */
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.search-placeholder:hover .app-icon-frame {
    transform: scale(1.05) rotate(-3deg); /* Efeito lúdico ao passar o mouse */
}

/* O ícone dentro da moldura */
.app-icon-frame i {
    color: #fff;
    width: 36px;
    height: 36px;
    stroke-width: 2.5px; /* Traço mais grosso para contraste com o fundo */
}

.search-no-results {
    padding: 1.5rem;
    text-align: center;
    color: var(--clr-text);
}

/* Item de Resultado */
.search-result-item {
    display: flex;
    align-items: center;
    padding: 0.8rem 1.5rem;
    text-decoration: none;
    gap: 1rem;
    transition: background 0.1s;
    border-left: 3px solid transparent; /* Indicador de seleção */
}

.search-result-item:hover {
    background: #f9f9f9;
    border-left-color: var(--clr-accent);
}

.search-icon-wrap {
    color: #999;
}

.search-meta {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.search-title {
    color: var(--clr-text);
    font-weight: 500;
    font-size: 1rem;
}

.search-type {
    font-size: 0.75rem;
    color: #999;
    text-transform: uppercase;
    margin-top: 2px;
}

.search-arrow {
    width: 16px;
    height: 16px;
    color: #ccc;
    opacity: 0;
    transform: translateX(-5px);
    transition: all 0.2s;
}

.search-result-item:hover .search-arrow {
    opacity: 1;
    transform: translateX(0);
    color: var(--clr-accent);
}

/* Footer (Carregar Mais) */
.search-footer {
    padding: 0.8rem;
    border-top: 1px solid var(--clr-border);
    text-align: center;
    background: #fafafa;
}

.btn-search-load-more {
    background: transparent;
    border: 1px solid var(--clr-border);
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    color: #666;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-search-load-more:hover {
    border-color: var(--clr-accent);
    color: var(--clr-accent);
    background: #fff;
}

/* --- DESKTOP RULES (Ativar texto MENU) --- */
@media (min-width: 901px) {
    .menu-label {
        display: inline-block;
    }
}


/* --- SINGLE POST STYLES --- */

/* Limitador de Largura Exato */
.content-limiter {
    max-width: 650px;
    margin: 0 auto;
}

/* Header do Artigo */
.entry-header {
    margin-bottom: 2rem;
}

.entry-title {
    font-size: 40px; /* Desktop: 40px exatos */
    font-weight: 700;
    line-height: 1.1;
    color: #111;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.entry-subtitle {
    font-size: 1rem;
    line-height: 1.5;
    color: #555;
    margin-bottom: 1.5rem;
    font-weight: 400;
}

/* Meta Dados (Sem divisor) */
.entry-meta {
    border-top: none; /* Borda removida */
    padding-top: 0.5rem; /* Ajuste leve já que tiramos a borda */
    margin-bottom: 2rem;
}

.meta-author {
    font-size: 1rem;
    font-weight: 600;
    color: #000;
    margin-bottom: 0.2rem;
}

/* Nome do Autor sempre na cor de acento */
.author-link {
    color: var(--clr-accent); 
    text-decoration: none;
    transition: opacity 0.2s;
}

.author-link:hover {
    opacity: 0.8; /* Efeito suave no hover */
    text-decoration: underline;
}

.meta-date {
    font-size: 12px;
    font-weight: 400;
    color: #666;
}

/* --- Botões de Compartilhamento (Ajuste Geométrico) --- */
.share-bar {
    display: flex;
    gap: 0.8rem;
    margin-bottom: 2.5rem;
}

.share-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    
    /* Padding Reduzido (Mais magro) */
    padding: 0.6rem; 
    
    /* Cantos Mais Arredondados */
    border-radius: 12px; 
    
    background-color: #f5f5f5;
    transition: all 0.2s ease;
    border: 1px solid transparent;
}

.share-btn svg, .share-btn i {
    width: 20px;
    height: 20px;
    transition: fill 0.2s, color 0.2s;
}

/* Cores e Comportamento */
.btn-facebook { color: #1877F2; }
.btn-facebook:hover { background-color: #1877F2; color: #fff; }

.btn-whatsapp { color: #25D366; }
.btn-whatsapp:hover { background-color: #25D366; color: #fff; }

.btn-share { color: #666; }
.btn-share:hover { background-color: #404040; color: #fff; }

/* Conteúdo */
.entry-content {
    font-size: 1.125rem;
    line-height: 1.8;
    color: #333;
	margin-bottom: 2rem;
}

.entry-content p {
    margin-bottom: 1.5rem;
}

.entry-content h2, .entry-content h3 {
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
    line-height: 1.2;
}

.entry-content p a {
    text-decoration: none;
	font-weight: 600;
}

.entry-content p a:hover {
    text-decoration: underline;
}

.wp-block-image :where(figcaption) {
	font-size: 12px;
	margin-top: 1rem;
}

:root :where(.wp-block-image.is-style-rounded img,.wp-block-image .is-style-rounded img) {
	border-radius: 0.8rem;
}

/* Responsividade Mobile */
@media (max-width: 768px) {
    .content-limiter {
        max-width: 100%;
    }
    
    /* Mobile: 28px exatos */
    .entry-title {
        font-size: 28px; 
    }
}



/* --- Citação (Blockquote) - FINAL --- */
.entry-content blockquote {
    margin: 3rem 0;
    border: none;
    position: relative;
    text-align: inherit; /* Respeita o alinhamento do editor (Esq/Centro/Dir) */
}

/* Tipografia do Texto */
.entry-content blockquote p {
    font-size: 20px; /* Desktop */
    font-weight: 600;
    line-height: 1.5;
    color: #111;
    margin: 0;
	padding: 0.8rem 1rem;
    font-style: normal;
}

/* Configuração compartilhada das linhas (Topo e Base) */
.entry-content blockquote::before,
.entry-content blockquote::after {
    content: "";
    display: block;
    width: 100%;
    height: 6px; /* Altura da área da linha */
    
    /* DEFINIÇÃO DAS LINHAS (Ordem: Vermelho em cima, Cinza em baixo) */
    background-image: 
        linear-gradient(var(--clr-accent), var(--clr-accent)), /* Linha Vermelha */
        linear-gradient(#e5e5e5, #e5e5e5);                     /* Linha Cinza */

    /* TAMANHOS */
    background-size: 
        120px 4px,  /* Vermelha: 120px largura */
        100% 1px;   /* Cinza: 100% largura */

    /* POSIÇÃO */
    background-position: center center;
    
    /* IMPORTANTE: Garante que NÃO repita nenhuma das camadas */
    background-repeat: no-repeat;
}

/* Espaçamentos específicos */
.entry-content blockquote::before {
    margin-bottom: 2rem; /* Afasta do texto */
}

.entry-content blockquote::after {
    margin-top: 2rem; /* Afasta do texto */
}

/* Citação de Autor (se houver) */
.entry-content blockquote cite {
    display: block;
    margin-top: 1rem;
    font-size: 0.9rem;
    color: #666;
    font-weight: 400;
}

/* --- Listas Personalizadas (.entry-content) --- */

/* Reset Geral das Listas dentro do Post */
.entry-content ul, 
.entry-content ol {
    margin: 2.5rem 0; /* Espaço generoso acima e abaixo da lista */
    padding: 0;
    list-style: none; /* Removemos o estilo padrão do navegador */
}

/* Espaçamento fluido entre os itens */
.entry-content li {
    margin-bottom: 1rem; /* Distância entre cada linha da lista */
    position: relative;  /* Para posicionar o ícone/número */
    line-height: 1.6;
}

/* --- Lista Não Ordenada (Quadradinhos) --- */
.entry-content ul li {
    padding-left: 1.5rem; /* Recuo do texto */
}

.entry-content ul li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 10px; /* Alinhamento ótico com a primeira linha de texto */
    width: 6px;  /* Tamanho do quadrado */
    height: 6px;
    background-color: var(--clr-accent); /* Vermelho */
    border-radius: 1px; /* Canto levemente suave */
}

/* --- Lista Ordenada (Números) --- */
.entry-content ol {
    counter-reset: post-counter; /* Cria um contador interno */
}

.entry-content ol li {
    padding-left: 2rem; /* Recuo maior para caber números de dois dígitos */
}

.entry-content ol li::before {
    content: counter(post-counter) "."; /* Exibe o número + ponto */
    counter-increment: post-counter;    /* Soma +1 */
    
    position: absolute;
    left: 0;
    top: 0; /* Alinha com o topo da linha */
    
    color: var(--clr-accent); /* Vermelho */
    font-weight: 600; /* Peso solicitado */
    font-family: var(--font-main);
}

/* --- Tags do Post (Rodapé) --- */
.entry-tags {
    margin-bottom: 1rem;       /* Distância do texto do post */
    padding-bottom: 2rem;      /* Espaço interno superior */
    display: flex;
    flex-wrap: wrap;        /* Permite quebra de linha se tiver muitas tags */
    gap: 0.8rem;            /* Espaço entre as etiquetas */
}

.tag-btn {
    background-color: #E1E1E1; /* Fundo Cinza Claro */
    color: #555;               /* Texto Cinza Escuro */
    font-size: 12px;        /* Texto pequeno (12px) */
    font-weight: 400;
    text-transform: uppercase; /* Caixa Alta */
    padding: 5px 10px;     /* Tamanho do botão */
    border-radius: 4px;        /* Cantos levemente arredondados (quadradinho) */
    text-decoration: none;
    transition: all 0.2s ease;
    letter-spacing: 0.5px;
}

.tag-btn:hover {
    background-color: #d4d4d4; /* Escurece levemente no hover */
    color: #111;               /* Texto fica quase preto */
}

/* --- SEÇÃO MAIS LIDAS (Rodapé do Post) --- */
.most-read-section {
    padding-top: 2rem;
    border-top: 1px solid #eee;
}

/* Título da Seção */
.most-read-title {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 1rem;
    font-weight: 400; /* "Mais" mais fino */
}

.most-read-title strong {
    font-weight: 700; /* "lidas" bem grosso */
	margin-left: -6px;
}

.most-read-title svg {
    color: var(--clr-accent)!important; /* Ícone vermelho */
    width: 24px;
    height: 24px;
}

/* Lista */
.most-read-list {
    display: flex;
    flex-direction: column;
}

/* Item Individual */
.most-read-item {
    display: grid;
    /* Grid: Número | Texto | Imagem */
    grid-template-columns: 40px 1fr 120px; 
    gap: 1.5rem;
    align-items: center; /* Centraliza verticalmente */
    text-decoration: none;
    padding: 1.5rem 0;
    border-bottom: 1px solid #eee; /* Linha divisória */
    transition: background 0.2s;
}

.most-read-item:last-child {
    border-bottom: none;
}

/* 1. O Número */
.read-number {
    font-size: 3rem;     /* Gigante */
    font-weight: 300;    /* Bem fino */
    color: #ccc;         /* Cinza claro */
    line-height: 1;
    text-align: center;
    font-family: var(--font-main); /* Ou uma fonte sans-serif limpa */
}

/* 2. O Conteúdo (Título) */
.read-post-title {
    font-size: 1.1rem;
    font-weight: 700;
    line-height: 1.3;
    margin: 0;
    color: var(--clr-accent); /* Vermelho conforme referência */
    transition: color 0.2s;
}

.most-read-item:hover .read-post-title {
    text-decoration: underline;
}

/* 3. A Imagem */
.read-img-wrap {
    width: 120px;
    height: 80px;
    border-radius: 8px; /* Cantos arredondados */
    overflow: hidden;
    background: #f0f0f0;
}

.read-thumb {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.most-read-item:hover .read-thumb {
    transform: scale(1.05);
}

.read-fallback {
    width: 100%; height: 100%; background: #eee;
}

/* Mobile Responsivo */
@media (max-width: 600px) {
    .most-read-item {
        /* No mobile, reduz um pouco a imagem ou ajusta colunas */
        grid-template-columns: 30px 1fr 100px; 
        gap: 1rem;
    }
    
    .read-number {
        font-size: 2.2rem;
    }
    
    .read-post-title {
        font-size: 1rem;
    }
    
    .read-img-wrap {
        width: 100px;
        height: 70px;
    }
}

/* Responsividade Mobile */
@media (max-width: 768px) {
    .entry-content blockquote p {
        font-size: 18px; /* Mobile */
    }
}


/* --- ARQUIVOS (Category, Tag, Author) --- */

.page-header {
    margin-bottom: 3rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--clr-border);
}

.page-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--clr-text);
    text-transform: uppercase;
    letter-spacing: -1px;
}

.page-title span {
    color: var(--clr-accent); /* Destaca a palavra "Categoria" se o tema gerar span */
}

.archive-description {
    font-size: 1.1rem;
    color: #666;
    margin-top: 1rem;
    max-width: 800px;
}

/* --- Pagination Fix (Alinhamento Vertical) --- */
.pagination {
    margin-top: 3rem;
    display: flex;
    justify-content: center;
    gap: 0.5rem;
}

.pagination .page-numbers {
    display: inline-flex;      /* O Segredo: Flexbox interno */
    align-items: center;       /* Centraliza Verticalmente */
    justify-content: center;   /* Centraliza Horizontalmente */
    
    height: 40px;              /* Altura fixa para garantir uniformidade */
    min-width: 40px;           /* Largura mínima (para números e setas ficarem iguais) */
    padding: 0 0.8rem;         /* Padding lateral */
    
    border: 1px solid #ddd;
    color: var(--clr-text);
    border-radius: 4px;
    text-decoration: none;
    font-weight: 500;
    line-height: 1;            /* Remove espaçamento extra de linha */
    transition: all 0.2s;
}

/* --- Pagination Fix (Alinhamento Definitivo) --- */

/* Wrapper Externo */
.pagination {
    margin-top: 3rem;
    width: 100%;
    display: flex;
    justify-content: center;
}

/* Wrapper Interno do WordPress (AQUI É O SEGREDO) */
.pagination .nav-links {
    display: flex;        /* Alinha os botões perfeitamente */
    align-items: center;  /* Garante que todos tenham o mesmo eixo central */
    gap: 0.5rem;          /* Espaço entre botões */
}

/* Estilo Unificado dos Botões (Números e Setas) */
.pagination .page-numbers {
    display: flex;             /* Flex interno para centralizar o texto/ícone */
    align-items: center;       /* Centro Vertical */
    justify-content: center;   /* Centro Horizontal */
    
    height: 44px;              /* Altura fixa */
    min-width: 44px;           /* Largura mínima (cria quadrados perfeitos em n°s simples) */
    padding: 0 6px;            /* Padding pequeno para proteger n°s grandes (ex: 100) */
    
    border: 1px solid #ddd;
    color: var(--clr-text);
    border-radius: 8px;        /* Design mais moderno */
    text-decoration: none;
    font-weight: 600;
    line-height: 1;            /* Reseta altura de linha */
    transition: all 0.2s;
}

/* Ajuste específico para o Ícone da Seta */
.pagination .page-numbers i, 
.pagination .page-numbers svg {
    width: 20px;
    height: 20px;
    display: block; /* Remove comportamento de texto */
    /* NENHUMA margem ou padding extra aqui, o flex pai já centraliza */
}

/* Estado Ativo (Página Atual) */
.pagination .current {
    background-color: var(--clr-accent);
    color: #fff;
    border-color: var(--clr-accent);
}

/* Hover */
.pagination a.page-numbers:hover {
    border-color: var(--clr-accent);
    color: var(--clr-accent);
    background-color: transparent;
    transform: translateY(-2px); /* Efeito suave de clique */
}



/* --- AI FAQ Section (Estilo Cards Clean) --- */
.ai-faq-section {
    margin-top: 2rem;
    padding-top: 0rem;
    border-top: 1px solid #eee; /* Uma separação sutil do texto */
}

/* Título Serifado e Elegante (Igual referência) */
.faq-main-title {
    font-family: var(--font-main); /* Ou 'Georgia', serif se quiser diferenciar */
    font-size: 1.4rem;
    margin-bottom: 2rem;
    color: #111;
    font-weight: 400; /* Mais leve, estilo editorial */
    letter-spacing: -0.5px;
}

/* O Cartão da Pergunta */
.ai-faq-item {
    background-color: #f8f9fa; /* Cinza bem clarinho (Gelo) */
    border-radius: 8px;        /* Cantos arredondados */
    margin-bottom: 1rem;       /* Espaço entre os cartões */
    border: 1px solid transparent;
    transition: all 0.2s ease;
    overflow: hidden;          /* Garante que o conteúdo não vaze o radius */
}

/* Efeito Hover no Cartão */
.ai-faq-item:hover {
    background-color: #fff;    /* Fica branco */
    border-color: #e0e0e0;     /* Borda sutil */
    box-shadow: 0 4px 12px rgba(0,0,0,0.05); /* Sombra suave */
}

/* O Cabeçalho Clicável */
.ai-faq-item summary {
    cursor: pointer;
    padding: 1.2rem 1.5rem;    /* Espaçamento interno confortável */
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

/* Remove a seta padrão feia do navegador */
.ai-faq-item summary::-webkit-details-marker { display: none; }

/* Texto da Pergunta */
.faq-question-text {
    font-weight: 600;
    font-size: 1rem;
    color: #333;
    text-align: left;
}

/* Ícone da Seta */
.faq-icon svg {
    width: 20px;
    height: 20px;
    color: #999; /* Cinza claro inativo */
    transition: transform 0.3s ease, color 0.3s ease;
}

/* Estado ABERTO (Open) */
.ai-faq-item[open] {
    background-color: #fff; /* Fica branco quando aberto */
    border-color: #eee;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

/* Gira a seta quando aberto */
.ai-faq-item[open] .faq-icon svg {
    transform: rotate(180deg);
    color: var(--clr-accent); /* Seta fica vermelha */
}

/* A Resposta */
.ai-faq-answer {
    padding: 0 1.5rem 1.5rem 1.5rem; /* Padding nas laterais e embaixo */
    color: #555;
    line-height: 1.6;
    font-size: 1rem;
    border-top: 1px solid transparent; /* Preparação para animação */
    animation: slideDown 0.3s ease-out;
}

/* Pequena animação de entrada */
@keyframes slideDown {
    from { opacity: 0; transform: translateY(-5px); }
    to { opacity: 1; transform: translateY(0); }
}
/* --- Disclaimer de IA (Rodapé do FAQ) --- */
.faq-ai-disclaimer {
    margin-top: 1.5rem;
    display: flex;
    align-items: flex-start; /* Mudei de center para flex-start (topo) */
    gap: 8px;
    font-size: 12px;
    color: #999;
    font-style: italic;
    line-height: 1.4; /* Garante uma altura de linha boa para leitura */
}

/* Ajuste fino para o ícone */
.faq-ai-disclaimer svg {
    color: var(--clr-accent);
    opacity: 1;
    margin-top: 2px; /* Empurra o ícone levemente para alinhar com o texto */
    flex-shrink: 0;  /* Impede que o ícone amasse se o texto for muito grande */
}

/* --- SEÇÃO POSTS RELACIONADOS --- */
.related-section {
    margin-top: 3rem;
	padding-bottom: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #eee;
}

.related-title {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #111;
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Detalhe visual (tracinho vermelho antes do título) */
.related-title .accent-line {
    display: block;
    width: 4px;
    height: 24px;
    background-color: var(--clr-accent);
    border-radius: 2px;
}

/* Grid de 3 Colunas */
.related-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 3 colunas iguais */
    gap: 1.5rem;
}

/* O Cartão */
.related-card {
    display: flex;
    flex-direction: column;
}

/* Imagem */
.related-img-wrap {
    width: 100%;
    aspect-ratio: 16/9; /* Formato vídeo/padrão */
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 0.8rem;
    background-color: #f0f0f0;
}

.related-thumb {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.related-card:hover .related-thumb {
    transform: scale(1.05); /* Zoom suave */
}

/* Texto */
.related-content {
    display: flex;
    flex-direction: column;
}

.related-cat {
    font-size: 0.75rem;
    text-transform: uppercase;
    color: var(--clr-accent); /* Nome da categoria em vermelho */
    font-weight: 700;
    margin-bottom: 0.4rem;
}

.related-card-title {
    font-size: 1rem;
    line-height: 1.4;
    font-weight: 700;
    margin: 0;
}

.related-card-title a {
    color: #111;
    text-decoration: none;
    transition: color 0.2s;
}

.related-card:hover .related-card-title a {
    color: var(--clr-accent);
}

/* Fallback se não tiver imagem */
.related-fallback {
    width: 100%; height: 100%; background: #eee;
}

/* Mobile Responsivo */
@media (max-width: 600px) {
    .related-grid {
        grid-template-columns: 1fr; /* Vira 1 coluna no celular */
        gap: 2rem;
    }
    
    /* No mobile, talvez você queira a imagem menor ao lado do texto (opcional) */
    /* Se quiser manter card grande, deixe como está acima. */
}

/* --- AI Key Points (Resumo no Topo) --- */
.ai-key-points {
    background-color: #fff8e1; /* Fundo Amarelo Suave */
    border-left: 4px solid #ffc107; /* Borda Lateral Amarelo Ouro */
    padding: 1.5rem;
    margin-bottom: 2rem;
    border-radius: 0 8px 8px 0;
}

.ai-points-title {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #856404; /* Texto Amarelo Escuro */
}

.ai-key-points ul {
    margin: 0;
    padding-left: 1.2rem;
}

.ai-key-points li {
    margin-bottom: 0.5rem;
    color: #333;
    font-size: 1.05rem;
    line-height: 1.5;
}

/* --- AI Key Points (Estilo Accordion) --- */
.ai-key-points-wrapper {
    margin-bottom: 2rem;
}

.ai-key-points-accordion {
    background-color: #f8f9fa; /* Mesmo cinza do FAQ */
    border-radius: 8px;
    border: 1px solid transparent;
    overflow: hidden;
    transition: all 0.2s ease;
}

.ai-key-points-accordion:hover {
    background-color: #fff;
    border-color: #e0e0e0;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.ai-key-points-accordion summary {
    cursor: pointer;
    padding: 1.2rem 1.5rem;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.ai-key-points-accordion summary::-webkit-details-marker { display: none; }

/* Título com Ícone */
.kp-title {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    font-size: 1.05rem;
    color: #333;
}

.kp-title svg {
    color: #999; /* Ícone de Destaque colorido */
}

/* Seta Chevron */
.kp-icon svg {
    color: #999;
    transition: transform 0.3s ease;
}

/* Estado Aberto */
.ai-key-points-accordion[open] {
    background-color: #fff;
    border-color: #eee;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.ai-key-points-accordion[open] .kp-icon svg {
    transform: rotate(180deg);
    color: var(--clr-accent);
}

/* Conteúdo da Lista */
.kp-content {
    padding: 0 1.5rem 1.5rem 1.5rem;
    color: #555;
    line-height: 1.6;
    animation: slideDown 0.3s ease-out;
}

.kp-content ul {
    margin: 0;
    padding-left: 1.2rem;
}

.kp-content li {
    margin-bottom: 0.5rem;
}

/* =========================================
   CORREÇÃO HERO: ESTICAR IMAGEM (DESKTOP)
   ========================================= */

/* Aplica apenas acima de 900px (Desktop), pois seu mobile vai até 900px */
@media (min-width: 901px) {

    /* 1. Garante que a área da imagem no Grid ocupe toda a altura disponível */
    .hero-area-image {
        height: 100%;
        display: flex;
        flex-direction: column;
    }

    /* 2. Remove a trava de proporção 16/9 e força altura total */
    .hero-area-image .hero-main-img-wrap {
        aspect-ratio: auto !important; /* Desliga o 16/9 */
        height: 100%;                  /* Ocupa 100% da altura da coluna vizinha */
        flex-grow: 1;
        display: flex;                 /* Para a imagem dentro expandir */
    }

    /* 3. Garante que a imagem cubra o espaço sem distorcer */
    .hero-area-image .hero-main-img-wrap img {
        height: 100%;
        width: 100%;
        object-fit: cover;   /* Corta as laterais se necessário para preencher a altura */
    }
}