/* ============================================================
   HOME CRISTOCÊNTRICA — TamoJuntoComJesus v1.2.0
   Luminosa · Limpa · Branco · Azul Céu · Dourado · Verde
   ============================================================ */

/* ── VARIÁVEIS DA HOME ──────────────────────────────────────── */
body.front-page-tjcj {
    --h-azul:      #1E6BB8;   /* azul céu */
    --h-azul-lt:   #EBF3FC;   /* azul muito claro */
    --h-azul-md:   #4A90D9;   /* azul médio */
    --h-ouro:      #C9972C;   /* dourado cálido */
    --h-ouro-lt:   #FBF3E0;   /* dourado claro */
    --h-verde:     #2D7A4F;   /* verde esperança */
    --h-verde-lt:  #E8F5EE;   /* verde claro */
    --h-branco:    #FFFFFF;
    --h-off:       #F8F9FC;   /* fundo levíssimo */
    --h-cinza1:    #64748B;   /* texto secundário */
    --h-cinza2:    #94A3B8;   /* texto terciário */
    --h-cinza3:    #E2E8F0;   /* bordas */
    --h-escuro:    #1A2744;   /* azul muito escuro, títulos */

    --h-font-disp: 'Cormorant Garamond', Georgia, serif;
    --h-font-body: 'Barlow', sans-serif;
    --h-font-cond: 'Barlow Condensed', sans-serif;
}

/* ── RESET BODY NA HOME ─────────────────────────────────────── */
.front-page-tjcj {
    background: var(--h-branco);
    color: var(--h-escuro);
}

/* ── HEADER NA HOME — claro ao invés de escuro ──────────────── */
.front-page-tjcj .site-header.scrolled {
    background: rgba(255, 255, 255, 0.97) !important;
    backdrop-filter: blur(12px) !important;
    border-bottom-color: rgba(30, 107, 184, 0.15) !important;
    box-shadow: 0 1px 20px rgba(0, 0, 0, 0.06) !important;
}
.front-page-tjcj .site-header.scrolled .logo-name { color: var(--h-escuro) !important; }
.front-page-tjcj .site-header.scrolled .logo-sub  { color: var(--h-azul) !important; }
.front-page-tjcj .site-header.scrolled .site-nav a,
.front-page-tjcj .site-header.scrolled .nav-menu a { color: var(--h-cinza1) !important; }
.front-page-tjcj .site-header.scrolled .site-nav a:hover,
.front-page-tjcj .site-header.scrolled .nav-menu a:hover { color: var(--h-azul) !important; }
.front-page-tjcj .site-header.scrolled .site-nav a::after,
.front-page-tjcj .site-header.scrolled .nav-menu a::after { background: var(--h-azul) !important; }
.front-page-tjcj .site-header.scrolled .logo-cross { color: var(--h-ouro) !important; }

/* ── HERO LUMINOSO ──────────────────────────────────────────── */
.home-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--h-branco);
}

/* Fundo geométrico — cruz de luz */
.home-hero-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
}
.home-hero-bg::before {
    content: '';
    position: absolute;
    top: -10%;
    right: -5%;
    width: 55%;
    height: 110%;
    background: linear-gradient(135deg, var(--h-azul-lt) 0%, #D6EAF8 40%, var(--h-branco) 100%);
    clip-path: polygon(15% 0%, 100% 0%, 100% 100%, 0% 100%);
}
.home-hero-bg::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--h-verde) 0%, var(--h-azul) 40%, var(--h-ouro) 100%);
}

/* Cruz decorativa de fundo */
.hero-cross-deco {
    position: absolute;
    top: 50%;
    right: 8%;
    transform: translateY(-50%);
    opacity: 0.06;
    pointer-events: none;
}
.hero-cross-deco svg { width: 320px; height: 320px; }

/* Pontos decorativos */
.hero-dots {
    position: absolute;
    bottom: 80px;
    right: 6%;
    display: grid;
    grid-template-columns: repeat(5, 10px);
    grid-template-rows: repeat(4, 10px);
    gap: 10px;
    opacity: 0.15;
    pointer-events: none;
}
.hero-dots span {
    width: 4px; height: 4px;
    border-radius: 50%;
    background: var(--h-azul);
    display: block;
}

