/*
Theme Name: Lanternas Brasil
Theme URL: http://lanternasbrasil.com
Author: Igor Purcino
Description: Tema personalizado para o Lanternas Brasil - DCU
Version: 1.0
Text Domain: lanternas-brasil
*/

/*============================================
      SEÇÃO 1.0 - CONFIGURAÇÕES E RESET GERAL
=============================================*/
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    background-color: #3b6748;
    color: #ffffff;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

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

ul {
    list-style: none;
}

.site-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/*============================================
      SEÇÃO 2.0 - HEADER E MENU DE NAVEGAÇÃO
=============================================*/
.site-header {
    position: relative;
    width: 100%;
    height: 700px;
    background-image: url('http://lanternasbrasil.com/wp-content/uploads/2026/08/Header.jpg');
    background-size: cover;
    background-position: center top;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    border-bottom: none !important;
}

.site-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 150px;
    background: linear-gradient(to bottom, transparent, #3b6748);
    pointer-events: none;
}

.main-navigation {
    position: relative;
    z-index: 10;
    background-color: rgba(24, 43, 30, 0.85);
    backdrop-filter: blur(10px);
    width: 100%;
    max-width: 900px;
    margin: 0 auto 30px auto;
    border-radius: 12px;
    border: 1px solid rgba(76, 175, 80, 0.2);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.main-navigation ul {
    display: flex;
    justify-content: center;
    align-items: center;
    list-style: none;
    padding: 15px 0;
    flex-wrap: wrap;
}

.main-navigation li {
    margin: 0 20px;
    position: relative;
}

.main-navigation a {
    color: #ffffff !important;
    font-weight: 700;
    font-size: 15px;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: color 0.3s ease;
    padding: 5px 0;
    display: block;
    position: relative;
}

.main-navigation a:hover {
    color: #ffffff !important;
}

.main-navigation a::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 50%;
    width: 0;
    height: 1px;
    background: linear-gradient(90deg, rgba(76, 175, 80, 0) 0%, #4CAF50 50%, rgba(76, 175, 80, 0) 100%);
    box-shadow: 0 0 8px #4CAF50, 0 0 12px rgba(76, 175, 80, 0.8);
    transition: width 0.4s ease, left 0.4s ease;
    transform: translateX(-50%);
}

.main-navigation a:hover::after,
.main-navigation .current-menu-item a::after,
.main-navigation .current_page_item a::after {
    width: 100%;
    left: 50%;
}

/*============================================
      SEÇÃO 3.0 - TIPOGRAFIA E TÍTULOS DE SEÇÃO
=============================================*/
.section-title-wrapper {
    text-align: center;
    margin: 40px 0 25px 0;
    position: relative;
    display: inline-block;
    width: 100%;
}

.section-title {
    font-size: 20px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #ffffff !important;
    background-color: transparent !important;
    background: transparent !important;
    display: inline-block;
    padding: 0 0 15px 0;
    border-radius: 0;
    border: none !important;
    box-shadow: none !important;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 250px;
    max-width: 90%;
    height: 1px;
    background: linear-gradient(90deg, rgba(76, 175, 80, 0) 0%, #4CAF50 50%, rgba(76, 175, 80, 0) 100%);
    box-shadow: 0 0 8px #4CAF50, 0 0 12px rgba(76, 175, 80, 0.8);
    pointer-events: none;
}

.section-title-line {
    display: none !important;
}

/* ============================================
     SEÇÃO 4.0 - ALINHAMENTO DO TÍTULO + CAIXA DE PESQUISA
============================================= */
.section-header-flex {
    position: relative;
    max-width: 1200px;
    margin: 40px auto 25px auto;
    padding: 0;
    box-sizing: border-box;
    z-index: 10;
}

.section-header-flex .section-title-wrapper {
    margin: 0;
    width: 100%;
    text-align: center;
}

.section-search-box {
    position: absolute;
    /* ⬅️ CONTROLE PARA A ESQUERDA: 
       100% é a ponta direita total. Subtraia pixels (ex: - 300px) para mover para a esquerda. */
    left: calc(100% - 320px); 
    
    top: 50%;
    width: 280px;
    
    /* ↕️ CONTROLE DE SUBIDA E DESCIDA: 
       Mude apenas o número 0 para subir (-) ou descer (+) ex: -5px ou 5px */
    transform: translateY(calc(-50% + 0px));
}

.section-search-box form {
    display: flex;
    align-items: center;
    position: relative;
    background-color: #1a2e22 !important;
    border: 1px solid rgba(76, 175, 80, 0.35) !important;
    border-radius: 12px !important;
    padding: 12px 18px !important;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3) !important;
}

.section-search-box input.search-field,
.section-search-box input[type="search"] {
    width: 100% !important;
    background: transparent !important;
    border: none !important;
    outline: none !important;
    color: #ffffff !important;
    font-size: 14px !important;
    padding: 0 !important;
    box-shadow: none !important;
}

.section-search-box input.search-field::placeholder,
.section-search-box input[type="search"]::placeholder {
    color: #b0c4b8 !important;
}

/* Oculta completamente o botão padrão de busca para manter o design limpo */
.section-search-box input.search-submit,
.section-search-box button[type="submit"] {
    display: none !important;
}

/* Responsividade para telas menores */
@media (max-width: 950px) {
    .section-search-box {
        position: relative !important;
        left: auto !important;
        top: auto !important;
        transform: none !important;
        width: 100% !important;
        max-width: 350px;
        margin: 15px auto 0 auto !important;
    }
}

/*============================================
     SEÇÃO 5.0 - GRID PRINCIPAL UNIFICADO
=============================================*/
.two-column-grid {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 30px;
    width: 100%;
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 20px;
    box-sizing: border-box;
}

.two-column-grid > div {
    display: flex;
    flex-direction: column;
}

.hero-slider {
    position: relative !important;
    width: 708px !important;
    height: 259px !important;
    border-radius: 22px !important;
    overflow: hidden !important;
    cursor: pointer;
    flex-shrink: 0;
}

#parceirosSlider {
    width: 342px !important;
    max-width: 342px !important;
    height: 259px !important;
    border-radius: 22px !important;
    overflow: hidden !important; /* Mantém tudo contido para arredondar a foto embaixo também */
    position: relative !important;
    flex-shrink: 0;
}

