/* ==========================================================================
   /css/all-styles.css - ARQUIVO CSS COMPLETO E CONSOLIDADO (VERSÃO FINAL)
   --------------------------------------------------------------------------
   Este arquivo integra todas as bases e customizações solicitadas.
   ========================================================================== */

/* --- Variáveis CSS para padronização --- */
:root {
    --color-primary-shadow: rgba(0, 0, 0, 0.1);
    --color-hover-shadow: rgba(0, 0, 0, 0.2);
    --color-overlay-dark: rgba(0, 0, 0, 0.5); /* Ajustado para 50% de opacidade */
    --color-overlay-hover-dark: rgba(0, 0, 0, 0.65); /* Ajustado para 65% de opacidade no hover */
    --transition-duration-short: 0.3s;
    --transition-duration-medium: 0.5s;
    --transition-duration-long: 0.8s;
    --ease-out: ease-out;
    --ease-in-out: ease-in-out;
    --text-color-light: #fff; /* Cor para texto em fundos escuros */
    --link-color-default: darkgray; /* Cor para links em fundos claros */
    --link-color-hover: #555;
    --link-focus-color: #888; /* Cor para estado de foco (acessibilidade) */
    --navbar-link-color: #1a1b1f; /* Cor padrão dos links da navbar */
    --navbar-link-hover-color: #1a1b1fbf; /* Cor dos links da navbar no hover */
}

/* Reset básico e fontes principais */
body, html {
    margin: 0;
    padding: 0;
    font-family: 'Inter', 'Open Sans', sans-serif;
    line-height: 1.6;
    color: #333; /* Cor padrão para textos em fundos claros */
    background-color: #fff;
    scroll-behavior: smooth; /* Para scroll suave em âncoras */
    /* Garante que o body não tenha overflow-x quando o menu está aberto para evitar scroll lateral */
    &.menu-open { /* Adicionada pelo JS customizado */
        overflow: hidden;
    }
}

/* Links Gerais (sem classes específicas) */
a {
    text-decoration: none;
    color: var(--link-color-default);
    transition: color var(--transition-duration-short) var(--ease-in-out),
                text-decoration var(--transition-duration-short) var(--ease-in-out);
}

a:hover {
    color: var(--link-color-hover);
    text-decoration: underline;
}

a:focus-visible, a[data-wf-focus-visible] {
  outline-offset: 2px;
  outline: 2px solid var(--link-focus-color);
  border-radius: 2px;
}


/* ==========================================================================
   Navbar
   ========================================================================== */
.nav {
    background-color: #fff;
    border-bottom: 1px solid #eaeaea;
}

.navbar-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 20px;
    position: relative;
    z-index: 1000;
}

/* Desktop: Links do header à direita com padding */
.nav-menu-wrapper { /* Contêiner do menu de navegação (para desktop) */
    display: flex; /* Visível no desktop */
    justify-content: flex-end;
    padding-right: 40px;
    position: relative;
    width: auto;
    flex-grow: 1;
}

.nav-menu-two { /* Lista de links (ul) */
    display: flex; /* Exibe os links em linha no desktop */
    gap: 20px;
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
}

.nav-link {
    color: var(--navbar-link-color);
    font-weight: 500;
    padding: 5px 10px;
    transition: color var(--transition-duration-short) var(--ease-in-out);
}

.nav-link:hover {
    color: var(--navbar-link-hover-color);
}

.nav-link:focus-visible, .nav-link[data-wf-focus-visible] {
  outline-offset: 0px;
  color: var(--link-focus-color);
  border-radius: 4px;
  outline: 2px solid var(--link-focus-color);
}

/* --- LOGO DA NAV (ARTÍVIO) --- */
.navbar-brand {
    margin-right: auto;
    padding-left: 0;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}
.text-block {
  font-family: 'Playfair Display', serif;
  font-size: 45px;
  font-weight: 700;
  color: #000;
}
/* O botão sanduíche (menu-button) é um elemento do Webflow que aparece no mobile */


/* ==========================================================================
   HERO Section - Animações e Responsividade
   ========================================================================== */

.hero-home {
    width: 100%;
    padding: 0;
    margin: 0;
    height: 100vh; /* Altura da seção Hero (Desktop) */
    overflow: hidden;
    position: relative;
    z-index: 2;
}

/* Grid das células do Hero */
.div-grid-hero {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    width: 100%;
    height: 100%;
    position: relative;
    transition: transform var(--transition-duration-medium) var(--ease-in-out);
}