.home-hero-content {
    position: relative;
    z-index: 2;
    max-width: var(--container);
    margin: 0 auto;
    padding: 120px 32px 80px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    width: 100%;
}

/* Lado esquerdo — texto */
.hero-left { }

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--h-font-cond);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--h-azul);
    margin-bottom: 24px;
    animation: fadeUp 0.7s ease both;
}
.hero-eyebrow::before {
    content: '';
    display: block;
    width: 28px; height: 2px;
    background: var(--h-azul);
    border-radius: 2px;
}

.home-hero-title {
    font-family: var(--h-font-disp);
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 700;
    line-height: 1.08;
    color: var(--h-escuro);
    margin-bottom: 24px;
    animation: fadeUp 0.7s 0.1s ease both;
}
.home-hero-title em {
    font-style: italic;
    color: var(--h-azul);
}
.home-hero-title .hero-gold {
    color: var(--h-ouro);
    display: block;
}

.home-hero-sub {
    font-size: 1.1rem;
    color: var(--h-cinza1);
    line-height: 1.8;
    margin-bottom: 36px;
    max-width: 480px;
    animation: fadeUp 0.7s 0.2s ease both;
}

.home-hero-verse {
    border-left: 3px solid var(--h-ouro);
    padding: 16px 20px;
    margin-bottom: 40px;
    background: var(--h-ouro-lt);
    border-radius: 0 8px 8px 0;
    animation: fadeUp 0.7s 0.3s ease both;
}
.home-hero-verse p {
    font-family: var(--h-font-disp);
    font-size: 1rem;
    font-style: italic;
    color: var(--h-escuro);
    line-height: 1.6;
    margin-bottom: 6px;
}
.home-hero-verse cite {
    font-family: var(--h-font-cond);
    font-size: 0.75rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--h-ouro);
    font-style: normal;
}

.home-hero-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    animation: fadeUp 0.7s 0.4s ease both;
}
.btn-home-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--h-azul);
    color: var(--h-branco);
    font-family: var(--h-font-cond);
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 14px 32px;
    border-radius: 4px;
    transition: background 0.3s, transform 0.2s, box-shadow 0.3s;
}
.btn-home-primary:hover {
    background: var(--h-escuro);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(30, 107, 184, 0.3);
}
.btn-home-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 2px solid var(--h-azul);
    color: var(--h-azul);
    font-family: var(--h-font-cond);
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 12px 30px;
    border-radius: 4px;
    transition: all 0.3s;
}
.btn-home-secondary:hover {
    background: var(--h-azul);
    color: var(--h-branco);
}

/* Lado direito — cards de identidade */
.hero-right {
    display: flex;
    flex-direction: column;
    gap: 16px;
    animation: fadeUp 0.7s 0.2s ease both;
}

.hero-identity-card {
    background: var(--h-branco);
    border: 1px solid var(--h-cinza3);
    border-radius: 12px;
    padding: 20px 24px;
    display: flex;
    align-items: flex-start;
    gap: 16px;
    transition: box-shadow 0.3s, transform 0.3s;
}
.hero-identity-card:hover {
    box-shadow: 0 8px 32px rgba(30, 107, 184, 0.1);
    transform: translateY(-3px);
}
.hic-icon {
    width: 44px; height: 44px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    flex-shrink: 0;
}
.hic-azul  { background: var(--h-azul-lt); }
.hic-ouro  { background: var(--h-ouro-lt); }
.hic-verde { background: var(--h-verde-lt); }
.hic-title {
    font-family: var(--h-font-disp);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--h-escuro);
    margin-bottom: 4px;
    line-height: 1.2;
}
.hic-text {
    font-size: 0.88rem;
    color: var(--h-cinza1);
    line-height: 1.6;
}

/* Scroll hint */
.home-hero-scroll {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    color: var(--h-cinza2);
    z-index: 2;
    animation: bounceSlow 2s ease-in-out infinite;
}
.home-hero-scroll span {
    font-family: var(--h-font-cond);
    font-size: 0.65rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}
.home-hero-scroll-line {
    width: 1px; height: 40px;
    background: linear-gradient(to bottom, var(--h-azul), transparent);
}

