/* ============================================
   ADFIB — Home (index) specific styles
   Sections que são exclusivas da home.
   ============================================ */

/* ============ Hero stack: slideshow no fundo + programação por cima ============ */

/* Header e pré-header SEM fundo na home — o slideshow do plugin já tem degradê */
body.has-home-hero .preheader,
body.has-home-hero .site-header {
    position: absolute !important;
    left: 0;
    right: 0;
    z-index: 50;
}
body.has-home-hero .preheader {
    top: 0;
    display: block !important;
    background: rgba(14, 61, 36, 0.55) !important;
    backdrop-filter: blur(10px) saturate(140%) !important;
    -webkit-backdrop-filter: blur(10px) saturate(140%) !important;
    border-bottom: 1px solid rgba(163, 230, 53, 0.1) !important;
}
body.has-home-hero .site-header {
    background: transparent !important;
    background-color: transparent !important;
    border-bottom: 0 !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
}
body.has-home-hero .site-header { top: var(--preheader-h, 36px); }
body.has-home-hero main { padding-top: 0 !important; margin-top: 0 !important; }

/* Quando o usuário scrolla, o header fixa com fundo verde escuro */
body.has-home-hero .site-header.is-scrolled {
    position: fixed !important;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(10, 32, 22, 0.95) !important;
    backdrop-filter: saturate(150%) blur(16px) !important;
    -webkit-backdrop-filter: saturate(150%) blur(16px) !important;
    border-bottom: 1px solid rgba(163, 230, 53, 0.08) !important;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.3) !important;
}

/* Layout da seção hero */
/* Layout da seção hero — slideshow fundo + programação centralizada */
.hero-stack {
    position: relative;
    min-height: 60vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: calc(var(--preheader-h, 36px) + 80px);
    padding-bottom: 48px;
    isolation: isolate;
}
.hero-stack__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}
.hero-stack__bg .mslide-wrap {
    width: 100% !important;
    height: 100% !important;
    min-height: 0 !important;
}
.hero-stack__bg .mslide-item img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: center !important;
}
.hero-stack__bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(4,19,12,0.75) 0%, rgba(4,19,12,0.35) 30%, rgba(4,19,12,0.35) 55%, rgba(4,19,12,0.88) 100%);
    pointer-events: none;
    z-index: 2;
}
.hero-stack__content {
    position: relative;
    z-index: 3;
    width: 100%;
}

/* ============ Fotos Recentes — seção separada, colada no hero ============ */
.section--photos {
    padding-top: 0 !important;
    padding-bottom: 56px !important;
    margin-top: -40px !important;
    position: relative;
    z-index: 4;
}

/* ============ Dividers ornamentais entre seções ============ */
.section-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.25rem;
    max-width: 1100px;
    margin: 0 auto;
    padding: 36px clamp(16px, 4vw, 48px);
    position: relative;
    z-index: 4;
    opacity: 0;
    animation: adfib-divider-in 0.9s cubic-bezier(0.22, 0.61, 0.36, 1) 0.2s forwards;
}
.section-divider__line {
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(163, 230, 53, 0.25), transparent);
    max-width: 320px;
}
.section-divider__dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--lime-500, #A3E635);
    box-shadow: 0 0 0 4px rgba(163, 230, 53, 0.08), 0 0 18px rgba(163, 230, 53, 0.35);
    animation: adfib-pulse 2.6s ease-in-out infinite;
}
.section-divider__label-text {
    font-family: var(--font-mono, ui-monospace, monospace);
    font-size: 0.65rem;
    font-weight: 500;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    color: var(--lime-500, #A3E635);
    white-space: nowrap;
    padding: 0 0.5rem;
    position: relative;
}
.section-divider__label-text::before,
.section-divider__label-text::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--lime-500, #A3E635);
    transform: translateY(-50%);
    opacity: 0.6;
}
.section-divider__label-text::before { left: -8px; }
.section-divider__label-text::after { right: -8px; }

@keyframes adfib-divider-in {
    from { opacity: 0; transform: translateY(8px); }
    to   { opacity: 1; transform: translateY(0); }
}
@keyframes adfib-pulse {
    0%, 100% { transform: scale(1); box-shadow: 0 0 0 4px rgba(163, 230, 53, 0.08), 0 0 18px rgba(163, 230, 53, 0.35); }
    50%      { transform: scale(1.15); box-shadow: 0 0 0 6px rgba(163, 230, 53, 0.12), 0 0 24px rgba(163, 230, 53, 0.5); }
}

/* ============ Scroll-reveal — fade-up suave ============ */
.fade-up {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.9s cubic-bezier(0.22, 0.61, 0.36, 1),
                transform 0.9s cubic-bezier(0.22, 0.61, 0.36, 1);
    will-change: opacity, transform;
}
.fade-up.is-visible {
    opacity: 1;
    transform: translateY(0);
}
/* Honra usuários com movimento reduzido */
@media (prefers-reduced-motion: reduce) {
    .fade-up { opacity: 1; transform: none; transition: none; }
    .section-divider, .section-divider__dot { animation: none; opacity: 1; }
}

