/* Importação da Montserrat com pesos variados */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700;900&display=swap');

:root {
    --font-titles: 'Montserrat', sans-serif;
}

/* ==========================================================
   COMPENSAÇÃO DO MENU FIXO
   ========================================================== */

body {
    font-family: 'Inter', sans-serif;
}

h1, h2, h3, h4, h5, h6,
.navbar,
.menu,
.titulo-noticia {
    font-family: 'Montserrat', sans-serif;
}

/* Tablets */
@media (max-width: 992px) {
    body {
        padding-top: 130px;
    }
}

/* Mobile */
@media (max-width: 768px) {
    body {
        padding-top: 120px;
    }
}

/* Mobile pequeno */
@media (max-width: 480px) {
    body {
        padding-top: 110px;
    }
}


.container, .container-fluid {
    padding-left: 15px;
    padding-right: 15px;
}


/* Mobile ajuste fino */
@media (max-width: 768px) {
    .logo-navbar {
        max-height: 40px !important;
    }
}



/* Corrige ícone do botão */
.navbar-toggler-icon {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba%280,0,0,0.7%29' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}/* Ícone do botão hamburguer visível */
.navbar-toggler-icon {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba%280,0,0,0.7%29' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}
img {
    max-width: 100%;
    height: auto;
}
/* ==========================================================================
   HIERARQUIA DE TÍTULOS PROFISSIONAL
   ========================================================================== */

h1,
h2,
h3,
.h1,
.h2,
.h3 {

    font-family: 'Montserrat', sans-serif;

    color: #1a1a1a;

    line-height: 1.15;

    margin-bottom: 1rem;

    text-rendering: optimizeLegibility;
}

/* ==========================================================================
   H1
   ========================================================================== */

h1,
.h1 {

    font-size: clamp(2.3rem, 5vw, 4.2rem);

    font-weight: 800;

    letter-spacing: -0.03em;
}

/* ==========================================================================
   H2
   ========================================================================== */

h2,
.h2 {

    font-size: clamp(1.9rem, 4vw, 3rem);

    font-weight: 700;

    letter-spacing: -0.02em;
}

/* ==========================================================================
   H3
   ========================================================================== */

h3,
.h3 {

    font-size: clamp(1.4rem, 3vw, 2rem);

    font-weight: 700;

    letter-spacing: -0.01em;
}
/* Classe auxiliar para o efeito de duas cores que você pediu */
.text-accent {
    color: #0d6efd; /* Substitua pela sua cor de destaque */
}
.form {
    margin-bottom: 0;
}

.hover-link-footer:hover {
        color: var(--bs-primary) !important;
        padding-left: 5px;
        transition: 0.3s;
    }
.nome-site {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 1.6rem;
    letter-spacing: 1px;
}
/* Estilo do Container */
.menu-footer-custom {
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column; /* Deixa um embaixo do outro, se quiser lado a lado use 'row' */
    gap: 4px; /* Controle total da distância entre os itens (ajunta mais) */
}

/* Estilo do Link */
.menu-link {
    color: #ffffff !important; /* Cor branca padrão */
    text-decoration: none;
    font-size: 1.0rem; /* Tamanho 'small' controlado */
    padding: 4px 8px; /* Reduzi o padding para "ajuntar" */
    border-radius: 4px;
    display: inline-block;
    transition: all 0.3s ease; /* Transição suave para o verde */
}

/* Hover (Passar o mouse) e Active (Clicar/Focar) */
.menu-link:hover, 
.menu-link:active,
.menu-link:focus {
    color: #ffffff !important; /* Mantém o texto branco no fundo verde */
    background-color: #198754; /* Verde Sucesso do Bootstrap */
    padding-left: 12px; /* Efeito sutil de deslocamento (opcional) */
}

/* Remove qualquer marcação de lista que sobrar */
.menu-item {
    list-style: none;
}

.footer-hero {
    position: relative;
    padding-top: 80px;
    padding-bottom: 40px;

   
    color: #080808;
    overflow: hidden;
}

/* Overlay elegante */
.footer-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(255, 255, 255),
        rgba(143, 142, 142, 0.92)
    );
    backdrop-filter: blur(3px);
}

/* Conteúdo acima do overlay */
.footer-hero .container {
    position: relative;
    z-index: 2;
}

/* Links */
.footer-hero a {
    color: rgba(48, 46, 46, 0.85);
    transition: 0.3s ease;
}

.footer-hero a:hover {
    color: #615f5f;
    transform: translateX(4px);
}

/* Títulos */
.footer-hero h6 {
    font-weight: 600;
    letter-spacing: 1px;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

/* HR elegante */
.footer-hero hr {
    border: none;
    height: 1px;
    background: linear-gradient(
        to right,
        transparent,
        rgba(255,255,255,0.3),
        transparent
    );
}

.banner-slide {
    min-height: 400px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    animation: zoomBanner 12s ease-in-out infinite alternate;
}

@keyframes zoomBanner {
    from { transform: scale(1); }
    to   { transform: scale(1.08); }
}


/* TOPO */
.top-header {
    background: #ffffff;
    padding: 10px 15px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.05);
    z-index: 1050;
}

/* LOGO */
.logo-navbar {
    height: 65px;
}

/* ESPAÇO POR CAUSA DO FIXED */
.mt-header {
    margin-top: 85px;
}

/* =========================
   NAVBAR BASE
========================= */
.navbar.navbar-glass {
    background: #0b1d2a !important;
    padding: 12px 0;
    transition: all 0.3s ease;
}

/* =========================
   LINKS (FORÇA MÁXIMA)
========================= */
.navbar.navbar-glass .navbar-nav .nav-item .nav-link {
    color: #ffffff !important;
    font-weight: 600;
    position: relative;
    display: inline-block;
    padding: 8px 12px;
    transition: color 0.3s ease;
}

/* HOVER + ACTIVE */
.navbar.navbar-glass .navbar-nav .nav-item .nav-link:hover,
.navbar.navbar-glass .navbar-nav .nav-item .nav-link.active {
    color: #ffd700 !important;
}

/* =========================
   UNDERLINE PERFEITO
========================= */
.navbar.navbar-glass .navbar-nav .nav-item .nav-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 4px;
    width: 0;
    height: 2px;
    background: #ffd700 !important;
    border-radius: 2px;
    transition: width 0.3s ease;
}

/* ANIMAÇÃO */
.navbar.navbar-glass .navbar-nav .nav-item .nav-link:hover::after,
.navbar.navbar-glass .navbar-nav .nav-item .nav-link.active::after {
    width: 100%;
}


.noticia-conteudo p {
    margin-bottom: 1.25rem;
}

.noticia-conteudo img {
    max-width: 100%;
    height: auto;
}