/* ── FAIXA DE VERSÍCULO — HOME ──────────────────────────────── */
.home-verse-band {
    background: var(--h-azul);
    padding: 40px 32px;
}
.home-verse-band-inner {
    max-width: var(--container);
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 32px;
}
.hvb-cross { font-size: 1.3rem; color: rgba(255,255,255,0.3); flex-shrink: 0; }
.home-verse-band blockquote {
    font-family: var(--h-font-disp);
    font-size: 1.15rem;
    font-style: italic;
    color: var(--h-branco);
    line-height: 1.6;
    flex: 1;
}
.home-verse-band cite {
    display: block;
    font-family: var(--h-font-cond);
    font-style: normal;
    font-size: 0.78rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.6);
    margin-top: 8px;
}

/* ── SEÇÃO QUEM SOMOS ───────────────────────────────────────── */
.home-quem-somos {
    padding: var(--section-pad) 0;
    background: var(--h-branco);
}
.home-qs-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}
.home-qs-label {
    font-family: var(--h-font-cond);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--h-azul);
    display: block;
    margin-bottom: 12px;
}
.home-qs-title {
    font-family: var(--h-font-disp);
    font-size: clamp(2.2rem, 4vw, 3.4rem);
    font-weight: 700;
    line-height: 1.1;
    color: var(--h-escuro);
    margin-bottom: 24px;
}
.home-qs-title em { font-style: italic; color: var(--h-azul); }
.home-qs-body p {
    font-size: 1.02rem;
    color: var(--h-cinza1);
    line-height: 1.85;
    margin-bottom: 16px;
}
.home-qs-body strong { color: var(--h-azul); font-weight: 600; }

.home-qs-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 28px;
    font-family: var(--h-font-cond);
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--h-azul);
    border-bottom: 2px solid var(--h-azul);
    padding-bottom: 2px;
    transition: gap 0.3s;
}
.home-qs-link:hover { gap: 14px; }

/* Cards do lado direito de Quem Somos */
.home-qs-visual {
    display: flex;
    flex-direction: column;
    gap: 0;
}
.qs-stat-card {
    padding: 28px 32px;
    border-bottom: 1px solid var(--h-cinza3);
    display: flex;
    align-items: center;
    gap: 24px;
    transition: background 0.3s;
}
.qs-stat-card:first-child { border-top: 1px solid var(--h-cinza3); }
.qs-stat-card:hover { background: var(--h-off); }
.qs-stat-num {
    font-family: var(--h-font-disp);
    font-size: 3rem;
    font-weight: 700;
    line-height: 1;
    flex-shrink: 0;
    width: 80px;
}
.qs-num-azul  { color: var(--h-azul); }
.qs-num-ouro  { color: var(--h-ouro); }
.qs-num-verde { color: var(--h-verde); }
.qs-stat-text { }
.qs-stat-label {
    font-family: var(--h-font-cond);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--h-cinza2);
    display: block;
    margin-bottom: 3px;
}
.qs-stat-desc {
    font-size: 0.95rem;
    color: var(--h-escuro);
    font-weight: 500;
    line-height: 1.4;
}

/* Banner missão sertão */
.home-missao-banner {
    background: var(--h-azul-lt);
    border: 1px solid rgba(30, 107, 184, 0.15);
    border-radius: 12px;
    padding: 24px 28px;
    margin-top: 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}
.hmb-text p {
    font-family: var(--h-font-cond);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--h-azul);
    margin-bottom: 4px;
}
.hmb-text h4 {
    font-family: var(--h-font-disp);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--h-escuro);
}
.hmb-btn {
    display: inline-block;
    background: var(--h-azul);
    color: var(--h-branco);
    font-family: var(--h-font-cond);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 10px 20px;
    border-radius: 4px;
    white-space: nowrap;
    transition: background 0.3s;
    flex-shrink: 0;
}
.hmb-btn:hover { background: var(--h-escuro); }