/* ============ Ambient background entre seções ============ */
.section--photos,
.section--live,
.section--blog,
.section--videos,
.section--churches,
.section--instagram,
.section--history {
    background:
        radial-gradient(ellipse 60% 50% at 50% 0%, rgba(163, 230, 53, 0.025) 0%, transparent 60%),
        radial-gradient(ellipse 80% 60% at 20% 100%, rgba(14, 61, 36, 0.4) 0%, transparent 70%);
}

/* ============ Seção Instagram ============ */
.section--instagram {
    padding-top: 24px !important;
    padding-bottom: 64px !important;
    position: relative;
    overflow: hidden;
}
.section--instagram::before {
    content: '';
    position: absolute;
    bottom: 10%;
    right: -140px;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(163, 230, 53, 0.035) 0%, transparent 70%);
    filter: blur(24px);
    pointer-events: none;
    z-index: 0;
}
.section--instagram > .container { position: relative; z-index: 1; }

/* ============ Seção Nossa História ============ */
.section--history {
    padding-top: 24px !important;
    padding-bottom: 80px !important;
    position: relative;
    overflow: hidden;
}
.section--history::before {
    content: '';
    position: absolute;
    top: 40%;
    left: -160px;
    width: 380px;
    height: 380px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(163, 230, 53, 0.04) 0%, transparent 70%);
    filter: blur(28px);
    pointer-events: none;
    z-index: 0;
}
.section--history > .container { position: relative; z-index: 1; }

/* ============ Seção Congregações ============ */
.section--churches {
    padding-top: 24px !important;
    padding-bottom: 88px !important;
    position: relative;
    overflow: hidden;
}
.section--churches::before {
    content: '';
    position: absolute;
    top: 20%;
    left: -160px;
    width: 360px;
    height: 360px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(163, 230, 53, 0.04) 0%, transparent 70%);
    filter: blur(28px);
    pointer-events: none;
    z-index: 0;
}
.section--churches > .container { position: relative; z-index: 1; }

/* Override do plugin para casar com o tema */
.section--churches .adfib-churches-section {
    padding: 0 !important;
    background: transparent !important;
    max-width: none !important;
}
.section--churches .adfib-churches-inner {
    display: grid !important;
    grid-template-columns: minmax(420px, 1fr) 1.5fr !important;
    gap: clamp(24px, 2.5vw, 40px) !important;
    align-items: center !important;
}
.section--churches .adfib-churches-text {
    flex: none !important;
    max-width: none !important;
    width: 100% !important;
}
.section--churches .adfib-churches-map-col {
    flex: none !important;
    max-width: none !important;
    width: 100% !important;
}
@media (max-width: 900px) {
    .section--churches .adfib-churches-inner {
        grid-template-columns: 1fr !important;
    }
}