.titulo-secao {
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    padding-bottom: .5rem;
    border-bottom: 2px solid #222;
}
.noticia-destaque {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.noticia-destaque:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.destaque-imagem {
    height: 400px;
    background-size: cover;
    background-position: center;
    transition: transform 0.4s ease;
}

.noticia-destaque:hover .destaque-imagem {
    transform: scale(1.05);
}


.filtro-categorias {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.filtro-btn {
    padding: 6px 14px;
    border: 1px solid #ddd;
    border-radius: 20px;
    text-decoration: none;
    font-size: 0.85rem;
    color: #333;
    transition: all .2s ease;
}

.filtro-btn:hover {
    background: #f5f5f5;
}

.filtro-btn.ativo {
    background: #222;
    color: #fff;
    border-color: #222;
}


.card-title {
    line-height: 1.2;
}
.conteudo {
    text-align: justify;
}
/* Título da Seção */
.reflection-title {
    color: #c1ddc1;
    letter-spacing: 1.5px;
    border-bottom: 3px solid #198754; /* Verde sucesso */
    padding-bottom: 8px;
    display: inline-block;
}

/* Container do Card */
.versiculo-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 15px;
    padding: 30px 20px;
    position: relative;
    border: 1px solid rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

.versiculo-card:hover {
    transform: translateY(-5px);
}

/* Aspas Decorativas */
.quote-icon {
    font-size: 2.5rem;
    color: #198754;
    opacity: 0.2;
    position: absolute;
    top: 10px;
    left: 15px;
    line-height: 1;
}

/* Texto Principal */
.versiculo-texto {
    font-family: 'Georgia', serif; /* Fonte serifada traz mais autoridade e reflexão */
    font-style: italic;
    font-size: 1.1rem;
    color: #444;
    line-height: 1.6;
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
}

/* Referência */
.versiculo-ref {
    font-weight: 700;
    color: #198754;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
}
.btn-share-minimal:hover {
    background-color: #25D366; /* Verde oficial do WhatsApp */
    color: white;
    border-color: #128C7E;
}
.divider {
    width: 40px;
    margin: 15px auto;
    border-top: 2px solid #198754;
    opacity: 0.3;
}

/* Botão de Compartilhar */
.btn-share-minimal {
    background: transparent;
    border: 1px solid #dee2e6;
    color: #6c757d;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    margin-top: 20px;
    transition: all 0.3s ease;
}

.btn-share-minimal:hover {
    background-color: #198754;
    color: white;
    border-color: #198754;
}




.logo-site-footer {
    max-width: 160px;
    height: auto;
}

.logo-site {
    height: 100px;
    width: auto;
    transition: transform 0.4s ease, filter 0.4s ease;
}



.logo-site:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 4px 10px rgba(255, 255, 255, 0.25));
}
.card-img-top {
    height: 300px;
    object-fit: cover;
}
.col-md-6 .card-img-top {
    height: 120px;
}

/* LINKS NAVBAR */
.navbar .nav-link {
    font-weight: 500;
    color: #444;
    position: relative;
    transition: 0.3s ease;
}

.navbar .nav-link:hover {
    color: #198754;

}

/* Efeito underline moderno */
.navbar .nav-link::after {
    content: "";
    position: absolute;
    bottom: 6px;
    left: 20%;
    width: 0;
    height: 2px;
    background: #198754;
    transition: 0.3s;
}

.navbar .nav-link:hover::after {
    width: 60%;
}


/* Labels do formulário */
.form-label {
  font-size: 0.9rem;
  font-weight: 500;
  color: #374151;
}

/* Inputs */
.form-control {
  font-size: 0.95rem;
  padding: 0.65rem 0.75rem;
  border-radius: 0.5rem;
}

/* Placeholder */
.form-control::placeholder {
  color: #9ca3af;
}

/* Botão */
.btn-primary {
  font-weight: 500;
  letter-spacing: 0.3px;
}

/* Texto lateral */
.text-muted {
  font-size: 0.95rem;
}