.slider-item {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    background-size: cover !important;
    background-position: center center !important;
    opacity: 0 !important;
    transition: filter 0.3s ease !important;
    z-index: 1;
    display: flex;
    align-items: flex-end;
    border-radius: 22px !important;
    filter: brightness(1);
}

.slider-item.active {
    opacity: 1 !important;
    z-index: 3;
}

.hero-slider:hover .slider-item.active,
#parceirosSlider:hover .slider-item.active {
    filter: brightness(0.75) !important;
}

.slider-content {
    position: absolute !important;
    bottom: 0 !important;
    left: 0 !important;
    width: 100% !important;
    z-index: 10 !important;
    padding: 15px 20px !important;
    background: linear-gradient(to top, rgba(0,0,0,0.95) 0%, rgba(0,0,0,0.5) 60%, rgba(0,0,0,0) 100%) !important;
    box-sizing: border-box !important;
}

.slider-content p {
    display: none !important;
}

.slider-title a {
    color: #ffffff !important;
    text-decoration: none !important;
    font-size: 22px !important;
    font-weight: 800 !important;
    display: block !important;
    margin-bottom: 4px !important;
    transition: none !important;
}

.slider-title a:hover {
    color: #ffffff !important;
}

.parceiro-card {
    width: 342px !important;
    height: 259px !important;
    position: relative !important;
    border-radius: 22px !important;
    overflow: hidden !important;
    background-color: transparent !important;
    box-shadow: none !important;
    border: none !important;
    flex-shrink: 0;
}

.parceiro-card-image {
    width: 100% !important;
    height: 100% !important;
    background-size: cover !important;
    background-position: center center !important;
    position: relative !important;
    border-radius: 22px !important; /* Arredonda a foto inteira por igual, inclusive embaixo */
    overflow: hidden !important;
}

.parceiro-card-footer {
    position: absolute !important;
    bottom: 0 !important;
    left: 0 !important;
    width: 100% !important;
    background-color: #ffffff !important;
    background: #ffffff !important; 
    color: #121d15 !important;
    text-align: center !important;
    padding: 24px 0 12px 0 !important;
    font-size: 14px !important;
    font-weight: bold !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
    z-index: 3 !important;
    border-bottom-left-radius: 22px !important;
    border-bottom-right-radius: 22px !important;
}