/* ── ÚLTIMOS POSTS — HOME ───────────────────────────────────── */
.home-posts-section {
    padding: var(--section-pad) 0;
    background: var(--h-off);
}
.home-posts-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 48px;
    gap: 24px;
}
.home-posts-label {
    font-family: var(--h-font-cond);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--h-azul);
    display: block;
    margin-bottom: 8px;
}
.home-posts-title {
    font-family: var(--h-font-disp);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    line-height: 1.1;
    color: var(--h-escuro);
}
.home-posts-title em { font-style: italic; color: var(--h-azul); }

.home-btn-outline {
    display: inline-block;
    border: 2px solid var(--h-escuro);
    color: var(--h-escuro);
    font-family: var(--h-font-cond);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 10px 24px;
    border-radius: 4px;
    transition: all 0.3s;
    white-space: nowrap;
}
.home-btn-outline:hover { background: var(--h-escuro); color: var(--h-branco); }

/* Grid de posts */
.home-posts-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr;
    gap: 24px;
}
.hpc {
    background: var(--h-branco);
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    border: 1px solid var(--h-cinza3);
    transition: box-shadow 0.3s, transform 0.3s;
}
.hpc:hover {
    box-shadow: 0 12px 40px rgba(0,0,0,0.08);
    transform: translateY(-4px);
}
.hpc-featured { grid-row: 1; }
.hpc-thumb {
    overflow: hidden;
    position: relative;
}
.hpc-featured .hpc-thumb { height: 260px; }
.hpc          .hpc-thumb { height: 180px; }
.hpc-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.hpc:hover .hpc-thumb img { transform: scale(1.04); }

.hpc-thumb-ph {
    width: 100%; height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--h-azul-lt), var(--h-ouro-lt));
    font-size: 2.5rem;
    opacity: 0.5;
}

.hpc-cat {
    position: absolute;
    top: 14px; left: 14px;
    font-family: var(--h-font-cond);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: 2px;
    color: var(--h-branco);
    background: var(--h-azul);
}
.hpc-cat.relatos { background: var(--argila, #C4622D); }

.hpc-body { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.hpc-meta {
    font-family: var(--h-font-cond);
    font-size: 0.75rem;
    color: var(--h-cinza2);
    margin-bottom: 10px;
}
.hpc-title {
    font-family: var(--h-font-disp);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--h-escuro);
    line-height: 1.3;
    margin-bottom: 10px;
    flex: 1;
}
.hpc:not(.hpc-featured) .hpc-title { font-size: 1.05rem; }
.hpc-title a:hover { color: var(--h-azul); }
.hpc-excerpt {
    font-size: 0.88rem;
    color: var(--h-cinza1);
    line-height: 1.7;
    margin-bottom: 16px;
}
.hpc-link {
    font-family: var(--h-font-cond);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--h-azul);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: gap 0.3s;
    align-self: flex-start;
}
.hpc-link:hover { gap: 10px; }

/* ── SEÇÃO APOIAR — HOME ────────────────────────────────────── */
.home-apoio-section {
    padding: var(--section-pad) 0;
    background: var(--h-branco);
    position: relative;
    overflow: hidden;
}
.home-apoio-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--h-verde) 0%, var(--h-azul) 50%, var(--h-ouro) 100%);
}
.home-apoio-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}
.home-apoio-label {
    font-family: var(--h-font-cond);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--h-verde);
    display: block;
    margin-bottom: 12px;
}
.home-apoio-title {
    font-family: var(--h-font-disp);
    font-size: clamp(2.2rem, 4vw, 3.2rem);
    font-weight: 700;
    line-height: 1.1;
    color: var(--h-escuro);
    margin-bottom: 20px;
}
.home-apoio-title em { font-style: italic; color: var(--h-azul); }
.home-apoio-body {
    font-size: 1.02rem;
    color: var(--h-cinza1);
    line-height: 1.85;
    margin-bottom: 28px;
}
.home-apoio-items {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 36px;
}
.hai-item {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 0.95rem;
    color: var(--h-escuro);
}
.hai-dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    flex-shrink: 0;
}
.hai-dot-azul  { background: var(--h-azul); }
.hai-dot-ouro  { background: var(--h-ouro); }
.hai-dot-verde { background: var(--h-verde); }