.banner-container {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.contact-hero {
    background:
        linear-gradient(rgba(0,0,0,.6), rgba(0,0,0,.6)),
        url('/assets/img/atendimento-contato.webp') center / cover no-repeat;
    padding-top: calc(3rem + 70px);
    min-height: 50vh;
    display: flex;
    align-items: center;
    border-radius: 10px;
    justify-content: center;

    padding: 3rem 1rem;
    text-align: center;
    animation: fadeHero 1s ease forwards;
}

.social-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff !important;
    font-size: 1.3rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-icon:hover {
    transform: translateY(-4px);
    opacity: 0.9;
    color: #ffffff !important;
}

/* Cores */
.social-icon.instagram { background: #e1306c; }
.social-icon.facebook  { background: #1877f2; }
.social-icon.twitter   { background: #000000; }
.social-icon.youtube   { background: #ff0000; }

/* Seção de Testemunho Premium */
.testimony-cta {
    background: linear-gradient(135deg, #198754 0%, #146c43 100%); /* Degradê mais rico */
    border-radius: 20px; /* Bordas arredondadas para o container */
    padding: 80px 40px;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

/* Efeito decorativo de fundo (opcional) */
.testimony-cta::before {
    content: '"';
    position: absolute;
    top: -20px;
    right: 40px;
    font-size: 20rem;
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.05);
    z-index: -1;
}

.testimony-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    font-size: clamp(1.8rem, 4vw, 3rem);
    letter-spacing: -1px;
    line-height: 1.1;
}

.testimony-text {
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
    letter-spacing: 0.5px;
}

/* Botão Estilizado */
.btn-testimony {
    background: #fff;
    color: #198754;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 15px 40px;
    border-radius: 50px;
    transition: all 0.3s ease;
    border: none;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.btn-testimony:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.2);
    background: #f8f9fa;
    color: #146c43;
}

/* Barra de Título de Seção Premium */
.testimony-header-bar {
    background: linear-gradient(to right, #146c43, #198754);
    border-radius: 12px;
    padding: 20px 35px !important;
    position: relative;
    overflow: hidden;
}

/* Detalhe de luz suave no fundo */
.testimony-header-bar::after {
    content: '';
    position: absolute;
    top: 0; right: 0; bottom: 0;
    width: 30%;
    background: linear-gradient(to left, rgba(255,255,255,0.1), transparent);
}

.testimony-header-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    font-size: 1.5rem;
    letter-spacing: -0.5px;
    margin: 0;
    text-transform: uppercase;
}

.testimony-header-dot {
    color: #ffc107; /* Ponto dourado para charme visual */
}

/* Estilo focado 100% na tipografia */
.pure-text-section {
    padding: 100px 0;
    background-color: #ffffff;
}

.huge-statement {
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    /* Fonte gigante que se ajusta à tela */
    font-size: clamp(2.5rem, 7vw, 5rem); 
    line-height: 1;
    letter-spacing: -3px;
    color: #1a1a1a;
    margin: 0;
    text-transform: uppercase; /* Opcional: para um ar mais impactante */
}

.text-highlight {
    color: #198754; /* O verde apenas na palavra chave */
}

/* Link sutil logo abaixo, caso precise clicar */
.minimal-link {
    display: inline-block;
    margin-top: 30px;
    font-weight: 700;
    color: #1a1a1a;
    text-decoration: none;
    border-bottom: 2px solid #198754;
    padding-bottom: 5px;
    transition: 0.3s;
}

.minimal-link:hover {
    color: #198754;
}


/* Remove qualquer overflow horizontal indesejado */
body { overflow-x: hidden; }

/* Estilo do texto gigante sem margens excessivas */
.huge-statement {
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1;
    margin-bottom: 0;
}
/* Ajuste das badges e textos */
.badge-location {
    background-color: #e8f5e9;
    color: #198754;
    padding: 0.5rem 0.8rem;
    border-radius: 8px;
    font-size: 0.85rem;
    display: inline-block;
}
.testemunho-hero {
    background:
        linear-gradient(rgba(0,0,0,.55), rgba(0,0,0,.55)),
        url('/assets/img/testemunho-milagre.webp') center / cover no-repeat;

    padding-top: calc(3rem + 70px);
    padding-bottom: 3rem; /* cria equilíbrio */
    border-radius: 10px;
    margin-top: 2rem; /* espaçamento superior */
    
    min-height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    
    color: #fff;
    
    border-radius: 15px; /* deixa mais moderno */
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,.15);
    
    animation: fadeHero 1s ease forwards;
}

@keyframes fadeHero {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.testemunho-hero::before {
    content: "";
    position: absolute;
    top: -30px;
    left: 0;
    width: 100%;
    height: 30px;
    background: linear-gradient(to bottom, rgba(0,0,0,0.15), transparent);
}
.testemunho-foto {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border: 1px solid #198754;
}

.testemunho-card {
    transition: transform .2s ease, box-shadow .2s ease;
}

.testemunho-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(0,0,0,.08);
}
.testemunho.destaque {
    background: linear-gradient(135deg, #f8fff8, #ffffff);
    border-left: 5px solid #198754;
    padding: 1.5rem;
}

.testemunho.destaque p {
    font-size: 1.1rem;
}
.testemunho.destaque img {
    box-shadow: 0 8px 24px rgba(0,0,0,.15);
}

.location .badge {
    font-weight: 500;
    font-size: 0.7rem;
    letter-spacing: .3px;
}

.location i {
    opacity: .85;
}
.pagination-success .page-link {
    color: #198754; /* Bootstrap success */
    border-color: #198754;
}
.pagination-success {
    --bs-pagination-focus-box-shadow: 0 0 0 0.2rem rgba(25, 135, 84, 0.25);
}

.pagination-success .page-link:hover {
    background-color: #198754;
    color: #fff;
}

.pagination-success .page-item.active .page-link {
    background-color: #198754;
    border-color: #198754;
    color: #fff;
}

.pagination-success .page-item.disabled .page-link {
    color: #6c757d;
}
.quemsomos-hero {
    background:
        linear-gradient(rgba(0,0,0,.55), rgba(0,0,0,.55)),
        url('/assets/img/logo-projeto.webp') center / cover no-repeat;
    padding-top: calc(3rem + 70px);
    min-height: 50vh;
    display: flex;
    border-radius: 10px;
    align-items: center;
    justify-content: center;
    color: #fff;
    animation: fadeHero 1s ease forwards;
}
.icon-box {
    background: #198754;
    border-radius: 6px;
    padding: 24px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04);
    height: 100%;
}

.icon-box img {
    width: 64px;
    height: 64px;
    object-fit: contain;
    margin-bottom: 16px;
    transition: transform 0.3s ease;
}

/* Hover elegante */
.icon-box:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
}

/* Ícone anima suavemente */
.icon-box:hover img {
    transform: scale(1.1);
}

/* Texto */
.icon-box h5 {
    font-weight: 600;
    margin-bottom: 8px;
    

}

.icon-box p {
    font-size: 0.95rem;
    color: #ffffff;
}
.icon-box:hover {
    background: #198754;
    color: #fff;
}

.icon-box:hover p {
    color: rgba(255, 255, 255, 0.85);
}

.icon-box:hover img {
    filter: brightness(0) invert(1);
}
.feature-box {
    padding: 2rem 1.5rem;
}

.feature-icon {
    width: 96px;
    height: 96px;
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon img {
    width: 100%;
    height: auto;
    max-height: 96px;
    object-fit: contain;
    transition: transform 0.3s ease, filter 0.3s ease;
}

/* Hover sutil */
.feature-box:hover .feature-icon img {
    transform: translateY(-6px);
    filter: drop-shadow(0 8px 14px rgba(24, 135, 84, 0.35));
}

.feature-title {
    font-weight: 600;
    margin-top: 1rem;
    color: #212529;
}

.feature-text {
    color: #6c757d;
    font-size: 0.95rem;
    line-height: 1.6;
}
.bg-biblia {
    background: linear-gradient(135deg, #2f1b0c, #4a2c14);
    color: #f5f5f5;
}
.historia-section {
    position: relative;
    min-height: 80vh;

    display: flex;
    align-items: center; /* centro vertical */

    background: url("/assets/img/minha-historia.webp") center 20% / cover no-repeat;
}


/* Degradê apenas no lado do texto */
.historia-section::before {
    content: "";
    position: absolute;
    inset: 0;

    background: linear-gradient(
        to right,
        rgba(0, 0, 0, 0.65) 0%,
        rgba(0, 0, 0, 0.45) 40%,
        rgba(0, 0, 0, 0.15) 65%,
        rgba(0, 0, 0, 0.0) 100%
    );
}

/* Conteúdo acima do degradê */
.historia-section .container {
    position: relative;
    z-index: 2;
}

/* Caixa do texto */
.historia-content {
    margin-top: 120px;
}

.identidade-title {
    font-size: clamp(2.8rem, 5vw, 4.2rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.identidade-title span {
    color: #188754; /* sua cor institucional */
}

/* Título */
.historia-title {
    font-size: 3.4rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1.5rem;
}

/* Texto */
.historia-text {
    font-size: 1.05rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1rem;
}
.tempo-leitura {
    font-size: 0.9rem;
    color: #6c757d;
}


.weather-widget {
    padding: 18px;
    background: #fff;
    border: 1px solid #e5e5e5;
    border-radius: 6px;
}

.weather-header {
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: #777;
    margin-bottom: 12px;
}

.weather-city {
    font-weight: 600;
    color: #111;
}

.weather-main {
    display: flex;
    align-items: center;
    gap: 12px;
}

.weather-main img {
    width: 48px;
    height: 48px;
}

.weather-temp {
    font-size: 42px;
    font-weight: 700;
    line-height: 1;
}






.weather-desc {
    margin-top: 6px;
    font-size: 14px;
    color: #555;
}

.weather-range {
    margin-top: 4px;
    font-size: 13px;
    color: #777;
}

.weather-range .temp-max {
    color: #c00; /* vermelho quente */
    font-weight: 600;
}

.weather-range .temp-min {
    color: #0a8c0a; /* verde fresco */
    font-weight: 600;
}


.divider-text {
    display: flex;
    align-items: center;
    margin: 40px 0 30px;
}

.divider-text::before,
.divider-text::after {
    content: "";
    flex: 1;
    height: 1px;
    background: #ddd;
}

.divider-text span {
    padding: 0 12px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    color: #777;
}




.bg-faith {
    background: linear-gradient(135deg, #198754, #157347);
    color: #fff;
}
.card-soft {
    border: 0;
    border-radius: 18px;
    box-shadow: 0 10px 30px rgba(0,0,0,.08);
}
.text-soft {
    color: rgba(255,255,255,.85);
}

.lead-soft {
    font-size: 1.1rem;
    line-height: 1.7;
}
.icon-projeto {
    max-width: 140px;
    height: auto;
    display: block;
    margin: 0 auto;
    transition: transform .3s ease, filter .3s ease;
}


.icon-projeto:hover {
    transform: translateY(-6px);
    filter: drop-shadow(0 8px 16px rgba(0,0,0,.15));
}

.section-title-projeto {
    font-weight: 700;
    font-size: 2rem;
    color: #1f2933; /* cinza elegante */
}

.section-title-projeto .highlight {
    color: #198754; /* verde Bootstrap */
}

.titulo-projeto {
    font-weight: 700;
    font-size: 2.5rem;
    color: #198754;  /* escuro elegante */
}
.titulo-evangeliza {
    font-weight: 700;
    font-size: 2.5rem;
    color: #12b5f5;  /* escuro elegante */
}

/* Navbar com Efeito Vidro */
.navbar-glass {
    background: rgba(255, 255, 255, 0.8) !important; /* Branco translúcido */
    backdrop-filter: blur(12px); /* O "embaçado" do vidro */
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.4s ease;
}

/* Ajuste da Logo */
.logo-img {
    height: 40px;
    width: auto;
}

.brand-text {
    font-size: 1.3rem;
    color: #333;
    letter-spacing: -0.5px;
}

/* Estilo dos Links do Menu */
.custom-nav .nav-link {
    color: #444 !important;
    font-weight: 500;
    font-size: 0.95rem;
    position: relative;
    transition: color 0.3s ease;
}

/* Efeito de Linha Embaixo no Hover */
.custom-nav .nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 5px;
    left: 50%;
    background-color: #198754;
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.custom-nav .nav-link:hover::after,
.custom-nav .nav-link.active::after {
    width: 60%;
}

.custom-nav .nav-link:hover,
.custom-nav .nav-link.active {
    color: #198754 !important;
}

/* Botão Personalizado */
.btn-milagre {
    background-color: #198754;
    color: white !important;
    border-radius: 50px;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 0.5px;
    transition: transform 0.2s, box-shadow 0.2s;
    border: none;
}

.btn-milagre:hover {
    background-color: #157347;
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(25, 135, 84, 0.3);
}

/* Ajuste para quando o usuário rolar a página (Opcional via JS) */
.navbar-scrolled {
    padding: 10px 0;
    background: rgba(255, 255, 255, 0.95) !important;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}
/* Quando o usuário rolar a página */
.navbar-scrolled {
    padding: 8px 0;
    background: rgba(255, 255, 255, 0.95);
}

.nav-link {
    color: #444;
    position: relative;
    transition: 0.3s;
}

/* Linha animada ao passar o mouse */
.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 5px;
    left: 15%;
    background-color: #198754;
    transition: width 0.3s;
}

.nav-link:hover::after {
    width: 70%;
}

.nav-link:hover {
    color: #198754 !important;
}
/* Efeito de Zoom na Galeria */
    .zoom-container {
        overflow: hidden; /* Importante para o zoom não sair do card */
        border-radius: 12px;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }
    
    .zoom-container img {
        transition: transform 0.5s ease;
    }

    .zoom-container:hover img {
        transform: scale(1.1); /* Ajuste o nível do zoom aqui */
    }

    .zoom-container:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 20px rgba(0,0,0,0.15) !important;
    }

    /* Botão de compartilhamento estilo Pill */
    .share-pill {
        width: 38px;
        height: 38px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        background: #fff;
        box-shadow: 0 2px 5px rgba(0,0,0,0.1);
        color: #25D366; /* Cor do WhatsApp */
        transition: 0.3s;
    }
    .share-pill:hover { background: #25D366; color: #fff; }

    /* Texto de Destaque Estilizado */
.section-title-huge {
    font-size: clamp(2rem, 5vw, 3.5rem); /* Fonte fluida: aumenta no PC, diminui no celular */
    line-height: 1.1;
    font-weight: 900;
    letter-spacing: -2px;
    margin-bottom: 40px;
    text-align: center;
}

/* Efeito de Duas Cores */
.text-split {
    color: #000; /* Cor inicial */
}

.text-split span {
    color: #0d6efd; /* Segunda cor (Ex: Azul Bootstrap ou a cor da sua marca) */
    display: block; /* Faz a segunda parte ir para a linha de baixo para mais impacto */
}/* Wrapper interno para movimento */
.evento-wrapper {
    transition: transform 0.2s ease-in-out;
}

/* Zoom leve ao passar o mouse */
#eventoLeft:hover .evento-wrapper,
#eventoRight:hover .evento-wrapper {
    transform: scale(1.02);
}

/* Botão com hover glow */
.btn-success {
    transition: box-shadow 0.3s, transform 0.3s;
}
.btn-success:hover {
    box-shadow: 0 6px 20px rgba(25,135,84,0.6);
    transform: translateY(-2px);
}
/* Banner Hero da Galeria */
.galeria-principal-hero {
    position: relative;
    height: 45vh; /* altura ideal para hero */
    background: 
        linear-gradient(rgba(0,0,0,0.2), rgba(0,0,0,0.2)), /* overlay sutil */
        url('/assets/img/logo-galeria-principal.webp') center/cover no-repeat;
        animation: fadeHero 1s ease forwards;
        border-radius: 10px;
}

.galeria-principal-hero h1,
.galeria-principal-hero p {
    text-shadow: 0 3px 10px rgba(0,0,0,0.3); /* dá destaque sem exagero */
}


.galeria-hero {
    position: relative;
    height: 45vh; /* altura ideal para hero */
    background: 
        linear-gradient(rgba(0,0,0,0.2), rgba(0,0,0,0.2)), /* overlay sutil */
        url('/assets/img/logo-galeria.webp') center/cover no-repeat;
        animation: fadeHero 1s ease forwards;
        border-radius: 10px;
}

.galeria-hero h1,
.galeria-hero p {
    text-shadow: 0 3px 10px rgba(0,0,0,0.3); /* dá destaque sem exagero */
}




#bannerCarousel .carousel-inner {
    max-height: 400px; /* altura máxima do carousel */
    overflow: hidden;   /* corta partes que extrapolam */
    border-radius: 0px;
}

#bannerCarousel .carousel-item img {
    height: 100%;
    width: 100%;
    object-fit: cover; /* mantém proporção e preenche o container */
}
#bannerCarousel .carousel-item img {
    transition: transform 8s ease; /* duração do efeito */
}

#bannerCarousel .carousel-item.active img {
    transform: scale(1.05); /* zoom leve no slide ativo */
}

.note-editable img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0.5rem 0;
}