.parceiro-card-footer a {
    color: #121d15 !important;
}

.parceiro-card-footer img, 
.parceiro-card-footer .ring-icon {
    position: absolute !important;
    top: -27px !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    width: 60px !important;
    height: auto !important;
    background: transparent !important;
    border: none !important;
    border-radius: 0;
    padding: 0;
}

/*============================================
      SEÇÃO 6.0 - ESPAÇOS DE PUBLICIDADE
=============================================*/
.ad-split-container,
.header-box-horizontal,
.ad-top,
.widget-ad-top {
    display: flex;
    width: 921px;
    max-width: 100%;
    height: 92px;
    margin: 10px auto 30px auto;
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.ad-left-space {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #ffffff;
}

.ad-left-space::before,
.ad-split-container::before {
    content: "Espaço para Publicidade";
    color: #a0a0a0;
    font-family: sans-serif;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.ad-right-image {
    width: 250px;
    height: 92px;
    flex-shrink: 0;
}

.ad-right-image img,
.ad-split-container img,
.header-box-horizontal img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    display: block !important;
    margin: 0 !important;
    border-radius: 0 !important;
    float: none !important;
}

/*============================================
     SEÇÃO 7.0 - CARDS DE NOTÍCIAS
=============================================*/
.content-layout {
    display: flex;
    gap: 30px;
    margin-top: 40px;
}

.main-content {
    flex: 1;
    min-width: 0;
}

.sidebar {
    width: 320px;
    flex-shrink: 0;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, 342px);
    justify-content: center; 
    gap: 25px;
    margin-bottom: 40px;
}

.news-card {
    width: 342px !important;
    height: 435px !important;
    background-color: #121d15 !important;
    border-radius: 22px !important;
    overflow: hidden;
    position: relative;
    box-shadow: 0 10px 20px rgba(0,0,0,0.3) !important;
    border: 1px solid rgba(76, 175, 80, 0.15);
    display: flex !important;
    flex-direction: column !important;
}

.news-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(0, 255, 0, 0.2);
}

.news-card-image {
    height: 200px;
    background-size: cover;
    background-position: center;
    position: relative;
    flex-shrink: 0;
    /* ⬇️ ADICIONADO: Arredonda os cantos inferiores da imagem para dar o efeito da foto de exemplo */
    border-bottom-left-radius: 18px;
    border-bottom-right-radius: 18px;
}