/* Badge "CONGREGAÇÕES" como eyebrow do design */
.section--churches .adfib-churches-badge {
    display: inline-flex !important;
    align-items: center !important;
    gap: 6px !important;
    padding: 0 !important;
    background: transparent !important;
    border: 0 !important;
    font-family: var(--font-mono, ui-monospace, monospace) !important;
    font-size: 0.7rem !important;
    font-weight: 500 !important;
    letter-spacing: 0.22em !important;
    text-transform: uppercase !important;
    color: var(--lime-500, #A3E635) !important;
    margin-bottom: 0.75rem !important;
}
.section--churches .adfib-churches-badge-icon {
    font-size: 0.85rem !important;
}

/* Título */
.section--churches .adfib-churches-title {
    font-family: var(--font-sans) !important;
    font-size: clamp(1.6rem, 2.2vw, 2.4rem) !important;
    font-weight: 300 !important;
    letter-spacing: -0.025em !important;
    line-height: 1.1 !important;
    color: var(--fg, #F5F2EA) !important;
    margin: 0 0 1rem 0 !important;
    white-space: nowrap !important;
}

/* Descrição */
.section--churches .adfib-churches-desc {
    font-family: var(--font-sans) !important;
    font-size: 1rem !important;
    line-height: 1.65 !important;
    color: rgba(245, 242, 234, 0.7) !important;
    margin: 0 0 1.5rem 0 !important;
    max-width: none !important;
}

/* Stats */
.section--churches .adfib-churches-stats {
    display: flex !important;
    gap: 1rem !important;
    margin: 0.5rem 0 1.25rem !important;
    flex-wrap: wrap !important;
}
.section--churches .adfib-churches-stat {
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    padding: 14px 22px !important;
    background: rgba(4, 19, 12, 0.55) !important;
    border: 1px solid rgba(163, 230, 53, 0.15) !important;
    border-radius: 12px !important;
    min-width: 120px;
}
.section--churches .adfib-churches-stat-number {
    font-family: var(--font-sans) !important;
    font-size: 2rem !important;
    font-weight: 200 !important;
    line-height: 1 !important;
    color: var(--lime-500, #A3E635) !important;
    letter-spacing: -0.03em !important;
}
.section--churches .adfib-churches-stat-label {
    font-family: var(--font-mono, ui-monospace, monospace) !important;
    font-size: 0.62rem !important;
    letter-spacing: 0.18em !important;
    text-transform: uppercase !important;
    color: rgba(245, 242, 234, 0.55) !important;
    margin-top: 6px !important;
}

/* Botão "Ver detalhes" */
.section--churches .adfib-churches-details-btn {
    display: inline-flex !important;
    align-items: center !important;
    gap: 0.5rem !important;
    padding: 0.75rem 1.5rem !important;
    background: var(--lime-500, #A3E635) !important;
    color: #04130C !important;
    border: 0 !important;
    border-radius: var(--radius-full, 999px) !important;
    font-family: var(--font-sans) !important;
    font-size: 0.78rem !important;
    font-weight: 600 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.08em !important;
    text-decoration: none !important;
    transition: transform 0.25s ease, box-shadow 0.25s ease !important;
}
.section--churches .adfib-churches-details-btn:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 8px 24px rgba(163, 230, 53, 0.3) !important;
}

/* Mapa */
.section--churches .adfib-churches-map-col {
    position: relative;
}
.section--churches .adfib-churches-map {
    width: 100% !important;
    aspect-ratio: 16 / 9 !important;
    min-height: 380px !important;
    border-radius: 16px !important;
    overflow: hidden !important;
    border: 1px solid rgba(163, 230, 53, 0.12) !important;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.35) !important;
}

/* ============ Seção Vídeos (YouTube carrossel) ============ */
.section--videos {
    padding-top: 24px !important;
    padding-bottom: 88px !important;
    position: relative;
    overflow: hidden;
}
.section--videos::before {
    content: '';
    position: absolute;
    top: 30%;
    right: -160px;
    width: 360px;
    height: 360px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(163, 230, 53, 0.04) 0%, transparent 70%);
    filter: blur(28px);
    pointer-events: none;
    z-index: 0;
}
.section--videos > .container { position: relative; z-index: 1; }

/* Wrap do shortcode — remove padding agressivo do inline style */
.section--videos .gcpyc-wrap {
    padding: 0 !important;
    max-width: 100% !important;
}

/* Cards de vídeo */
.section--videos .gcpyc-card {
    background: linear-gradient(180deg, rgba(14, 61, 36, 0.45), rgba(10, 26, 19, 0.45)) !important;
    border: 1px solid rgba(163, 230, 53, 0.1) !important;
    border-radius: 14px !important;
    overflow: hidden !important;
    transition: transform 0.5s cubic-bezier(0.22, 0.61, 0.36, 1),
                box-shadow 0.5s cubic-bezier(0.22, 0.61, 0.36, 1),
                border-color 0.4s ease !important;
}
.section--videos .gcpyc-card:hover {
    transform: translateY(-6px);
    border-color: rgba(163, 230, 53, 0.3) !important;
    box-shadow: 0 14px 36px rgba(0, 0, 0, 0.45), 0 0 0 1px rgba(163, 230, 53, 0.12) !important;
}

/* Thumb com aspect ratio fixo + play */
.section--videos .gcpyc-thumb {
    position: relative !important;
    width: 100% !important;
    aspect-ratio: 16 / 9 !important;
    padding: 0 !important;
    background: #000 !important;
    border: 0 !important;
    cursor: pointer !important;
    overflow: hidden !important;
    display: block !important;
}
.section--videos .gcpyc-thumb img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    transition: transform 0.8s cubic-bezier(0.22, 0.61, 0.36, 1), filter 0.4s ease !important;
    filter: saturate(0.9) brightness(0.9);
}
.section--videos .gcpyc-card:hover .gcpyc-thumb img {
    transform: scale(1.05);
    filter: saturate(1) brightness(1);
}
.section--videos .gcpyc-play {
    position: absolute !important;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: rgba(4, 19, 12, 0.8) !important;
    color: var(--lime-500, #A3E635) !important;
    font-size: 1.2rem !important;
    display: flex !important;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(163, 230, 53, 0.25);
    transition: background 0.3s ease, transform 0.3s ease, border-color 0.3s ease;
    padding-left: 4px;
}
.section--videos .gcpyc-card:hover .gcpyc-play {
    background: var(--lime-500, #A3E635) !important;
    color: #04130C !important;
    border-color: var(--lime-500, #A3E635) !important;
    transform: translate(-50%, -50%) scale(1.08);
}

/* Título do vídeo */
.section--videos .gcpyc-title {
    margin: 14px 16px 16px !important;
    padding: 0 !important;
    font-family: var(--font-sans) !important;
    font-size: 0.9rem !important;
    font-weight: 500 !important;
    line-height: 1.35 !important;
    color: rgba(255, 255, 255, 0.9) !important;
    text-transform: none !important;
    letter-spacing: 0 !important;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    background: transparent !important;
}

/* Setas (mesma estética do blog) */
.section--videos .swiper-button-prev,
.section--videos .swiper-button-next {
    position: absolute !important;
    top: 40% !important;
    width: 42px !important;
    height: 42px !important;
    border-radius: 50% !important;
    background: rgba(4, 19, 12, 0.65) !important;
    border: 1px solid rgba(163, 230, 53, 0.18) !important;
    color: var(--lime-500, #A3E635) !important;
    backdrop-filter: blur(8px) !important;
    -webkit-backdrop-filter: blur(8px) !important;
    transition: background 0.25s ease, border-color 0.25s ease, transform 0.25s ease !important;
    margin-top: 0 !important;
    text-indent: -9999px !important;
    overflow: hidden !important;
    left: auto !important;
    right: auto !important;
}
.section--videos .swiper-button-prev { left: -8px !important; }
.section--videos .swiper-button-next { right: -8px !important; }
.section--videos .swiper-button-prev::after,
.section--videos .swiper-button-next::after {
    content: '' !important;
    position: absolute !important;
    top: 50%;
    left: 50%;
    width: 10px;
    height: 10px;
    border-top: 1.5px solid var(--lime-500, #A3E635);
    border-right: 1.5px solid var(--lime-500, #A3E635);
    text-indent: 0 !important;
    font-size: 0 !important;
    color: transparent !important;
}
.section--videos .swiper-button-prev::after {
    transform: translate(-30%, -50%) rotate(-135deg);
}
.section--videos .swiper-button-next::after {
    transform: translate(-70%, -50%) rotate(45deg);
}
.section--videos .swiper-button-prev:hover,
.section--videos .swiper-button-next:hover {
    background: rgba(163, 230, 53, 0.15) !important;
    border-color: var(--lime-500, #A3E635) !important;
    transform: scale(1.06);
}

/* Pagination */
.section--videos .swiper-pagination-bullet {
    background: rgba(255, 255, 255, 0.2) !important;
    opacity: 1 !important;
    transition: background 0.2s ease, width 0.2s ease !important;
}
.section--videos .swiper-pagination-bullet-active {
    background: var(--lime-500, #A3E635) !important;
    width: 20px !important;
    border-radius: 4px !important;
}

/* Botão "Ver Todos" no rodapé do shortcode */
.section--videos .gcpyc-view-all {
    border-color: rgba(163, 230, 53, 0.4) !important;
    transition: background 0.25s ease, border-color 0.25s ease, color 0.25s ease !important;
}
.section--videos .gcpyc-view-all:hover {
    background: rgba(163, 230, 53, 0.1) !important;
    border-color: var(--lime-500, #A3E635) !important;
    color: var(--lime-500, #A3E635) !important;
}

/* ============ Seção Blog Carrossel ============ */
.section--blog {
    padding-top: 24px !important;
    padding-bottom: 88px !important;
    position: relative;
    overflow: hidden;
}
.section--blog::before {
    content: '';
    position: absolute;
    bottom: 10%;
    left: -140px;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(163, 230, 53, 0.035) 0%, transparent 70%);
    filter: blur(24px);
    pointer-events: none;
    z-index: 0;
}
.section--blog > .container { position: relative; z-index: 1; }

.section-head--center {
    text-align: center;
    margin-bottom: 2.5rem;
}
.section-head--center .eyebrow {
    display: inline-block;
    margin-bottom: 0.75rem;
}
.section-head--center .section-head__title {
    font-size: clamp(1.6rem, 3vw, 2.5rem);
    font-weight: 300;
    letter-spacing: -0.025em;
    line-height: 1.15;
    margin: 0;
    color: var(--fg);
}

/* Refinamentos do blog carousel para casar com o tema */
.section--blog .blogc-card {
    background: linear-gradient(180deg, rgba(14, 61, 36, 0.45), rgba(10, 26, 19, 0.45)) !important;
    border: 1px solid rgba(163, 230, 53, 0.1) !important;
    border-radius: 14px !important;
    transition: transform 0.5s cubic-bezier(0.22, 0.61, 0.36, 1),
                box-shadow 0.5s cubic-bezier(0.22, 0.61, 0.36, 1),
                border-color 0.5s ease !important;
}
.section--blog .blogc-card:hover {
    transform: translateY(-6px);
    border-color: rgba(163, 230, 53, 0.3) !important;
    box-shadow: 0 14px 36px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(163, 230, 53, 0.12) !important;
}
.section--blog .blogc-thumb img,
.section--blog .blogc-thumb {
    transition: transform 0.8s cubic-bezier(0.22, 0.61, 0.36, 1);
}
.section--blog .blogc-card:hover .blogc-thumb img {
    transform: scale(1.05);
}
.section--blog .blogc-btn {
    transition: background 0.25s ease, border-color 0.25s ease, color 0.25s ease !important;
}
.section--blog .blogc-btn:hover {
    background: var(--lime-500, #A3E635) !important;
    color: #04130C !important;
    border-color: var(--lime-500, #A3E635) !important;
}

/* Swiper navigation — setas redondas minimalistas, sem texto */
.section--blog .swiper-button-prev,
.section--blog .swiper-button-next {
    width: 42px !important;
    height: 42px !important;
    border-radius: 50% !important;
    background: rgba(4, 19, 12, 0.65) !important;
    border: 1px solid rgba(163, 230, 53, 0.18) !important;
    color: var(--lime-500, #A3E635) !important;
    backdrop-filter: blur(8px) !important;
    -webkit-backdrop-filter: blur(8px) !important;
    transition: background 0.25s ease, border-color 0.25s ease, transform 0.25s ease !important;
    margin-top: -21px !important;
    text-indent: -9999px !important;
    overflow: hidden !important;
}
.section--blog .swiper-button-prev::after,
.section--blog .swiper-button-next::after {
    content: '' !important;
    position: absolute !important;
    top: 50%;
    left: 50%;
    width: 10px;
    height: 10px;
    border-top: 1.5px solid var(--lime-500, #A3E635);
    border-right: 1.5px solid var(--lime-500, #A3E635);
    text-indent: 0 !important;
    font-size: 0 !important;
    color: transparent !important;
    transition: border-color 0.25s ease;
}
.section--blog .swiper-button-prev::after {
    transform: translate(-30%, -50%) rotate(-135deg);
}
.section--blog .swiper-button-next::after {
    transform: translate(-70%, -50%) rotate(45deg);
}
.section--blog .swiper-button-prev:hover,
.section--blog .swiper-button-next:hover {
    background: rgba(163, 230, 53, 0.15) !important;
    border-color: var(--lime-500, #A3E635) !important;
    transform: scale(1.06);
}
.section--blog .swiper-pagination-bullet {
    background: rgba(255, 255, 255, 0.2) !important;
    opacity: 1 !important;
    transition: background 0.2s ease, width 0.2s ease !important;
}
.section--blog .swiper-pagination-bullet-active {
    background: var(--lime-500, #A3E635) !important;
    width: 20px !important;
    border-radius: 4px !important;
}

/* Seção live com ornamento de canto */
.section--live {
    position: relative;
    padding-top: 24px !important;
    padding-bottom: 80px !important;
    overflow: hidden;
}
.section--live::before {
    content: '';
    position: absolute;
    top: 20%;
    right: -120px;
    width: 280px;
    height: 280px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(163, 230, 53, 0.04) 0%, transparent 70%);
    filter: blur(20px);
    pointer-events: none;
    z-index: 0;
}
.section--live > .container {
    position: relative;
    z-index: 1;
}

/* Override do plugin para casar com o design */
.section--photos .mmg-recent {
    padding: 0 !important;
    max-width: 1200px !important;
    margin: 0 auto !important;
    font-family: var(--font-sans) !important;
}

/* Header da seção: eyebrow + título elegante */
.section--photos .mmg-recent-header {
    margin-bottom: 1.5rem !important;
    text-align: left !important;
}
.section--photos .mmg-recent-title {
    font-family: var(--font-sans) !important;
    font-size: clamp(1.4rem, 2.5vw, 2rem) !important;
    font-weight: 300 !important;
    color: var(--fg) !important;
    text-transform: none !important;
    letter-spacing: -0.02em !important;
    line-height: 1.15 !important;
    margin: 0 !important;
    position: relative !important;
    padding-left: 2.25rem !important;
}
.section--photos .mmg-recent-title::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    width: 1.5rem;
    height: 1px;
    background: var(--lime-500);
}

/* Carrossel */
.section--photos .mmg-recent-carousel {
    border-radius: 12px !important;
    overflow: hidden !important;
}
.section--photos .mmg-recent-track {
    transition: transform 0.7s cubic-bezier(0.22, 0.61, 0.36, 1) !important;
    gap: 14px !important;
}
.section--photos .mmg-recent-slide {
    padding: 0 !important;
    flex: 0 0 calc(25% - 11px) !important;
}

/* Imagem aspect 4:5 (vertical editorial) */
.section--photos .mmg-recent-img-wrap {
    aspect-ratio: 4 / 5 !important;
    border-radius: 12px !important;
    background: var(--bg-elevated, #0a1a13) !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.25) !important;
    transition: transform 0.5s cubic-bezier(0.22, 0.61, 0.36, 1),
                box-shadow 0.5s cubic-bezier(0.22, 0.61, 0.36, 1) !important;
}
.section--photos .mmg-recent-img {
    transition: transform 1s cubic-bezier(0.22, 0.61, 0.36, 1),
                filter 0.4s ease !important;
    filter: saturate(0.9) brightness(0.93);
}
.section--photos .mmg-recent-img-wrap:hover {
    transform: translateY(-5px) !important;
    box-shadow: 0 14px 36px rgba(0, 0, 0, 0.45), 0 0 0 1px rgba(74, 222, 128, 0.2) !important;
}
.section--photos .mmg-recent-img-wrap:hover .mmg-recent-img {
    transform: scale(1.06) !important;
    filter: saturate(1) brightness(1);
}

/* Overlay minimalista */
.section--photos .mmg-recent-overlay {
    padding: 1.5rem 1rem 1rem !important;
    background: linear-gradient(180deg, transparent 0%, rgba(4,19,12,0) 35%, rgba(4,19,12,0.75) 100%) !important;
}
.section--photos .mmg-recent-dept {
    font-family: var(--font-mono, ui-monospace, monospace) !important;
    font-size: 0.6rem !important;
    letter-spacing: 0.18em !important;
    color: var(--lime-500, #A3E635) !important;
    font-weight: 800 !important;
}
.section--photos .mmg-recent-event {
    font-family: var(--font-sans) !important;
    font-size: 0.72rem !important;
    color: rgba(255, 255, 255, 0.75) !important;
    font-weight: 400 !important;
    letter-spacing: 0 !important;
    text-transform: none !important;
}

/* Setas elegantes */
.section--photos .mmg-recent-prev,
.section--photos .mmg-recent-next {
    width: 40px !important;
    height: 40px !important;
    background: rgba(4, 19, 12, 0.55) !important;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    color: rgba(255, 255, 255, 0.85) !important;
    font-size: 0.85rem !important;
    backdrop-filter: blur(8px) !important;
    -webkit-backdrop-filter: blur(8px) !important;
    transition: background 0.25s ease, border-color 0.25s ease !important;
}
.section--photos .mmg-recent-prev { left: 12px !important; }
.section--photos .mmg-recent-next { right: 12px !important; }
.section--photos .mmg-recent-prev:hover,
.section--photos .mmg-recent-next:hover {
    background: rgba(74, 222, 128, 0.15) !important;
    border-color: var(--lime-500) !important;
    color: var(--lime-500) !important;
}

/* Botão "Ver Todas" */
.section--photos .mmg-recent-footer {
    margin-top: 1.5rem !important;
    text-align: center !important;
}
.section--photos .mmg-recent-view-all {
    padding: 0.6rem 1.4rem !important;
    border: 1px solid rgba(74, 222, 128, 0.35) !important;
    border-radius: var(--radius-full, 999px) !important;
    background: transparent !important;
    color: rgba(255, 255, 255, 0.8) !important;
    font-family: var(--font-sans) !important;
    font-size: 0.82rem !important;
    font-weight: 500 !important;
    cursor: pointer !important;
    transition: background 0.25s ease, border-color 0.25s ease, color 0.25s ease !important;
}
.section--photos .mmg-recent-view-all:hover {
    background: rgba(74, 222, 128, 0.1) !important;
    border-color: var(--lime-500) !important;
    color: var(--lime-500) !important;
}

/* Dots hidden */
.section--photos .mmg-recent-dots { display: none !important; }

/* Fade-in cascateado */
@keyframes adfib-rise-in {
    from { opacity: 0; transform: translateY(20px); }
    to   { opacity: 1; transform: translateY(0); }
}
.section--photos .mmg-recent-slide {
    animation: adfib-rise-in 0.65s cubic-bezier(0.22, 0.61, 0.36, 1) both;
}
.section--photos .mmg-recent-slide:nth-child(1) { animation-delay: 0.05s; }
.section--photos .mmg-recent-slide:nth-child(2) { animation-delay: 0.15s; }
.section--photos .mmg-recent-slide:nth-child(3) { animation-delay: 0.25s; }
.section--photos .mmg-recent-slide:nth-child(4) { animation-delay: 0.35s; }

/* Responsivo */
@media (max-width: 960px) {
    .section--photos .mmg-recent-slide {
        flex: 0 0 calc(50% - 7px) !important;
    }
    .section--photos .mmg-recent-prev { left: 8px !important; }
    .section--photos .mmg-recent-next { right: 8px !important; }
}
@media (max-width: 768px) {
    .hero-stack {
        min-height: 50vh;
        padding-top: calc(var(--preheader-h, 36px) + 72px);
        padding-bottom: 32px;
    }
    body.has-home-hero .preheader { display: none !important; }
    body.has-home-hero .site-header { top: 0; }
}
@media (max-width: 600px) {
    .section--photos .mmg-recent-slide {
        flex: 0 0 80% !important;
    }
    .section--photos .mmg-recent-img-wrap {
        aspect-ratio: 3 / 4 !important;
    }
}

/* ---------- HERO antigo (mantido para outras páginas se precisar) ---------- */
.home-hero {
  position: relative;
  padding: clamp(4rem, 8vw, 8rem) 0 clamp(3.5rem, 6vw, 6rem);
  overflow: hidden;
  isolation: isolate;
}
.home-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 0%, rgba(74, 222, 128, 0.08), transparent 60%),
    radial-gradient(ellipse 60% 50% at 10% 100%, rgba(176, 131, 46, 0.06), transparent 60%);
  z-index: -1;
}
.home-hero__grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: clamp(2rem, 4vw, 5rem);
  align-items: center;
}
@media (max-width: 880px) {
  .home-hero__grid { grid-template-columns: 1fr; }
}

.home-hero__title {
  font-family: var(--font-sans);
  font-size: clamp(2.75rem, 1.6rem + 5vw, 5.5rem);
  font-weight: 200;
  line-height: 0.98;
  letter-spacing: -0.045em;
  color: var(--fg);
  margin-top: var(--space-md);
  text-wrap: balance;
}
.home-hero__title em {
  font-style: italic;
  font-weight: 200;
  color: var(--lime-500);
}
.home-hero__lead {
  margin-top: var(--space-lg);
  font-size: var(--fs-lg);
  line-height: var(--lh-relaxed);
  color: var(--fg-body);
  max-width: 36rem;
}
.home-hero__cta {
  margin-top: var(--space-xl);
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md);
}
.home-hero__stats {
  display: flex;
  gap: var(--space-2xl);
  margin-top: var(--space-2xl);
  padding-top: var(--space-xl);
  border-top: 1px solid var(--border-soft);
}
.home-hero__stat-num {
  font-family: var(--font-sans);
  font-size: clamp(1.75rem, 1.4rem + 1vw, 2.25rem);
  font-weight: 300;
  letter-spacing: -0.035em;
  color: var(--fg);
  line-height: 1;
}
.home-hero__stat-num em { font-style: italic; color: var(--lime-500); font-weight: 300; }
.home-hero__stat-label {
  font-size: var(--fs-eyebrow);
  letter-spacing: var(--tracking-eyebrow);
  text-transform: uppercase;
  color: var(--fg-muted);
  margin-top: 6px;
  font-weight: 500;
}

/* Coluna direita do hero — visual com placeholder + verse pinned */
.home-hero__visual {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: var(--radius-xl);
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(7, 36, 26, 0.5), rgba(7, 36, 26, 0.85)),
    linear-gradient(135deg, var(--green-800), var(--green-900) 60%, var(--green-980));
  border: 1px solid var(--border-soft);
}
.home-hero__visual::after {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 70% 50% at 50% 0%, rgba(74, 222, 128, 0.18), transparent 70%);
  pointer-events: none;
}
.home-hero__visual-meta {
  position: absolute;
  inset: auto var(--space-xl) var(--space-xl) var(--space-xl);
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  z-index: 2;
}
.home-hero__visual-tag {
  align-self: flex-start;
  padding: 0.4rem 0.85rem;
  font-size: var(--fs-eyebrow);
  font-weight: 600;
  letter-spacing: var(--tracking-eyebrow);
  text-transform: uppercase;
  color: var(--lime-500);
  background: rgba(74, 222, 128, 0.10);
  border: 1px solid rgba(74, 222, 128, 0.25);
  border-radius: var(--radius-full);
  backdrop-filter: blur(6px);
}
.home-hero__visual-text {
  font-family: var(--font-sans);
  font-size: clamp(1.25rem, 1rem + 0.8vw, 1.6rem);
  font-style: italic;
  font-weight: 300;
  line-height: 1.35;
  color: var(--fg);
  letter-spacing: -0.02em;
}
.home-hero__visual-cite {
  font-family: var(--font-sans);
  font-size: var(--fs-eyebrow);
  font-weight: 600;
  letter-spacing: var(--tracking-eyebrow);
  text-transform: uppercase;
  color: var(--gold-500);
}

/* ---------- SECTION HEADERS ---------- */
.section-head {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: var(--space-lg);
  align-items: end;
  margin-bottom: var(--space-2xl);
}
@media (max-width: 720px) {
  .section-head { grid-template-columns: 1fr; }
  .section-head__action { justify-self: start; }
}
.section-head__title {
  font-family: var(--font-sans);
  font-size: var(--fs-3xl);
  font-weight: 300;
  letter-spacing: -0.035em;
  line-height: 1.05;
  color: var(--fg);
  margin-top: var(--space-sm);
  text-wrap: balance;
  max-width: 32ch;
}
.section-head__title em { font-style: italic; color: var(--lime-500); font-weight: 300; }
.section-head__desc {
  margin-top: var(--space-sm);
  color: var(--fg-body);
  max-width: 36rem;
  font-size: var(--fs-base);
}

/* ---------- PROGRAMAÇÃO DA SEMANA ---------- */
.schedule-week {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-lg);
}
@media (max-width: 720px) {
  .schedule-week { grid-template-columns: 1fr; }
}
.schedule-card {
  background: var(--bg-elevated);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
}
.schedule-card__day {
  font-family: var(--font-sans);
  font-size: var(--fs-2xl);
  font-weight: 300;
  letter-spacing: -0.03em;
  color: var(--fg);
  display: flex;
  align-items: baseline;
  gap: 0.6rem;
}
.schedule-card__day-num {
  font-family: var(--font-mono);
  font-size: var(--fs-xs);
  font-weight: 500;
  color: var(--fg-muted);
  letter-spacing: 0.04em;
}
.schedule-card__list {
  margin-top: var(--space-lg);
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

/* ---------- MENSAGEM DA SEMANA ---------- */
.featured-msg {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: clamp(1.5rem, 4vw, 4rem);
  align-items: center;
}
@media (max-width: 880px) {
  .featured-msg { grid-template-columns: 1fr; }
}
.featured-msg__title {
  font-family: var(--font-sans);
  font-size: clamp(1.75rem, 1.2rem + 2.2vw, 2.75rem);
  font-weight: 300;
  letter-spacing: -0.035em;
  line-height: 1.05;
  color: var(--fg);
  margin-top: var(--space-md);
  text-wrap: balance;
}
.featured-msg__meta {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md);
  margin-top: var(--space-lg);
  font-size: var(--fs-sm);
  color: var(--fg-muted);
}
.featured-msg__excerpt {
  margin-top: var(--space-lg);
  color: var(--fg-body);
  font-size: var(--fs-lg);
  line-height: var(--lh-relaxed);
  max-width: 40rem;
}
.featured-msg__cta { margin-top: var(--space-xl); }

/* ---------- GRID DE NOTÍCIAS ---------- */
.posts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
}
@media (max-width: 880px) { .posts-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .posts-grid { grid-template-columns: 1fr; } }

/* Placeholder media com texto */
.media-ph {
  position: absolute; inset: 0;
  display: grid;
  place-items: center;
  background:
    linear-gradient(135deg, rgba(7, 36, 26, 0.4), rgba(7, 36, 26, 0.7)),
    linear-gradient(135deg, var(--green-700), var(--green-900) 60%, var(--green-980));
  color: rgba(245, 242, 234, 0.45);
  font-family: var(--font-mono);
  font-size: var(--fs-eyebrow);
  letter-spacing: var(--tracking-eyebrow);
  text-transform: uppercase;
}
.media-ph--gold {
  background:
    linear-gradient(135deg, rgba(7, 36, 26, 0.4), rgba(7, 36, 26, 0.7)),
    linear-gradient(135deg, var(--gold-700), var(--green-900) 60%, var(--green-980));
}
.media-ph--cyan {
  background:
    linear-gradient(135deg, rgba(7, 36, 26, 0.4), rgba(7, 36, 26, 0.7)),
    linear-gradient(135deg, #1A6B6B, var(--green-900) 60%, var(--green-980));
}

/* ---------- VERSÍCULO BLOCO FULL WIDTH ---------- */
.verse-block {
  background:
    radial-gradient(ellipse 60% 80% at 30% 50%, rgba(176, 131, 46, 0.08), transparent 60%),
    var(--bg-alt);
  border-block: 1px solid var(--border-soft);
  padding-block: var(--space-4xl);
}
.verse-block__inner {
  max-width: 60rem;
  margin: 0 auto;
  text-align: center;
  padding-inline: var(--gutter);
}
.verse-block__text {
  font-family: var(--font-sans);
  font-size: clamp(1.5rem, 1.2rem + 1.4vw, 2.5rem);
  font-style: italic;
  font-weight: 300;
  line-height: 1.3;
  letter-spacing: -0.02em;
  color: var(--fg);
  text-wrap: balance;
}
.verse-block__cite {
  display: inline-block;
  margin-top: var(--space-lg);
  font-family: var(--font-sans);
  font-size: var(--fs-eyebrow);
  font-weight: 600;
  letter-spacing: var(--tracking-eyebrow);
  text-transform: uppercase;
  color: var(--gold-500);
}

/* ---------- PRÓXIMOS EVENTOS — wrapper ---------- */
.events-list { max-width: var(--container-narrow); margin: 0; }

/* ---------- LÍDERES ---------- */
.leaders-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-xl);
}
@media (max-width: 880px) { .leaders-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .leaders-grid { grid-template-columns: 1fr; } }

/* ---------- GALERIA STRIP ---------- */
.gallery-strip {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: var(--space-sm);
}
@media (max-width: 880px) { .gallery-strip { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 480px) { .gallery-strip { grid-template-columns: repeat(2, 1fr); } }
.gallery-strip__item {
  aspect-ratio: 1/1;
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
  border: 1px solid var(--border-soft);
  transition: transform var(--transition-default), border-color var(--transition-fast);
}
.gallery-strip__item:hover { transform: scale(1.03); border-color: var(--lime-500); }

/* ---------- CTA FINAL ---------- */
.home-cta {
  position: relative;
  padding: clamp(3rem, 6vw, 6rem) 0;
  overflow: hidden;
  isolation: isolate;
  text-align: center;
}
.home-cta::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 70% 70% at 50% 100%, rgba(74, 222, 128, 0.18), transparent 60%),
    linear-gradient(180deg, var(--bg) 0%, var(--green-940) 60%, var(--green-960) 100%);
  z-index: -1;
}
.home-cta__title {
  font-family: var(--font-sans);
  font-size: clamp(2rem, 1.5rem + 3vw, 3.75rem);
  font-weight: 200;
  letter-spacing: -0.045em;
  line-height: 1;
  color: var(--fg);
  margin-top: var(--space-md);
  text-wrap: balance;
}
.home-cta__title em { font-style: italic; color: var(--lime-500); font-weight: 200; }
.home-cta__lead {
  margin-top: var(--space-lg);
  font-size: var(--fs-lg);
  color: var(--fg-body);
  max-width: 40rem;
  margin-inline: auto;
}
.home-cta__buttons {
  margin-top: var(--space-xl);
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md);
  justify-content: center;
}