.conteudo-mensagem p {
    margin-bottom: 1.2rem;
}
.conteudo-mensagem h2,
.conteudo-mensagem h3 {
    margin-top: 2rem;
    font-weight: 600;
}
.card-msg-relacionada {
    transition: all 0.25s ease;
}

.card-msg-relacionada:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 28px rgba(0,0,0,0.08);
}

.card-msg-relacionada img {
    transition: transform 0.4s ease;
}

.card-msg-relacionada:hover img {
    transform: scale(1.05);
}
.card-msg-relacionada {
    border-top: 3px solid #0d6efd;
}
.sidebar-item {
    transition: all 0.2s ease;
}

.sidebar-item:hover {
    transform: translateX(4px);
}
.sidebar-msg-hero {
    transition: all 0.3s ease;
}

.sidebar-msg-hero-img {
    transition: transform 0.4s ease;
}

.sidebar-msg-hero-overlay {
    background: linear-gradient(to top, rgba(0,0,0,0.85), rgba(0,0,0,0.3), transparent);
    transition: opacity 0.3s ease;
}

.sidebar-msg-hero:hover {
    transform: translateY(-6px);
    box-shadow: 0 14px 32px rgba(0,0,0,0.12);
}

.sidebar-msg-hero:hover .sidebar-hero-img {
    transform: scale(1.05);
}
/* barra editorial */
.home-msg-bar{
height:4px;
background:linear-gradient(90deg,#0d6efd,#4dabf7);
}

/* imagem padronizada */
.home-msg-img{
height:180px;
overflow:hidden;
}

.home-msg-img img{
object-fit:cover;
transition:transform .4s ease;
}

/* hover */
.home-msg-card{
transition:all .25s ease;
}

.home-msg-card:hover{
transform:translateY(-5px);
box-shadow:0 16px 30px rgba(0,0,0,.08);
}

.home-msg-card:hover img{
transform:scale(1.06);
}

/* limitar título */
.home-msg-title{
display:-webkit-box;
-webkit-line-clamp:2;
line-clamp:2;
-webkit-box-orient:vertical;
overflow:hidden;
}
/* container que segura a imagem */
.img-hover{
overflow:hidden;
}


.img-move {
    width: 100%;
    transition: transform .45s ease;
    object-fit: cover;
    object-position: center top; /* PRIORIDADE NO ROSTO */
   
}

/* movimento suave */
.card:hover .img-move{
transform: scale(1.06);
}
.evento-topo{
background:linear-gradient(90deg,#198754,#2ecc71);
font-size:18px;
letter-spacing:1px;
text-transform:uppercase;
margin-bottom:10px;
}
/* container da imagem */
.evento-wrapper{
height:100%;
}

/* imagem */
.evento-img{
object-fit:cover;
transition:transform .6s ease;
}

/* overlay escuro suave */
.evento-overlay{
position:absolute;
top:0;
left:0;
width:100%;
height:100%;
background:linear-gradient(
    to bottom,
    rgba(0,0,0,0.05),
    rgba(0,0,0,0.25)
);
opacity:0;
transition:opacity .4s ease;
}

/* efeito ao passar o mouse */
#eventoLeft:hover .evento-img{
transform:scale(1.08);
}

#eventoLeft:hover .evento-overlay{
opacity:1;
}
.biblia-livros{
cursor:pointer;
transition: all .2s;
}