/* Pix box home */
.home-pix-box {
    background: var(--h-azul);
    border-radius: 12px;
    padding: 24px 28px;
    margin-top: 0;
}
.hpb-label {
    font-family: var(--h-font-cond);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.6);
    margin-bottom: 12px;
    display: block;
}
.hpb-key-row {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 8px;
}
.hpb-key {
    font-family: var(--h-font-cond);
    font-size: 0.92rem;
    font-weight: 600;
    color: var(--h-branco);
    word-break: break-all;
    flex: 1;
}
.hpb-btn {
    background: rgba(255,255,255,0.15);
    color: var(--h-branco);
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 3px;
    font-family: var(--h-font-cond);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 6px 14px;
    cursor: pointer;
    transition: background 0.2s;
    white-space: nowrap;
}
.hpb-btn:hover { background: rgba(255,255,255,0.25); }
.hpb-obs {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.55);
    font-style: italic;
}

/* Form card home */
.home-form-card {
    background: var(--h-off);
    border: 1px solid var(--h-cinza3);
    border-radius: 16px;
    padding: 44px 40px;
}
.hfc-title {
    font-family: var(--h-font-disp);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--h-escuro);
    margin-bottom: 6px;
}
.hfc-sub {
    font-size: 0.92rem;
    color: var(--h-cinza1);
    margin-bottom: 28px;
    line-height: 1.6;
}
.home-form { display: flex; flex-direction: column; gap: 16px; }
.hf-group { display: flex; flex-direction: column; gap: 6px; }
.hf-group label {
    font-family: var(--h-font-cond);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--h-cinza1);
}
.hf-group input {
    border: 1.5px solid var(--h-cinza3);
    border-radius: 6px;
    padding: 12px 16px;
    font-family: var(--h-font-body);
    font-size: 0.95rem;
    color: var(--h-escuro);
    background: var(--h-branco);
    transition: border-color 0.3s, box-shadow 0.3s;
    outline: none;
}
.hf-group input:focus {
    border-color: var(--h-azul);
    box-shadow: 0 0 0 3px rgba(30, 107, 184, 0.12);
}
.hf-group input::placeholder { color: var(--h-cinza2); }
.btn-home-form {
    background: var(--h-azul);
    color: var(--h-branco);
    font-family: var(--h-font-cond);
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 14px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.3s, transform 0.2s;
    margin-top: 4px;
    width: 100%;
}
.btn-home-form:hover { background: var(--h-escuro); transform: translateY(-1px); }
.hfc-note {
    font-size: 0.78rem;
    color: var(--h-cinza2);
    text-align: center;
    margin-top: 8px;
}

/* ── FOOTER NA HOME ─────────────────────────────────────────── */
/* Footer já existe no tema, só precisa de small override na home */
.front-page-tjcj .site-footer { margin-top: 0; }

/* ── ANIMAÇÕES ──────────────────────────────────────────────── */
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(24px); }
    to   { opacity: 1; transform: translateY(0); }
}
@keyframes bounceSlow {
    0%,100% { opacity: 0.4; transform: translateX(-50%) translateY(0); }
    50%      { opacity: 0.8; transform: translateX(-50%) translateY(8px); }
}

/* ── RESPONSIVO ─────────────────────────────────────────────── */
@media (max-width: 1024px) {
    .home-hero-content { grid-template-columns: 1fr; gap: 48px; padding-bottom: 60px; }
    .hero-right { display: none; }
    .home-qs-layout { grid-template-columns: 1fr; gap: 40px; }
    .home-apoio-layout { grid-template-columns: 1fr; gap: 48px; }
    .home-posts-grid { grid-template-columns: 1fr 1fr; }
    .hpc-featured { grid-column: 1 / -1; display: grid; grid-template-columns: 1fr 1fr; }
    .hpc-featured .hpc-thumb { height: auto; }
}
@media (max-width: 768px) {
    .home-posts-grid { grid-template-columns: 1fr; }
    .hpc-featured { display: flex; flex-direction: column; }
    .home-posts-header { flex-direction: column; align-items: flex-start; }
    .home-verse-band-inner { flex-direction: column; text-align: center; gap: 16px; }
    .hvb-cross { display: none; }
    .home-form-card { padding: 28px 20px; }
}