.news-card-ring-icon {
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 60px;
    background-image: url('http://lanternasbrasil.com/wp-content/uploads/2026/08/Lanterna-BlocodeNoticias.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    z-index: 5;
    filter: drop-shadow(0 0 8px rgba(76, 175, 80, 0.8));
}

.news-card-content {
    padding: 35px 20px 20px 20px;
    text-align: center;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.news-card-title {
    font-size: 14px;
    font-weight: 800;
    margin-bottom: 12px;
    line-height: 1.3;
    background: linear-gradient(90deg, #4CAF50 20%, #ffffff 100%) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
}

.news-card-excerpt {
    font-size: 12px;
    color: #b0c4b8;
    margin-bottom: 20px;
    line-height: 1.5;
}

.news-card-footer {
    margin: 0 70px 8px 70px;
    background: #ffffff !important;
    border-radius: 10px !important;
    padding: 8px 5px !important;
    font-size: 10px !important;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #ffffff;
    text-align: center;
    border: 1px solid rgba(76, 175, 80, 0.2);
}

.leia-tambem-grid {
    display: flex !important;
    justify-content: center !important;
    gap: 20px !important;
}

.leia-tambem-grid .news-card {
    width: 250px !important;
    height: 300px !important;
    border-radius: 18px !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: space-between !important;
}

.leia-tambem-grid .news-card-image {
    height: 115px !important;
    flex-shrink: 0;
}

.leia-tambem-grid .news-card-ring-icon {
    width: 36px !important;
    height: 36px !important;
    bottom: -18px !important;
}

.leia-tambem-grid .news-card-content {
    padding: 8px 12px 10px 12px !important;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.leia-tambem-grid .news-card-title {
    font-size: 11px !important;
    margin-bottom: 6px !important;
    line-height: 1.25 !important;
}

.leia-tambem-grid .news-card-excerpt {
    font-size: 9.5px !important;
    margin-bottom: 10px !important;
    line-height: 1.35 !important;
    color: #b0c4b8 !important;
}

.leia-tambem-grid .news-card-footer {
    margin: 0 20px 12px 20px !important;
    padding: 6px 4px !important;
    font-size: 8.5px !important;
    border-radius: 8px !important;
    flex-shrink: 0;
}

/*============================================
      SEÇÃO 8.0 - GALERIA DE FOTOS
=============================================*/
.gallery-main-badge {
    background-image: url('https://lanternasbrasil.com/wp-content/uploads/2026/08/LBR-Fotos.png') !important;
    background-size: contain !important; 
    background-repeat: no-repeat !important;
    background-position: center !important;
    background-color: #0f1d13 !important;
    border-radius: 12px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    min-width: 180px; 
    height: 120px;
    border: 1px solid rgba(76, 175, 80, 0.3);
    color: #4CAF50;
    font-weight: 800;
    text-transform: uppercase;
    text-align: center;
    position: relative;
}

.gallery-main-badge span {
    margin-top: auto;
    font-size: 11px;
}

.gallery-nav-links a {
    position: relative;
    text-decoration: none;
    color: #ffffff;
    padding-bottom: 4px;
    transition: color 0.3s ease;
}

.gallery-nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0; 
    height: 2px;
    background: linear-gradient(to right, transparent, rgba(76, 175, 80, 1), transparent);
    transition: width 0.4s ease, left 0.4s ease;
}

.gallery-nav-links a:hover::after {
    width: 100%;
    left: 0;
}

/*============================================
      SEÇÃO 9.0 - COLUNA LANTERNAS E BANNERS
=============================================*/
.secao-coluna-lanternas {
    position: relative;
    width: 552px;
    flex-shrink: 0;
    margin: 0;
    box-sizing: border-box;
}

.coluna-lanternas-bloco {
    position: relative;
    width: 100%;
    height: 279px;
    display: flex;
    align-items: center;
}

.coluna-lanternas-imagem-wrapper {
    position: absolute;
    left: 0;
    top: 0;
    width: 213px;
    height: 279px;
    z-index: 2;
    border-radius: 12px 0 0 12px;
    overflow: hidden;
}

.coluna-lanternas-imagem-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transform: none !important;
    transition: none !important;
}

.coluna-lanternas-conteudo {
    position: absolute;
    right: 0;
    top: 0;
    width: 339px;
    height: 279px;
    background-color: #182b1e;
    border-radius: 0 12px 12px 0;
    border: 1px solid rgba(76, 175, 80, 0.2);
    border-left: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    padding: 24px 28px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: center;
    z-index: 1;
    margin-left: -15px;
    padding-left: 35px;
}

.coluna-lanternas-titulo {
    font-size: 15px;
    margin-bottom: 10px;
    line-height: 1.25;
}

.coluna-lanternas-titulo a {
    color: #ffffff;
    text-decoration: none;
}

.coluna-lanternas-titulo a:hover {
    color: #4CAF50;
}

.coluna-lanternas-excerpt {
    font-family: sans-serif;
    font-size: 11.5px;
    color: #b0c4b8;
    line-height: 1.45;
    display: -webkit-box;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.coluna-lanternas-excerpt p {
    margin: 0;
}

.banner-box {
    border-radius: 0px;
    overflow: hidden;
    margin-bottom: 0;
    border: 1px solid rgba(76, 175, 80, 0.3);
    box-shadow: 0 8px 25px rgba(0,0,0,0.4);
    display: block;
    transition: transform 0.3s ease;
    width: 100%;
}

.banner-box:hover {
    transform: scale(1.01);
}

.banner-box img {
    width: 100%;
    height: 279px;
    object-fit: cover;
    display: block;
}

/*============================================
      SEÇÃO 10.0 - MÍDIAS SOCIAIS E VÍDEO OFICIAL
=============================================*/
.social-video-grid {
    display: grid;
    grid-template-columns: 423px 1fr;
    gap: 30px;
    margin-bottom: 40px;
    align-items: start;
}

.social-links-col {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: -20px; 
    width: 423px;
}

.social-btn-x {
    display: block;
    width: 423px;
    height: 157px; 
    border-radius: 0px;
    overflow: hidden;
    border: 1px solid rgba(76, 175, 80, 0.3);
    background-color: #0b140e;
}

.social-btn-x img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.social-links-grid {
    display: grid;
    grid-template-columns: 207px 207px;
    gap: 9px;
    width: 423px;
}

.social-btn-square {
    display: block;
    width: 207px;  
    height: 169px; 
    border-radius: 0px;
    overflow: hidden;
    border: 1px solid rgba(76, 175, 80, 0.3);
    background-color: #0b140e;
}

.social-btn-square img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.video-col {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    width: 100%;
}

.video-col .section-title-wrapper,
.video-col .section-title {
    margin-top: 30px; 
    margin-bottom: 15px;
}

.video-container {
    width: 100%;
    height: 341px;
    border-radius: 0px;
    overflow: hidden;
    border: 1px solid rgba(76, 175, 80, 0.3);
}

.video-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/*============================================
      SEÇÃO 11.0 - SIDEBAR E WIDGETS
=============================================*/
.sidebar-widget {
    background-color: #182b1e;
    border-radius: 16px;
    padding: 25px;
    margin-bottom: 30px;
    border: 1px solid rgba(76, 175, 80, 0.2);
}

.sidebar-title {
    font-size: 15px;
    font-weight: 800;
    text-transform: uppercase;
    text-align: center;
    background-color: #000000;
    padding: 10px;
    border-radius: 8px;
    margin-bottom: 20px;
    color: #4CAF50;
    letter-spacing: 1px;
    border: 1px solid rgba(76, 175, 80, 0.3);
}

.about-site-info p {
    font-size: 13px;
    color: #b0c4b8;
    margin-bottom: 12px;
    line-height: 1.5;
}

.about-site-info strong {
    color: #ffffff;
}

/*============================================
      SEÇÃO 12.0 - FOOTER ESTRUTURA GERAL
=============================================*/
.site-footer {
    position: relative;
    background-image: url('http://lanternasbrasil.com/wp-content/uploads/2026/08/Footer.png');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    height: 160px;
    padding: 0 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-top: 60px;
    
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
    image-rendering: pixelated;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    transform: translateZ(0);
}

.footer-box-horizontal {
    max-width: 650px;
    width: 100%;
    margin: 0 auto;
    padding: 10px 20px;
    background-color: #3b6748;
    border: 2px solid #000000;
    border-radius: 1px;
    text-align: center;
    box-sizing: border-box;
    transform: translateY(-94px) translateZ(0);
    z-index: 2;
}

.footer-text-main {
    font-family: sans-serif;
    font-size: 13px;
    letter-spacing: 1px;
    color: #ffffff;
    text-transform: uppercase;
    font-weight: bold;
}

.footer-text-main a {
    color: #ffffff;
    text-decoration: none;
    font-weight: bold;
}

.footer-text-main a:hover {
    text-decoration: underline;
}

/*============================================
      SEÇÃO 13.0 - RESPONSIVIDADE
=============================================*/
@media (max-width: 950px) {
    .ad-split-container,
    .header-box-horizontal,
    .ad-top,
    .widget-ad-top {
        width: 100%;
        height: auto;
        flex-direction: column;
    }
    .ad-right-image {
        width: 100%;
        height: 150px;
    }
}

@media (max-width: 900px) {
    .content-layout {
        flex-direction: column;
    }
    .sidebar {
        width: 100%;
    }
    .two-column-grid, .social-video-grid {
        grid-template-columns: 1fr;
    }
    .main-navigation ul {
        flex-direction: column;
        gap: 10px;
    }
    .section-header-flex {
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }
    .section-header-flex .section-title-wrapper {
        text-align: center;
    }
    .section-search-box {
        width: 100%;
        max-width: 342px;
    }
}

/*============================================
      SEÇÃO 14.0 - ESTILOS DO CORPO DO POST / PÁGINAS (CORREÇÃO DE ESPAÇAMENTO)
=============================================*/
.single-post-box {
    background-color: #182b1e !important;
    padding: 30px !important;
    position: relative !important;
    top: -20px !important;
    margin-bottom: 10px !important; 
    border-top-left-radius: 0 !important;
    border-top-right-radius: 0 !important;
    border-bottom-left-radius: 16px !important;
    border-bottom-right-radius: 16px !important;
    border: 1px solid rgba(76, 175, 80, 0.2);
    border-top: none !important;
    z-index: 10;
}

.page .entry-content p,
.single .entry-content p,
.entry-content p,
.post-content p,
.page-content p,
.text-block p,
.wp-block-paragraph {
    margin-bottom: 25px !important;
    line-height: 1.85 !important;
    color: #ffffff !important;
}

.page .entry-content > *,
.single .entry-content > *,
.entry-content > * {
    margin-bottom: 20px !important;
}

.single-post .main-content strong,
.single-post .main-content b,
.page .entry-content strong,
.page .entry-content b,
.single .entry-content strong,
.single .entry-content b,
.entry-content strong,
.entry-content b,
.post-content strong,
.post-content b {
    color: #4CAF50 !important;
    font-weight: bold;
}

.single-post .main-content h2,
.single-post .main-content h3,
.single-post .main-content h4,
.page .entry-content h2,
.page .entry-content h3,
.page .entry-content h4,
.single .entry-content h2,
.single .entry-content h3,
.single .entry-content h4,
.entry-content h2,
.entry-content h3,
.entry-content h4 {
    margin-top: 40px !important;
    margin-bottom: 18px !important;
    color: #4CAF50 !important;
}

.single-post .main-content iframe,
.entry-content iframe,
.post-content iframe {
    margin: 30px 0;
    display: block;
}

.single-post .main-content img,
.entry-content img,
.post-content img {
    max-width: 100%;
    height: auto;
    border-radius: 0px;
    margin: 20px 0;
}

/*============================================
      SEÇÃO 15.0 - BOTÕES DE COMPARTILHAMENTO
=============================================*/
body .post-footer,
body .entry-footer,
body .share-links,
body .social-share,
body .post-share,
.post-share-footer {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    margin-top: 30px !important;
    padding-top: 15px !important;
    border-top: 1px solid rgba(76, 175, 80, 0.2) !important;
}

body .post-footer a,
body .entry-footer a,
body .share-links a,
body .social-share a,
body .post-share a,
.post-share-footer span a {
    color: #ffffff !important;
    text-decoration: none !important;
    font-weight: bold !important;
    transition: color 0.2s ease, opacity 0.2s ease !important;
}

body .post-footer a:hover,
body .entry-footer a:hover,
body .share-links a:hover,
body .social-share a:hover,
body .post-share a:hover,
.post-share-footer span a:hover {
    color: #4CAF50 !important;
    text-decoration: underline !important;
}

/*============================================
      SEÇÃO 16.0 - BANNERS LADO A LADO
=============================================*/
.banners-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 25px;
    margin-top: 35px;
    margin-bottom: 35px;
}

.banners-grid a {
    height: 280px;
    display: block;
    overflow: hidden;
    border-radius: 0 !important;
    border: none !important;
    padding: 0 !important; 
    margin: 0 !important;
    transition: transform 0.3s ease;
}

.banners-grid .banner-box-horizontal {
    width: 509px;
}

.banners-grid .banner-box-vertical {
    width: 245px;
}

.banners-grid a:hover {
    transform: translateY(-50px);
}

.banners-grid img {
    width: 100%;
    height: 100%;
    object-fit: fill; 
    display: block;
    margin: 0;
    padding: 0;
    border: none;
    border-radius: 0 !important;
}

@media (max-width: 900px) {
    .banners-grid {
        flex-direction: column;
        align-items: center;
    }
    .banners-grid a {
        width: 100%;
        max-width: 400px;
        height: auto;
    }
    .banners-grid .banner-box-horizontal {
        aspect-ratio: 509 / 280;
        width: 100%;
    }
    .banners-grid .banner-box-vertical {
        aspect-ratio: 342 / 435;
        width: 100%;
        height: auto;
    }
}