.biblia-livros:hover{
transform: translateY(-4px);
box-shadow:0 15px 30px rgba(0,0,0,0.12);
}
.capitulo-card{
    transition: all .2s;
    cursor:pointer;
}

.capitulo-card:hover{
    background:#0d6efd;
    color:#fff;
    transform:translateY(-3px);
}
.bible-text{
max-width:720px;
margin:auto;
font-size:19px;
line-height:1.9;
color:#222;
}

.versiculo{
margin-bottom:14px;
}

.numero{
color:#0d6efd;
font-weight:bold;
margin-right:6px;
}

.bible-text p:hover{
background:#f8f9fa;
padding:4px 6px;
border-radius:6px;
}
.capitulos-grid{
display:grid;
grid-template-columns:repeat(5,1fr);
gap:6px;
}

.capitulo-link{
display:block;
text-align:center;
padding:6px;
border:1px solid #dee2e6;
border-radius:6px;
text-decoration:none;
color:#333;
}

.capitulo-link:hover{
background:#0d6efd;
color:#fff;
}

.capitulo-link.ativo{
background:#0d6efd;
color:#fff;
font-weight:bold;
}
.titulo-linha{
height:2px;
width:40px;
background:#198754;
border-radius:2px;
}
.testemunho-card{
border-radius:10px;
transition:.2s;
}

.testemunho-card:hover{
transform:translateY(-2px);
box-shadow:0 8px 20px rgba(0,0,0,.08);
}
.bible-book {
    transition: all 0.25s ease;
    cursor: pointer;
    border: 1px solid #eee;
}

.bible-book:hover {
    transform: translateY(-5px);
    background-color: #f8f9fa; /* leve cinza */
    border-color: #0d6efd; /* azul Bootstrap */
    box-shadow: 0 10px 20px rgba(0,0,0,0.15);
}

.bible-book:hover h6 {
    color: #0d6efd; /* muda cor do texto */
}

.bible-book:active {
    transform: scale(0.95);
}
.mark {
    background-color: #ffe066;
    padding: 2px 4px;
    border-radius: 3px;
}
.busca-topo {
    background: linear-gradient(135deg, #eef3ff, #f8f9fa);
    border-radius: 12px;
}

.busca-topo h2 {
    color: #0d6efd;
}
.mensagem-biblia-card {
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.25s ease;
}

.mensagem-biblia-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(0,0,0,0.1);
}