/* Células individuais do Hero */
.celula-grid {
    position: relative;
    background-size: cover;
    background-position: center;
    height: 100%;

    /* ESTADO PADRÃO: VISÍVEL POR CSS (Desktop e Mobile) */
    opacity: 1; /* Começa VISÍVEL por padrão em todas as telas */
    transform: translateY(0px); /* Começa na posição normal por padrão */

    transition: opacity var(--transition-duration-long) var(--ease-out),
                transform var(--transition-duration-long) var(--ease-out),
                background-size var(--transition-duration-short) var(--ease-out),
                box-shadow var(--transition-duration-short) var(--ease-out);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    will-change: transform, background-size, box-shadow;
}

.celula-grid:hover {
    background-size: 105%;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

/* Overlay dentro da célula do Hero */
.overlay-hero {
    position: absolute;
    inset: 0;
    background: var(--color-overlay-dark);
    z-index: 1;
    transition: background var(--transition-duration-short) var(--ease-in-out);
}

.celula-grid:hover .overlay-hero {
    background: var(--color-overlay-hover-dark);
}

/* 3. Hero: Textos alinhados pelo texto da categoria (verticalmente), mais para baixo */
.texto-hero {
    position: absolute;
    z-index: 2;
    color: var(--text-color-light);
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    transition: transform var(--transition-duration-short) var(--ease-in-out);
    
    top: 55%;
    transform: translateY(-50%);
    bottom: auto;
    left: 10%;
    right: 10%;
    justify-content: flex-start;
}

.celula-grid:hover .texto-hero {
    transform: translateY(-50%) translateY(-5px);
}

/* --- CORES DAS CATEGORIAS DO HERO (RECUPERADAS) --- */
.texto-categoria-hero {
    font-size: 0.85rem;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    color: #d1c4e9;
    margin-top: 0;
}

.texto-categoria-hero.artes-visuais {
  color: #b2d8cc;
}

.texto-categoria-hero.design {
  color: #d9bba7;
}

.texto-categoria-hero.musica {
  color: #bfa9df;
}


.heading-3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
    color: var(--text-color-light);
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.paragraph {
    font-size: 1rem;
    line-height: 1.4;
    color: var(--text-color-light);
}

/* Estilos para os botões de navegação do carrossel (adicionados via JS) */
.hero-carousel-nav {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.hero-carousel-nav button {
    background-color: rgba(0, 0, 0, 0.6);
    color: white;
    border: none;
    padding: 10px 15px;
    cursor: pointer;
    border-radius: 5px;
    font-size: 1.2em;
    transition: background-color var(--transition-duration-short) var(--ease-in-out);
}

.hero-carousel-nav button:hover {
    background-color: rgba(0, 0, 0, 0.8);
}


/* ==========================================================================
   GALERIA (section-2) - Destaque de Artigos
   ========================================================================== */
.section-2 .grid-galeria {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, auto);
    gap: 20px;
    padding: 40px 20px;
}

.celula-galeria {
  min-height: 500px;
  padding-left: 10px;
  padding-right: 10px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: box-shadow var(--transition-duration-short) var(--ease-in-out);
}

.celula-galeria:hover {
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.img-galeria-destaque {
    width: 100%;
    height: 350px;
    object-fit: cover;
    padding-top: 10px;
    transition: transform var(--transition-duration-short) var(--ease-out);
    transform: scale(1);
    will-change: transform;
}

.img-galeria-destaque:hover {
    transform: scale(1.05);
}

/* 3. Cores dos títulos da seção 2 no efeito de hover (Invertido e Corrigido) */
.heading-3.galeria {
    color: #000; /* Inicialmente preto */
    text-align: left;
    padding-left: 0;
    margin-top: 20px;
    transition: color var(--transition-duration-short) var(--ease-in-out);
}
/* Alvo: o link <a> dentro do h3.galeria */
.heading-3.galeria a {
    color: #000; /* Garante que o link seja preto por padrão */
    text-decoration: none; /* Remove sublinhado padrão */
    transition: color var(--transition-duration-short) var(--ease-in-out);
}
/* Efeito hover na celula-galeria que afeta o link do título */
.celula-galeria:hover .heading-3.galeria a {
    color: var(--link-color-default); /* Assume a cor cinza no hover (darkgray) */
    text-decoration: none; /* Garante que não sublinhe no hover */
}
/* Efeito para o :active do link (após clicado) */
.celula-galeria .heading-3.galeria a:active {
    color: #000; /* Volta a ser preto depois de clicado */
}


.subtitulo-galeria {
    padding-left: 10px;
    font-family: 'Inter', sans-serif;
    margin-bottom: 20px;
}


/* ==========================================================================
   SECTION-3 (Artigo Completo em Destaque) - MANTIDA VERSÃO MANUAL
   ========================================================================== */
/* GARANTIDO QUE NENHUMA ALTERAÇÃO SERÁ FEITA NESTE BLOCO PELO ASSISTENTE */

.section-3 {
  background-color: #ffffff;
  padding: 60px 20px;
  font-family: 'Georgia', serif;
  color: #333;
}
.section-3-overlay-content {
  max-width: 1200px;
  margin: 0 auto;
}

.artigo-completo-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 40px;
}
.celula-artigo-completo-esquerda {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.heading-3 {
  font-size: 2.5em;
  margin-bottom: 10px;
}

.subtitulo-artigo-completo {
  font-size: 1.2em;
  color: #666;
  margin-bottom: 20px;
}

.image {
  width: 100%;
  height: auto;
  margin-bottom: 10px;
}

.coluna-direita-artigo-completo {
  column-count: 2;
  column-gap: 40px;
  line-height: 1.6;
  font-size: 1.1em;
}


/* ==========================================================================
   SECTION-4 (Feed) - Transformado em Cards com Texto Sobreposto
   ========================================================================== */
.section-4 {
    position: relative;
    z-index: 1;
}

.section-4 .waves-grid-blog-2 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    padding: 40px 20px;
    align-items: start;
}

.waves-tile-blog-2 {
    background-color: transparent;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    transition: transform var(--transition-duration-short) var(--ease-in-out), box-shadow var(--transition-duration-short) var(--ease-in-out);
    
    position: relative;
    padding-bottom: 70%;
    height: 0;
    display: block;
    box-sizing: border-box;
}

.waves-tile-blog-2:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}