.overlay-biblia-titulo {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 12px;
    font-weight: bold;
    font-size: 15px;
    color: #fff;
    background: linear-gradient(to top, rgba(0,0,0,0.75), transparent);
}
.hero-biblia {
    padding: 30px;
    border-radius: 12px;
    background: linear-gradient(135deg, #ffffff, #f8f9fa);
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
    text-align: center;
}

.hero-ref {
    font-size: 13px;
    color: #6c757d;
    letter-spacing: 1px;
}

.hero-verso {
    font-size: 20px;
    font-weight: 500;
    line-height: 1.6;
    color: #222;
}
.btn-share {
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    text-decoration: none;
    border: 1px solid #ddd;
    color: #444;
    transition: all 0.2s ease;
}

.btn-share:hover {
    background: #f5f5f5;
}

.btn-share.whatsapp:hover {
    color: #25d366;
}

.btn-share.facebook:hover {
    color: #1877f2;
}

.btn-share.twitter:hover {
    color: #1da1f2;
}

.btn-share.copiar:hover {
    color: #000;
}
.hero-comparar {
    padding: 25px 20px;
    border-radius: 12px;
    background: linear-gradient(135deg, #f8f9fa, #ffffff);
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}

.hero-content h3 {
    font-size: 20px;
}

.btn-comparar {
    padding: 8px 18px;
    border-radius: 20px;
    background: #0d6efd;
    color: #fff;
    text-decoration: none;
    font-size: 18px;
    transition: all 0.2s ease;
}

.btn-comparar:hover {
    background: #0b5ed7;
}
.estudo-biblia {
    padding: 25px;
    border-radius: 12px;
    background: #f8f9fa;
}
.hero-biblia {
    padding: 40px 25px;
    border-radius: 16px;
    background: linear-gradient(135deg, #f8f9fa, #ffffff);
    border: 1px solid #eee;
    box-shadow: 0 20px 40px rgba(0,0,0,0.05);
    position: relative;
    overflow: hidden;
}

/* detalhe suave no fundo */
.hero-biblia::before {
    content: "";
    position: absolute;
    top: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(13,110,253,0.08), transparent);
}

/* referência (Gênesis 1:1) */
.hero-ref {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #6c757d;
}

/* versículo */
.hero-verso {
    font-size: 22px;
    font-weight: 500;
    line-height: 1.7;
    color: #222;
    max-width: 700px;
    margin: 0 auto;
}

/* botão */
.hero-biblia .btn {
    border-radius: 20px;
    padding: 6px 16px;
}
.feature-card {
    padding: 18px;
    border-radius: 12px;
    background: #fff;
    border: 1px solid #eee;
    transition: all 0.25s ease;
}

.feature-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.06);
}

/* LINK LIMPO (SEM SETA) */
.btn-link-clean {
    font-size: 13px;
    font-weight: 600;
    color: #0d6efd;
    text-decoration: none;
}

.btn-link-clean:hover {
    text-decoration: underline;
}

/* IMAGEM */
.imagem-home {
    border-radius: 14px;
    transition: transform 0.4s ease;
}

.imagem-home:hover {
    transform: scale(1.02);
}

.busca-wrapper {
    display: flex !important;
    align-items: stretch;
    border: 1px solid #ddd;
    border-radius: 30px;
    overflow: hidden;
    max-width: 500px;
    margin: 0 auto;
    background: #fff;
}

/* INPUT */
.busca-wrapper input {
    flex: 1;
    border: none;
    padding: 12px 16px;
    outline: none;
    font-size: 14px;
    min-width: 0; /* 🔥 MUITO IMPORTANTE */
}
/* BOTÃO */
.busca-wrapper button {
    border: none;
    background: #0d6efd;
    color: #fff;
    padding: 0 20px;
    cursor: pointer;
    white-space: nowrap;
    display: flex;
    align-items: center;
}
/* HOVER */
.busca-wrapper button:hover {
    background: #0b5ed7;
}
.card-hover {
    transition: all 0.25s ease;
    cursor: pointer;
    border: none;
}

.card-hover:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.15);
}

/* IMAGEM */
.card-img-wrapper {
    overflow: hidden;
    height: 250px;
}

.card-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

/* ZOOM NA IMAGEM */
.card-hover:hover img {
    transform: scale(1.08);
}

/* LEVE ESCURECIMENTO NO HOVER */
.card-img-wrapper::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0);
    transition: background 0.3s ease;
}

.card-hover:hover .card-img-wrapper::after {
    background: rgba(0,0,0,0.15);
}
.card-destaque img {
    transition: transform 0.5s ease;
}

.card-destaque:hover img {
    transform: scale(1.05);
}

/* overlay suave */
.card-destaque::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.2);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.card-destaque:hover::after {
    opacity: 1;
}
.card-destaque::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
}
.card-destaque .bg-white {
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

/* FUNDO DA SEÇÃO (AQUI ESTÁ O GANHO VISUAL) */
.secao-destaque {
    background: linear-gradient(135deg, #f8f9fa, #eef2f7);
}

/* CARD */
.destaque-mensagem {
    background: #ffffff;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}

/* título */
.destaque-mensagem h2 {
    font-size: 2.2rem;
    color: #1b263b;
}

/* texto */
.destaque-mensagem p {
    line-height: 1.7;
}

/* botão */
.destaque-mensagem .btn {
    border-radius: 30px;
}

/* imagem */
.destaque-img-box {
    min-height: 320px;
}

.destaque-img {
    object-fit: cover;
    height: 100%;
    transition: transform 0.6s ease;
}

.destaque-mensagem:hover .destaque-img {
    transform: scale(1.03);
}




.destaque-img-box {
    position: relative;
    overflow: hidden;
    min-height: 320px;
}

/* imagem */
.destaque-img {
    object-fit: cover;
    width: 100%;
    height: 100%;
    transition: transform 0.6s ease;
}

/* overlay AGORA GRUDADO no container */
.destaque-img-box::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(255,255,255,0.9), rgba(255,255,255,0));
    transition: transform 0.6s ease;
}

/* hover: ambos se movem juntos */
.destaque-mensagem:hover .destaque-img,
.destaque-mensagem:hover .destaque-img-box::after {
    transform: scale(1.03);
}
/* FUNDO DA SEÇÃO */
.secao-conexao {
    background: linear-gradient(135deg, #f8f9fa, #eef2f7);
}

/* BOX REDES */
.box-redes {
    border-left: 4px solid #ffc107;
}

/* LINK DA IMAGEM */
.box-oracao {
    display: block;
    height: 100%;
    position: relative;
    overflow: hidden;
}

/* IMAGEM */
.img-oracao {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

/* HOVER SUAVE */
.box-oracao:hover .img-oracao {
    transform: scale(1.05);
}

/* OPCIONAL: leve escurecimento no hover */
.box-oracao::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.15);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.box-oracao:hover::after {
    opacity: 1;
}


.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.fade-in.show {
    opacity: 1;
    transform: translateY(0);
}

/* container */
.noticia-img-box {
    margin-bottom: 25px;
}

/* imagem grande SEM corte */
.noticia-img {
    width: 100%;
    height: auto; /*  não corta nunca */
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

/* legenda abaixo (melhor pra leitura) */
.noticia-img-legenda {
    margin-top: 8px;
    font-size: 1.85rem;
    color: #6c757d;
    font-style: italic;
    border-left: 3px solid #dee2e6;
    padding-left: 10px;
}
.secao-label {
    display: inline-block;

    font-size: 1.35rem; /*  maior */
    font-weight: 700;

    color: #0d6efd;

    margin-bottom: 12px;

    padding-bottom: 4px;
    border-bottom: 3px solid #0d6efd;
    display: inline-block;
}
.imagem-n-p {
    width:300px;
    height: 169px;
    object-fit: cover;
    object-position: center top;
    border-radius: 6px;
}

.noticia-item {
    padding: 10px;
    border-radius: 8px;
    transition: background 0.3s ease;
}

.noticia-item:hover {
    background: #f8f9fa;
}
/* ==========================================================================
   MINIATURA DAS NOTÍCIAS
   ========================================================================== */

.noticia-normal-thumb {
    width: 260px;
    height: 160px;

    object-fit: cover;
    object-position: center;

    border-radius: 10px;

    flex-shrink: 0;
}

/* ==========================================================================
   TABLETS
   ========================================================================== */

@media (max-width: 992px) {

    .noticia-normal-thumb {
        width: 220px;
        height: 140px;
    }

}

/* ==========================================================================
   MOBILE
   ========================================================================== */

@media (max-width: 768px) {

    .noticia-normal-thumb {

        width: 100%;
        height: 220px;

        display: block;
    }

}

/* ==========================================================================
   MOBILE PEQUENO
   ========================================================================== */

@media (max-width: 480px) {

    .noticia-normal-thumb {
        height: 180px;
    }

}



.coluna-titulo {
    font-size: 1.2rem;
    line-height: 1.3;
    color: #111;
    transition: color .2s ease;
}

.coluna-titulo:hover {
    color: #0d6efd;
}

.coluna-resumo {
    color: #6c757d;
    margin-top: 8px;
    max-width: 700px;
    font-size: 0.95rem;
    line-height: 1.5;
}
.text-semi {
    color: #6c757d;
}
.colunista-topo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.colunista-topo h1 {
    font-weight: 700;
    margin: 0;
    white-space: nowrap;
}

.colunista-faixa {
    flex: 1;
    height: 10px;
    background: #000;
}


.card-colunista {
        border: none;
        border-radius: 10px;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        overflow: hidden;
        background: #fff;
    }

    .card-colunista:hover {
        transform: translateY(-8px);
        box-shadow: 0 15px 30px rgba(0,0,0,0.08) !important;
    }

    .avatar-wrapper {
        width: 150px;
        height: 150px;
        margin: 0 auto;
        margin-top: -40px; /* Faz a foto "subir" sobre a borda */
        position: relative;
    }

    .avatar-img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 50%;
        border: 2px solid #fcfcfc;
        box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    }

    .colunista-nome {
        font-size: 0.9rem;
        font-weight: 700;
        color: #6c757d;
        text-transform: uppercase;
        letter-spacing: 1px;
    }

    .coluna-titulo {
        font-size: 1.25rem;
        font-weight: 800;
        line-height: 1.3;
        color: #212529;
        min-height: 3.9rem; /* Garante alinhamento mesmo com títulos curtos */
    }

    .btn-ler {
        border-radius: 50px;
        font-weight: 600;
        padding: 8px 25px;
        transition: 0.3s;
    }
    .cta-colunista {
        background: linear-gradient(45deg, #212529, #495057);
        color: white;
        border-radius: 15px;
        padding: 30px;
        text-align: center;
    }
    
    /* Novos Colunistas - Carrossel ou Lista */
    .novo-colunista-badge {
        position: absolute;
        top: 10px;
        right: 10px;
        background: #ffc107;
        color: #000;
        font-size: 0.7rem;
        font-weight: bold;
        padding: 2px 8px;
        border-radius: 20px;
        z-index: 2;
    }

    /* Ajuste para o Card da Sidebar */
    .sidebar-label {
        font-size: 0.75rem;
        text-transform: uppercase;
        letter-spacing: 1px;
        color: #6c757d;
        margin-bottom: 15px;
        display: block;
        border-bottom: 2px solid #eee;
        padding-bottom: 5px;
    }
    a.link-colunista {
    color: #0d6efd;
}

a.link-colunista:hover {
    color: #0a58ca;
    text-decoration: underline;
}

.header-box-colunista {
    background-color: #333333; /* Cor exata da imagem */
    border-radius: 12px 12px 12px 12px;
    min-height: 160px;
    margin-bottom: 0;
}

/* Wrapper da foto para permitir o vazamento */
.avatar-wrapper-colunista {
    position: absolute;
    left: 50%;
    transform: translate(-50%, -20%); /* Centraliza horizontal e vaza vertical */
    z-index: 15;
}

/* Tipografia do Nome (Serifada como no jornal) */
.author-title-colunista {
    font-family: 'Georgia', 'Times New Roman', serif;
    font-size: 3.5rem;
    letter-spacing: -1px;
    color: #f5f2f2;
}

/* Texto abaixo do nome */
.author-tagline-colunista {
    font-family: 'Arial', sans-serif;
    color: #444;
    font-size: 1.25rem;
}

/* Linha preta grossa abaixo de tudo */
.divider-colunista {
    height: 4px;
    background-color: #333;
    width: 100%;
    margin-top: 10px;
}




/* CARD BUSCA */
.card-busca {
    overflow: hidden;
    border-radius: 12px;
    transition: all 0.3s ease;
    cursor: pointer;
}

/* HOVER CARD */
.card-busca:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

/* IMAGEM */
.card-busca .card-img-top {
    transition: transform 0.4s ease;
}

/* ZOOM IMAGEM */
.card-busca:hover .card-img-top {
    transform: scale(1.08);
}

/* OVERLAY ESCURO */
.card-busca .img-wrapper {
    position: relative;
    overflow: hidden;
}

.card-busca .img-wrapper::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0);
    transition: 0.3s;
}

.card-busca:hover .img-wrapper::after {
    background: rgba(0,0,0,0.2);
}

/* BADGE */
.card-busca .badge {
    font-size: 11px;
    letter-spacing: 0.5px;
    padding: 5px 8px;
}

/* BOTÃO */
.card-busca .btn {
    transition: all 0.3s ease;
}

.card-busca .btn:hover {
    transform: scale(1.03);
}
/* Estilo Portal para a Barra Superior */
.portal-top-wrapper {
    background-color: #f6f6f6; /* Cinza claro editorial */
    border-bottom: 1px solid #eeeeee;
    height: 32px;
    display: flex;
    align-items: center;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
}

.portal-services {
    display: flex;
    height: 100%;
    align-items: center;
}

.portal-service-item {
    font-size: 11px;
    color: #666 !important;
    text-decoration: none !important;
    font-weight: 700;
    text-transform: uppercase;
    padding: 0 12px;
    height: 100%;
    display: flex;
    align-items: center;
    position: relative;
    letter-spacing: 0.5px;
    transition: background 0.2s;
}

/* Divisor vertical | sutil que não encosta nas bordas */
.portal-service-item:not(:last-child)::after {
    content: "";
    position: absolute;
    right: 0;
    height: 12px;
    width: 1px;
    background-color: #dcdcdc;
}

.portal-service-item:hover {
    background-color: #efefef;
    color: #000 !important;
}



/* Garante que o container do banner não transborde */
.banner-responsivo {
    width: 100%;
    height: auto; /* Mantém a proporção da imagem */
    display: block;
    object-fit: cover; /* Faz a imagem preencher o espaço sem distorcer */
}

  /* Estilo para garantir que o carrossel seja responsivo e elegante */
    .banner-wrapper {
        /* Garante que o banner não "estique" verticalmente de forma estranha */
        overflow: hidden;
        border-radius: 12px; /* Opcional: arredonda as bordas do banner */
    }

    /* Melhora o contraste das setas do carrossel para passar na Acessibilidade */
.carousel-control-prev-icon,
.carousel-control-next-icon {
    filter: drop-shadow(0px 0px 2px rgba(0,0,0,0.8));
    width: 3rem;
    height: 3rem;
}

/* Container que segura o carrossel */
.carousel-inner {
    width: 100%;
    max-height: 3px; /* Ajuste para a altura que você deseja no PC */
    overflow: hidden;   /* Garante que nada saia para fora */
    border-radius: 8px; /* Opcional: deixa as pontas arredondadas */
}

/* A imagem em si */
.banner-img {
    width: 100%;
    /* Ajustamos a altura para refletir a proporção real da sua imagem (1920x500) */
    height: auto;
    aspect-ratio: 1920 / 400; 
    
    /* Impede que o banner fique gigante em monitores muito grandes */
    max-height: 400px; 
    
    /* Se o espaço for diferente da proporção, ele corta as pontinhas sem distorcer */
    object-fit: cover; 
    object-position: center;
}


.search-form .btn {
    min-width: 44px; /* Tamanho mínimo de toque */
    display: flex;
    align-items: center;
    justify-content: center;
}

.bi-search::before {
    vertical-align: middle; /* Alinha o ícone perfeitamente ao centro */
}
/* Remove o fundo padrão da lista para os cards "flutuarem" */
.list-group-item {
    background-color: #fff;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    border: 1px solid #f0f0f0 !important; /* Borda bem sutil */
}

/* Efeito de movimento e sombra ao passar o mouse */
.news-card-link:hover {
    transform: translateX(8px); /* Move o link para a direita */
    background-color: #fff;
    color: #007bff;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08) !important;
    z-index: 1;
}

/* Faz a setinha aparecer no hover */
.news-card-link:hover .link-arrow {
    opacity: 1;
    transform: translateX(4px);
    transition: all 0.3s ease;
}

.news-title {
    font-weight: 500;
    line-height: 1.4;
    color: #333;
}

/* ====================== PERFIL COLUNISTA - TEMA ESCURO ====================== */

.perfil-hero {
    position: relative;
    overflow: hidden;
    height: 380px;
    max-height: 50vh;
}

.perfil-hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.perfil-hero-overlay {
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(10,24,47,0.3) 0%, rgba(10,24,47,0.95) 85%);
}