.waves-tile-blog-2 img.waves-image-blog-2 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-duration-short) var(--ease-in-out);
    transform: scale(1);
    filter: brightness(0.7);
    z-index: 0;
}

.waves-tile-blog-2:hover img.waves-image-blog-2 {
    transform: scale(1.03);
    filter: brightness(0.6);
}

.waves-content-blog-2 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0) 50%);
    color: var(--text-color-light);
    padding: 20px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-start;
    z-index: 1;
    transition: background 0.3s ease-in-out;
}
.waves-tile-blog-2:hover .waves-content-blog-2 {
    background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0) 50%);
}


.waves---heading-3-no-margins {
    margin-top: 0;
    margin-bottom: 10px;
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-color-light);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.waves---paragraph-big {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    line-height: 1.4;
    color: var(--text-color-light);
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* ==========================================================================
   Footer
   ========================================================================== */
.footer {
    background: #f7f7f7;
    padding: 40px 20px;
    position: relative;
    z-index: 1;
}

.waves-top-footer-1, .waves-bottom-footer-1 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.waves-link-footer-1 {
    font-weight: 500;
    color: #1a1b1f;
    transition: color var(--transition-duration-short) var(--ease-in-out);
}

.waves-link-footer-1:hover {
    color: #1a1b1fbf;
    text-decoration: underline;
}

/* --- LOGO DO BOTTOM (ARTÍVIO) --- */
.text-block-2 { /* Logo do Artívio no Footer */
    font-family: 'Playfair Display', serif;
    font-size: 45px;
    font-weight: 700;
    color: #000;
}


/* ==========================================================================
   Responsividade (Media Queries)
   ========================================================================== */

@media screen and (max-width: 991px) { /* Tablets (Landscape e Portrait) */
    .nav-menu-wrapper {
        padding-right: 0;
    }
    .div-grid-hero {
        grid-template-columns: repeat(2, 1fr);
        height: auto;
    }
    .celula-grid {
        height: 60vh;
    }
    .hero-home {
        height: auto;
    }

    /* Seção 2 (Galeria) */
    .section-2 .grid-galeria {
        grid-template-columns: 1fr; /* 1 coluna no tablet */
        grid-template-rows: auto;
    }

    /* Seção 3 (Artigo Destaque) */
    .section-3 {
        min-height: auto;
        padding: 10px;
    }
    .artigo-completo-grid {
        grid-template-columns: 1fr;
        grid-row-gap: 20px;
        padding: 0;
    }
    .celula-artigo-completo-esquerda,
    .coluna-direita-artigo-completo:nth-of-type(1),
    .coluna-direita-artigo-completo:nth-of-type(2) {
        grid-column: 1 / span 1;
        grid-row: auto;
        margin-top: 0;
    }
    .celula-artigo-completo-esquerda {
        min-height: 400px;
        height: auto;
    }
    .image {
        max-width: 100%;
        height: auto;
        margin-top: 15px;
    }


    /* Section 4 (Feed) */
    .section-4 .waves-grid-blog-2 {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
    .waves-tile-blog-2 {
        height: 200px;
        padding-bottom: 0;
    }
    .waves-tile-blog-2 img.waves-image-blog-2 {
        height: 100%;
    }

    /* Footer */
    .waves-top-footer-1, .waves-bottom-footer-1 {
        flex-direction: column;
        gap: 20px;
    }
}

@media screen and (max-width: 767px) { /* Mobile (Landscape e Portrait) */
    /* 1. Navbar: Menu sanduíche (CORRIGIDO com JS customizado) */
    /* OCULTA o menu de navegação completo no mobile por padrão */
    .nav-menu-two { /* O menu completo */
        display: none; /* OCULTA o menu por padrão no mobile */
        flex-direction: column;
        position: absolute; /* Menu flutuante */
        top: 100%; /* Abaixo da navbar */
        left: 0;
        width: 100%;
        height: calc(100vh - 100%); /* Ocupa o resto da tela abaixo da navbar */
        background-color: #fff;
        box-shadow: 0 4px 8px rgba(0,0,0,0.1);
        padding: 10px 0;
        align-items: center;
        z-index: 999; /* Garante que o menu esteja acima de outros elementos */
        /* Transição para suavizar a abertura/fechamento do menu */
        transition: transform 0.3s ease-in-out;
        transform: translateY(-100%); /* Inicia escondido para cima */
    }
    /* EXIBE o menu quando a classe 'is-visible' é adicionada via JS */
    .nav-menu-two.is-visible {
        display: flex !important; /* FORÇA a exibição */
        transform: translateY(0); /* Desliza para baixo */
    }
    /* EXIBE o botão sanduíche no mobile */
    .menu-button { /* O botão do menu sanduíche */
        display: block; /* Garante que o botão sanduíche seja visível */
        margin-right: 20px; /* Margem de 20px à direita */
        z-index: 3;
        padding: 10px;
    }
    /* Logo da Navbar no Mobile: Deve permanecer à esquerda */
    .navbar-brand {
        position: relative;
        left: auto;
        transform: none;
        margin-left: 0;
        margin-right: auto;
        width: auto;
        display: flex;
        align-items: center;
        justify-content: flex-start;
    }
    .navbar-logo-left-container {
        justify-content: space-between;
        position: relative;
        height: auto;
    }
    .navbar-wrapper {
        justify-content: space-between;
        position: relative;
    }


    /* 2. Hero: Altura da seção ocupa a tela toda (viewport height) e artigos viram carrossel (CORRIGIDO) */
    .hero-home {
        height: 100vh;
    }
    .div-grid-hero {
        grid-template-columns: 1fr;
    }
    /* CORREÇÃO CRÍTICA: As células do hero no mobile SEMPRE começam visíveis por CSS */
    .celula-grid {
        display: none;
        height: 100%;
        min-height: 100%;
        opacity: 1 !important; /* FORÇA visibilidade IMEDIATA no mobile */
        transform: translateY(0px) !important; /* FORÇA posição inicial IMEDIATA no mobile */
        transition: none !important; /* Remove transições para visibilidade instantânea no mobile */
    }

    .texto-hero {
        position: absolute;
        top: 50%;
        left: 5%;
        right: 5%;
        transform: translateY(-65%);
        z-index: 2;
        display: flex;
        flex-direction: column;
        justify-content: center;bottom: 15%;
        left: 5%;
        right: 5%;
        padding: 15px;
    }

    .hero-carousel-nav {
        bottom: 10px;
        gap: 8px;
    }

    /* Seção 2 (Galeria) */
    /* 3. Limitar subtítulo da seção 2 a 2 linhas e adicionar ellipsis (apenas para celular) */
    .subtitulo-galeria {
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
        text-overflow: ellipsis;
        padding-left: 0;
    }

    .section-2 .grid-galeria {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }

    /* Seção 3 (Artigo Destaque) */
    .celula-artigo-completo-esquerda {
        min-height: 300px;
        height: auto;
    }
    .coluna-direita-artigo-completo {
        margin-top: 15px;
    }

    /* Section 4 (Feed) */
    .section-4 .waves-grid-blog-2 {
        grid-template-columns: 1fr;
        padding: 20px 10px;
        gap: 20px;
    }
    .waves-tile-blog-2 {
        height: 250px;
        padding-bottom: 0;
    }
    .waves-tile-blog-2 img.waves-image-blog-2 {
        height: 100%;
    }
    .waves---heading-3-no-margins {
        font-size: 18px;
    }
    .waves---paragraph-big {
        font-size: 13px;
    }

    /* 4. Footer: Ajustar links para caberem na mesma linha horizontal (Mobile - CORRIGIDO) */
    .waves-top-footer-1,
    .waves-bottom-footer-1 {
        flex-direction: column;
        gap: 20px;
        justify-content: center;
    }
    .waves-top-right-footer-1,
    .waves-bottom-right-footer-1 {
        display: flex;
        flex-wrap: nowrap;
        justify-content: center;
        width: 100%;
        grid-column-gap: 5px;
        gap: 5px;
        margin: 0;
        padding: 0 5px;
        box-sizing: border-box;
    }
    .waves-link-footer-1 {
        margin: 0 2px;
        font-size: 12px;
        white-space: nowrap;
        flex-shrink: 0;
        padding: 5px 0;
    }
    .waves-bottom-right-footer-1 .w-inline-block {
        margin: 0 2px;
    }
    .waves---paragraph-small {
        font-size: 13px;
        text-align: center;
        width: 100%;
    }
}

/* Ajustes finos para telas muito pequenas */
@media screen and (max-width: 479px) {
    .text-block, .text-block-2 {
        font-size: 35px;
    }
    .heading-3 {
        font-size: 1.3rem;
    }
    .paragraph {
        font-size: 0.9rem;
    }
    .subtitulo-galeria {
        padding-left: 0;
    }
}

@media screen and (max-width: 991px) {
  .menu-button {
    display: block !important;
    position: relative;
    z-index: 9999;
    width: 40px;
    height: 40px;
    background: transparent;
    border: none;
    cursor: pointer;
  }

  .w-icon-nav-menu {
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='28' height='28' viewBox='0 0 28 28' xmlns='http://www.w3.org/2000/svg'%3E%3Cg stroke='%23000' stroke-width='2' fill='none' fill-rule='evenodd'%3E%3Cpath d='M4 7h20M4 14h20M4 21h20'/%3E%3C/g%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 60%;
  }
}

@media screen and (max-width: 767px) {
  .nav-menu-wrapper {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: white;
    z-index: 9999;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  }
  .nav-menu-wrapper.is-visible {
    display: flex !important;
  }
  
  .swiper-container {
        width: 100%;
        height: 100vh;
    }

    .swiper-wrapper {
        height: 100%;
    }

    .swiper-slide {
        display: block;
        height: 100%;
    }

    .celula-grid {
        height: 100%;
        min-height: 100%;
    }

@media screen and (max-width: 767px) {

  .swiper-container,
  .swiper-wrapper,
  .swiper-slide,
  .celula-grid,
  .hero-link-block,
  .overlay-hero,
  .texto-hero {
    height: 100%;
    min-height: 100%;
  }

  .hero-link-block {
    display: block;
    position: relative;
  }

  .overlay-hero {
    position: absolute;
    inset: 0;
  }

  .texto-hero {
    position: absolute;
    bottom: 5%;
    left: 5%;
    right: 5%;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
  }
}


@media (max-width: 768px) {
  .artigo-completo-grid {
    grid-template-columns: 1fr;
  }

  .coluna-direita-artigo-completo {
    column-count: 1;
  }
}



.artigo-completo-container {
  max-width: 900px;
  margin: 0 auto;
  padding: 40px 20px;
  font-family: 'Georgia', serif;
  color: #333;
}

.imagem-artigo-central {
  text-align: center;
  margin-bottom: 30px;
}

.imagem-artigo-central img {
  max-width: 100%;
  height: auto;
  border-radius: 6px;
}

.legenda {
  font-size: 0.9em;
  color: #888;
  margin-top: 5px;
}

.cabecalho-artigo {
  text-align: center;
  margin-bottom: 30px;
}

.cabecalho-artigo .heading-3 {
  font-size: 2.2em;
  margin-bottom: 10px;
  color: #222;
}

.cabecalho-artigo .subtitulo-artigo-completo {
  font-size: 1.2em;
  color: #555;
}

.conteudo-artigo.colunas {
  column-count: 2;
  column-gap: 40px;
  line-height: 1.6;
  font-size: 1.1em;
}

@media (max-width: 768px) {
  .conteudo-artigo.colunas {
    column-count: 1;
  }
}