/* Header */
.perfil-header-box {
    background: #1a1f2e;
    border: 2px solid #334155;
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.4);
}

.perfil-avatar {
    width: 175px;
    height: 175px;
    object-fit: cover;
    border-radius: 16px;
    border: 5px solid #1a1f2e;
    box-shadow: 0 10px 25px rgba(0,0,0,0.5);
}

.perfil-author-name {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: white;
}

.perfil-author-bio {
    font-size: 1.1rem;
    color: #adb5bd;
    margin: 0;
}

/* Cards */
.perfil-card {
    background: #1a1f2e;
    border: none;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    transition: all 0.3s ease;
}

.perfil-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 30px rgba(0,0,0,0.4);
}

.perfil-card-img {
    height: 210px;
    object-fit: cover;
}

.perfil-post-title {
    font-weight: 700;
    line-height: 1.3;
    color: white;
}

.perfil-post-title a {
    color: inherit;
    text-decoration: none;
}

.perfil-post-title a:hover {
    color: #60a5fa;
}

.perfil-post-date {
    color: #64748b;
    font-weight: 500;
}

.perfil-post-resumo {
    color: #cbd5e1;
}

/* Sidebar */
.perfil-sidebar-card {
    background: #1a1f2e;
    border: none;
    border-radius: 12px;
    padding: 1.75rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.perfil-sidebar-title {
    font-weight: 700;
    margin-bottom: 1.25rem;
    color: #f1f5f9;
}

.perfil-sidebar-img {
    width: 70px;
    height: 70px;
    object-fit: cover;
    border-radius: 8px;
    flex-shrink: 0;
}

.perfil-sidebar-post-title {
    font-size: 0.95rem;
    line-height: 1.35;
    margin-bottom: 0.25rem;
    color: white;
}

.perfil-about-text {
    line-height: 1.75;
    color: #cbd5e1;
    text-align: justify;
}

/* Títulos de Seção */
.perfil-section-title {
    color: white;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.hero-colunista {
    background-attachment: fixed; /* fallback */
}

.hover-shadow:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.2), 
                0 8px 10px -6px rgb(0 0 0 / 0.2) !important;
}

.transition-all {
    transition: all 0.3s ease;
}

/* ==========================================================================
   BANNER TOPO
   ========================================================================== */

.banner-topo-container {
    width: 100%;
    margin: 0 0 40px 0;
}

.banner-topo-wrapper {
    width: 100%;
    max-width: 1920px;
    height: 300px;
    margin: 0 auto;
    overflow: hidden;
    position: relative;
    padding: 0 15px;
}

.banner-topo-wrapper img {
    width: 100%;
    height: 100%;
    display: block;

    /* Mantém a imagem proporcional */
    object-fit: contain;
    object-position: center center;

    /* Fundo neutro */
    background-color: #f8f9fa;
}

/* ==========================================================================
   RESPONSIVIDADE - BANNER TOPO
   ========================================================================== */

/* Notebook */
@media (max-width: 1200px) {
    .banner-topo-wrapper {
        height: 260px;
    }
}

/* Tablet */
@media (max-width: 992px) {
    .banner-topo-wrapper {
        height: 220px;
    }
}

/* Mobile grande */
@media (max-width: 768px) {
    .banner-topo-wrapper {
        height: 160px;
        padding: 0 10px;
    }
}

/* Mobile pequeno */
@media (max-width: 480px) {
    .banner-topo-wrapper {
        height: 120px;
        padding: 0 5px;
    }
}


/* ==========================================================================
   BANNER RODAPÉ
   ========================================================================== */

.banner-rodape-container {
    width: 100%;
    margin: 50px 0;
}

.banner-rodape-wrapper {
    width: 100%;
    max-width: 1920px;
    height: 200px;
    margin: 0 auto;
    overflow: hidden;
    position: relative;
    padding: 0 15px;
}

.banner-rodape-wrapper img {
    width: 100%;
    height: 100%;
    display: block;

    /* Mantém proporção sem distorção */
    object-fit: contain;
    object-position: center center;

    background-color: #f8f9fa;
}

/* ==========================================================================
   RESPONSIVIDADE - BANNER RODAPÉ
   ========================================================================== */

/* Notebook */
@media (max-width: 1200px) {
    .banner-rodape-wrapper {
        height: 180px;
    }
}

/* Tablet */
@media (max-width: 992px) {
    .banner-rodape-wrapper {
        height: 160px;
    }
}

/* Mobile grande */
@media (max-width: 768px) {

    .banner-rodape-container {
        margin: 40px 0;
    }

    .banner-rodape-wrapper {
        height: 130px;
        padding: 0 10px;
    }
}

/* Mobile pequeno */
@media (max-width: 480px) {

    .banner-rodape-wrapper {
        height: 100px;
        padding: 0 5px;
    }
}