/* ============================================================
   PARÓQUIA — REDESIGN INSPIRADO NO KÖLNER DOM
   Fonte display : Cormorant Garamond
   Fonte texto   : Jost
   Paleta        : Navy · Dourado · Creme · Branco
   ============================================================ */

:root {
    --navy:      #0f1f3d;
    --navy2:     #1a2f52;
    --navy3:     #0a1428;
    --gold:      #c9a84c;
    --gold2:     #e8c56b;
    --cream:     #f5f0e8;
    --cream2:    #ede7d9;
    --white:     #ffffff;
    --text:      #1e1e1e;
    --text-md:   #4a4a4a;
    --text-lt:   #888;
    --border:    rgba(15,31,61,0.1);
    --radius:    12px;
    --radius-sm: 8px;
    --shadow:    0 8px 48px rgba(15,31,61,0.13);
    --shadow-sm: 0 3px 18px rgba(15,31,61,0.08);
    --trans:     0.32s cubic-bezier(0.25,0.46,0.45,0.94);
    --topbar-h:  38px;
    --nav-h:     76px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--topbar-h) + var(--nav-h)); }
body { font-family: 'Jost', sans-serif; color: var(--text); background: var(--white); overflow-x: hidden; }
h1,h2,h3,h4,h5 { font-family: 'Cormorant Garamond', serif; font-weight: 600; line-height: 1.15; }
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }

.container { max-width: 1180px; margin: 0 auto; padding: 0 28px; }
.section { padding: 96px 0; }
.section-white { background: var(--white); }
.section-cream { background: var(--cream); }
.section-navy  { background: var(--navy); }

/* ── TOPBAR ─────────────────────────────────────── */
.topbar {
    background: var(--navy3);
    color: rgba(255,255,255,0.65);
    font-size: 0.78rem;
    height: var(--topbar-h);
    display: flex;
    align-items: center;
}
.topbar-inner {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 28px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
}
.topbar-inner i { margin-right: 4px; color: var(--gold); }
.topbar-right { display: flex; gap: 24px; }
.topbar-right a { color: rgba(255,255,255,0.65); transition: color var(--trans); }
.topbar-right a:hover { color: var(--gold2); }

/* ── NAVBAR ─────────────────────────────────────── */
.site-nav {
    position: sticky;
    top: 0;
    z-index: 900;
    background: var(--navy);
    height: var(--nav-h);
    display: flex;
    align-items: center;
    box-shadow: 0 2px 24px rgba(0,0,0,0.25);
}
.nav-inner {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 28px;
    width: 100%;
    display: flex;
    align-items: center;
    gap: 0;
    height: 100%;
}

/* Brand */
.nav-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #fff;
    flex-shrink: 0;
    margin-right: 40px;
}
.brand-cross { color: var(--gold); font-size: 1.4rem; }
.brand-text { display: flex; flex-direction: column; line-height: 1.2; }
.brand-name { font-family: 'Cormorant Garamond', serif; font-size: 1.15rem; font-weight: 600; }
.brand-name em { color: var(--gold2); font-style: italic; }
.brand-diocese { font-size: 0.68rem; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.45); }

/* Nav principal */
.nav-main {
    list-style: none;
    display: flex;
    height: 100%;
    flex: 1;
}
.nav-item { position: relative; height: 100%; display: flex; align-items: center; }
.nav-link-top {
    display: flex;
    align-items: center;
    gap: 5px;
    height: 100%;
    padding: 0 18px;
    color: rgba(255,255,255,0.8);
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.03em;
    transition: color var(--trans), background var(--trans);
    white-space: nowrap;
    border-bottom: 3px solid transparent;
}
.nav-link-top i { font-size: 0.65rem; transition: transform var(--trans); }
.nav-item:hover .nav-link-top { color: #fff; border-bottom-color: var(--gold); }
.nav-item:hover .nav-link-top i { transform: rotate(180deg); }

/* CTA */
.nav-cta {
    margin-left: auto;
    flex-shrink: 0;
    background: var(--gold);
    color: var(--navy);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    padding: 10px 22px;
    border-radius: 8px;
    transition: background var(--trans), transform var(--trans);
    white-space: nowrap;
}
.nav-cta:hover { background: var(--gold2); transform: translateY(-1px); }

/* Toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
    margin-left: 16px;
}
.nav-toggle span { display: block; width: 24px; height: 2px; background: #fff; border-radius: 2px; transition: var(--trans); }

/* ── MEGA MENU ──────────────────────────────────── */
.mega-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    min-width: 640px;
    background: var(--white);
    border-top: 3px solid var(--gold);
    box-shadow: 0 16px 64px rgba(15,31,61,0.18);
    border-radius: 0 0 var(--radius) var(--radius);
    z-index: 1000;
    animation: megaSlide 0.22s ease both;
}
@keyframes megaSlide {
    from { opacity: 0; transform: translateX(-50%) translateY(-10px); }
    to   { opacity: 1; transform: translateX(-50%) translateY(0); }
}
.nav-item:hover .mega-menu { display: block; }
.mega-inner {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 0;
    padding: 0;
}
.mega-col {
    padding: 28px 24px;
    border-right: 1px solid var(--border);
}
.mega-col:last-child { border-right: none; }
.mega-col h4 {
    font-family: 'Jost', sans-serif;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--text-lt);
    margin-bottom: 14px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--border);
}
.mega-col a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    color: var(--text-md);
    font-size: 0.9rem;
    transition: color var(--trans), gap var(--trans);
    border-bottom: 1px solid transparent;
}
.mega-col a:hover { color: var(--navy); gap: 14px; }
.mega-col a i { color: var(--gold); font-size: 0.9rem; flex-shrink: 0; }
.mega-col.mega-highlight { background: var(--cream); border-right: none; }
.mega-missa { display: flex; flex-direction: column; gap: 8px; }
.mega-missa-time {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    color: var(--navy);
    font-weight: 600;
}
.mega-missa-desc { font-size: 0.85rem; color: var(--text-md); line-height: 1.5; }
.mega-btn {
    display: inline-block;
    margin-top: 8px;
    background: var(--gold);
    color: var(--navy) !important;
    font-size: 0.8rem;
    font-weight: 600;
    padding: 8px 16px;
    border-radius: 6px;
    letter-spacing: 0.04em;
    transition: background var(--trans) !important;
    gap: 0 !important;
    border: none;
}
.mega-btn:hover { background: var(--gold2) !important; }

/* ── MOBILE MENU ────────────────────────────────── */
.mobile-menu {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(10,20,45,0.97);
    backdrop-filter: blur(16px);
    z-index: 800;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 8px;
}
.mobile-menu.open { display: flex; }
.mobile-menu-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
}
.mobile-menu a {
    display: block;
    padding: 12px 32px;
    color: rgba(255,255,255,0.85);
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.6rem;
    font-weight: 400;
    letter-spacing: 0.04em;
    transition: color var(--trans);
    text-align: center;
}
.mobile-menu a:hover { color: var(--gold2); }

/* ── HERO ───────────────────────────────────────── */
.hero {
    position: relative;
    height: calc(100vh - var(--topbar-h) - var(--nav-h));
    min-height: 600px;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; }
.hero-img { width: 100%; height: 100%; object-fit: cover; object-position: center; animation: heroZoom 14s ease-in-out infinite alternate; }
@keyframes heroZoom {
    from { transform: scale(1.04); }
    to   { transform: scale(1.1); }
}
.hero-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(
        to top,
        rgba(8,16,36,0.95) 0%,
        rgba(8,16,36,0.65) 45%,
        rgba(8,16,36,0.2) 100%
    );
}
.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    padding: 0 0 0;
}
.hero-eyebrow {
    display: block;
    text-align: center;
    font-size: 0.8rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--gold2);
    margin-bottom: 10px;
    animation: fadeUp 1s 0.1s ease both;
}
.hero-title {
    font-size: clamp(2.8rem, 6vw, 5.2rem);
    font-weight: 300;
    color: #fff;
    text-align: center;
    line-height: 1.05;
    margin-bottom: 12px;
    animation: fadeUp 1s 0.2s ease both;
}
.hero-title em { color: var(--gold2); display: block; font-style: italic; }
.hero-tagline {
    text-align: center;
    font-size: 1rem;
    color: rgba(255,255,255,0.6);
    letter-spacing: 0.1em;
    margin-bottom: 48px;
    animation: fadeUp 1s 0.3s ease both;
}

/* Ações rápidas */
.hero-quick {
    background: rgba(255,255,255,0.07);
    backdrop-filter: blur(14px);
    border-top: 1px solid rgba(201,168,76,0.3);
    padding: 32px 40px 36px;
    animation: fadeUp 1s 0.4s ease both;
}
.hero-quick-label {
    text-align: center;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--gold);
    margin-bottom: 20px;
}
.hero-quick-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 8px;
    max-width: 900px;
    margin: 0 auto;
}
.quick-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 16px 8px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: var(--radius-sm);
    color: rgba(255,255,255,0.85);
    font-size: 0.75rem;
    text-align: center;
    line-height: 1.3;
    transition: background var(--trans), border-color var(--trans), transform var(--trans);
    cursor: pointer;
}
.quick-btn i { font-size: 1.3rem; color: var(--gold2); }
.quick-btn:hover { background: rgba(201,168,76,0.18); border-color: var(--gold); transform: translateY(-3px); color: #fff; }

.hero-scroll {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 4px;
    background: var(--gold);
    opacity: 0.6;
    z-index: 3;
}

@keyframes fadeUp {
    from { opacity: 0; transform: translateY(24px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* ── HIGHLIGHTS ─────────────────────────────────── */
.highlights {
    background: var(--navy2);
    border-bottom: 1px solid rgba(201,168,76,0.2);
}
.highlights-inner {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 28px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    divide-x: 1px solid rgba(255,255,255,0.1);
}
.highlight-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 22px 24px;
    color: rgba(255,255,255,0.8);
    border-right: 1px solid rgba(255,255,255,0.08);
    transition: background var(--trans);
}
.highlight-item:last-child { border-right: none; }
.highlight-item:hover { background: rgba(255,255,255,0.05); }
.highlight-item > i { font-size: 1.6rem; color: var(--gold); flex-shrink: 0; }
.highlight-item strong { display: block; font-size: 0.9rem; color: #fff; margin-bottom: 2px; }
.highlight-item span { font-size: 0.75rem; color: rgba(255,255,255,0.5); }

/* ── SECTION HEADERS ────────────────────────────── */
.section-header { text-align: center; margin-bottom: 56px; }
.section-header h2 { font-size: clamp(1.9rem, 3.5vw, 2.8rem); color: var(--navy); margin-bottom: 18px; }
.section-header.light h2 { color: #fff; }
.section-header.light .section-tag { color: var(--gold2); }

.section-header-row {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 40px;
}
.section-header-row h2 { font-size: clamp(1.8rem, 3vw, 2.5rem); color: var(--navy); margin-top: 6px; }

.section-tag {
    display: block;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 8px;
}
.section-rule {
    width: 48px; height: 2px;
    background: var(--gold);
    margin: 0 auto;
    border-radius: 2px;
}
.section-rule.left { margin: 18px 0 28px; }
.section-rule.light { background: rgba(201,168,76,0.6); }

.link-ver-todos {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--gold);
    letter-spacing: 0.04em;
    margin-bottom: 6px;
    transition: gap var(--trans);
}
.link-ver-todos:hover { gap: 10px; }

/* ── MISSAS ─────────────────────────────────────── */
.missas-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 56px;
}
.missa-card {
    background: var(--cream);
    border-radius: var(--radius);
    padding: 36px 32px;
    border: 1px solid var(--border);
    transition: transform var(--trans), box-shadow var(--trans);
}
.missa-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.missa-card.featured { background: var(--navy); border-color: var(--navy); }
.missa-card-icon { font-size: 1.8rem; color: var(--gold); margin-bottom: 16px; }
.missa-card h3 {
    font-size: 1.5rem;
    color: var(--navy);
    margin-bottom: 20px;
    padding-bottom: 14px;
    border-bottom: 1px solid var(--border);
}
.missa-card.featured h3 { color: var(--gold2); border-bottom-color: rgba(255,255,255,0.1); }
.missa-card ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.missa-card li { display: flex; align-items: center; gap: 12px; font-size: 0.9rem; color: var(--text-md); }
.missa-card li strong { font-size: 1.1rem; font-family: 'Cormorant Garamond', serif; color: var(--navy); min-width: 52px; }
.missa-card.featured li { color: rgba(255,255,255,0.7); }
.missa-card.featured li strong { color: #fff; }
.missa-next {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: var(--gold2);
    font-size: 0.8rem;
}
.missa-next i { font-size: 1.2rem; flex-shrink: 0; }
.missa-next div { display: flex; flex-direction: column; }
.missa-next strong { color: #fff; font-size: 1.1rem; }

/* Sacramentos */
.missas-sacramentos {
    background: var(--cream);
    border-radius: var(--radius);
    padding: 36px 40px;
    border: 1px solid var(--border);
}
.missas-sacramentos h4 {
    font-size: 1.1rem;
    color: var(--navy);
    margin-bottom: 24px;
    padding-bottom: 14px;
    border-bottom: 1px solid var(--border);
    font-family: 'Jost', sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    font-size: 0.8rem;
}
.sacramentos-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.sacramento-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}
.sacramento-item > i { font-size: 1.3rem; color: var(--gold); flex-shrink: 0; margin-top: 2px; }
.sacramento-item div { display: flex; flex-direction: column; gap: 3px; }
.sacramento-item strong { font-size: 0.9rem; color: var(--navy); }
.sacramento-item span { font-size: 0.8rem; color: var(--text-lt); line-height: 1.4; }

/* ── NEWS GRID ──────────────────────────────────── */
.news-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    align-items: start;
}
.news-main {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
    transition: transform var(--trans), box-shadow var(--trans);
}
.news-main:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.news-img-wrap { position: relative; height: 280px; overflow: hidden; }
.news-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform var(--trans); }
.news-main:hover .news-img-wrap img { transform: scale(1.05); }
.news-date-badge {
    position: absolute; top: 16px; left: 16px;
    background: var(--gold); color: var(--navy);
    border-radius: 8px; padding: 8px 12px;
    text-align: center; font-weight: 700; line-height: 1;
}
.news-date-badge .day { display: block; font-size: 1.5rem; }
.news-date-badge .month { font-size: 0.65rem; letter-spacing: 0.1em; }
.news-body { padding: 28px; }
.news-cat {
    display: inline-block;
    background: var(--cream2);
    color: var(--navy);
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 3px 10px;
    border-radius: 4px;
    margin-bottom: 10px;
}
.news-body h3 { font-size: 1.5rem; color: var(--navy); margin-bottom: 10px; }
.news-body p { font-size: 0.9rem; color: var(--text-md); line-height: 1.65; margin-bottom: 16px; }
.news-meta { display: flex; gap: 20px; font-size: 0.8rem; color: var(--text-lt); margin-bottom: 16px; }
.news-meta i { margin-right: 4px; color: var(--gold); }
.news-link {
    display: inline-flex; align-items: center; gap: 6px;
    color: var(--gold); font-weight: 600; font-size: 0.875rem;
    letter-spacing: 0.04em; transition: gap var(--trans);
}
.news-link:hover { gap: 10px; }

/* Notícias secundárias */
.news-side { display: flex; flex-direction: column; gap: 16px; }
.news-small {
    display: grid;
    grid-template-columns: 120px 1fr;
    gap: 0;
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--border);
    transition: transform var(--trans), box-shadow var(--trans);
}
.news-small:hover { transform: translateY(-3px); box-shadow: var(--shadow-sm); }
.news-small-img { overflow: hidden; }
.news-small-img img { width: 100%; height: 100%; object-fit: cover; transition: transform var(--trans); }
.news-small:hover .news-small-img img { transform: scale(1.06); }
.news-small-body { padding: 18px; display: flex; flex-direction: column; gap: 6px; }
.news-small-body h4 { font-size: 1rem; color: var(--navy); line-height: 1.3; }
.news-date { font-size: 0.75rem; color: var(--text-lt); }
.news-date i { margin-right: 4px; color: var(--gold); }
.news-link-sm {
    display: inline-flex; align-items: center; gap: 4px;
    font-size: 0.78rem; font-weight: 600; color: var(--gold);
    margin-top: auto; transition: gap var(--trans);
}
.news-link-sm:hover { gap: 8px; }

/* ── BANNERS DUPLOS ─────────────────────────────── */
.banners-duplos {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 420px;
}
.banner-item {
    position: relative;
    overflow: hidden;
    display: block;
}
.banner-item img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}
.banner-item:hover img { transform: scale(1.06); }
.banner-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(8,16,36,0.88) 0%, rgba(8,16,36,0.3) 60%, transparent 100%);
    transition: background var(--trans);
}
.banner-item:hover .banner-overlay { background: linear-gradient(to top, rgba(8,16,36,0.92) 0%, rgba(8,16,36,0.45) 60%, transparent 100%); }
.banner-text {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    padding: 36px 40px;
    color: #fff;
}
.banner-tag {
    display: block;
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold2);
    margin-bottom: 8px;
}
.banner-text h3 { font-size: 1.8rem; margin-bottom: 8px; font-weight: 400; }
.banner-text p { font-size: 0.88rem; color: rgba(255,255,255,0.7); margin-bottom: 16px; }
.banner-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--gold);
    border-bottom: 1px solid var(--gold);
    padding-bottom: 2px;
    transition: gap var(--trans);
}
.banner-item:hover .banner-link { gap: 12px; }

/* ── LITURGIA ───────────────────────────────────── */
.liturgia-layout {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 40px;
    align-items: start;
}
.liturgia-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(201,168,76,0.2);
    border-radius: var(--radius);
    padding: 44px;
}
.liturgia-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 6px;
}
.liturgia-data {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.7rem;
    color: var(--gold2);
}
.liturgia-tempo {
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.4);
    background: rgba(255,255,255,0.07);
    padding: 5px 12px;
    border-radius: 20px;
}
.liturgia-sub {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.45);
    margin-bottom: 28px;
}
.liturgia-leituras { display: flex; flex-direction: column; gap: 12px; margin-bottom: 28px; }
.leitura-row {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 20px;
    background: rgba(255,255,255,0.04);
    border-radius: var(--radius-sm);
    border-left: 3px solid rgba(201,168,76,0.25);
}
.leitura-row.destaque { border-left-color: var(--gold); background: rgba(201,168,76,0.07); }
.leitura-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.2rem;
    color: var(--gold);
    min-width: 24px;
    text-align: center;
}
.leitura-row div { display: flex; flex-direction: column; gap: 2px; }
.leitura-tipo {
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(255,255,255,0.45);
}
.leitura-ref {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem;
    color: #fff;
}
.leitura-row.destaque .leitura-ref { color: var(--gold2); font-size: 1.2rem; }
.liturgia-note { font-size: 0.78rem; color: rgba(255,255,255,0.28); }

.liturgia-aside { display: flex; flex-direction: column; gap: 20px; }
.liturgia-versao {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(201,168,76,0.15);
    border-radius: var(--radius);
    padding: 32px 28px;
    text-align: center;
}
.liturgia-versao i { color: var(--gold); opacity: 0.5; margin-bottom: 12px; }
.liturgia-versao blockquote {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.35rem;
    font-style: italic;
    color: #fff;
    line-height: 1.5;
    margin-bottom: 12px;
}
.liturgia-versao cite { font-size: 0.8rem; color: var(--gold); }
.btn-gold-outline {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 20px;
    border: 1px solid rgba(201,168,76,0.35);
    border-radius: var(--radius-sm);
    color: rgba(255,255,255,0.8);
    font-size: 0.875rem;
    font-weight: 500;
    transition: border-color var(--trans), background var(--trans), color var(--trans);
}
.btn-gold-outline i { color: var(--gold); }
.btn-gold-outline:hover { border-color: var(--gold); background: rgba(201,168,76,0.1); color: #fff; }

/* ── SOBRE ──────────────────────────────────────── */
.sobre-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}
.sobre-img-wrap { position: relative; }
.sobre-img { width: 100%; border-radius: var(--radius); box-shadow: var(--shadow); }
.sobre-img-deco {
    position: absolute;
    inset: -14px;
    border: 2px solid var(--gold);
    border-radius: calc(var(--radius) + 4px);
    z-index: -1;
    opacity: 0.35;
}
.sobre-stat {
    position: absolute;
    bottom: -20px; right: 24px;
    background: var(--gold);
    color: var(--navy);
    border-radius: var(--radius-sm);
    padding: 16px 22px;
    text-align: center;
    box-shadow: var(--shadow-sm);
}
.sobre-stat strong { display: block; font-family: 'Cormorant Garamond', serif; font-size: 2rem; font-weight: 700; }
.sobre-stat span { font-size: 0.72rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em; }
.sobre-text .section-tag { display: block; margin-bottom: 10px; }
.sobre-text h2 { font-size: clamp(1.9rem, 3vw, 2.7rem); color: var(--navy); margin-bottom: 8px; }
.lead-text { font-size: 1.05rem; line-height: 1.75; color: var(--text-md); margin-bottom: 12px; }
.body-text { font-size: 0.95rem; line-height: 1.7; color: var(--text-lt); margin-bottom: 32px; }
.sobre-infos { display: flex; flex-direction: column; gap: 14px; margin-top: 12px; }
.sobre-info-item { display: flex; align-items: flex-start; gap: 14px; }
.sobre-info-item > i { font-size: 1.25rem; color: var(--gold); flex-shrink: 0; margin-top: 2px; }
.sobre-info-item div { display: flex; flex-direction: column; gap: 2px; }
.info-label { font-size: 0.68rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--text-lt); }
.info-val { font-size: 0.95rem; color: var(--text); font-weight: 500; }

/* ── PASTORAIS ──────────────────────────────────── */
.pastorais-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.pastoral-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
    transition: transform var(--trans), box-shadow var(--trans);
}
.pastoral-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.pastoral-img {
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
}
.pastoral-body { padding: 22px; }
.pastoral-body h4 { font-size: 1.1rem; color: var(--navy); margin-bottom: 8px; }
.pastoral-body p { font-size: 0.83rem; color: var(--text-lt); line-height: 1.55; margin-bottom: 14px; }
.pastoral-link {
    display: inline-flex; align-items: center; gap: 6px;
    font-size: 0.8rem; font-weight: 600; color: var(--gold);
    transition: gap var(--trans);
}
.pastoral-link:hover { gap: 10px; }

/* ── DOAÇÕES ────────────────────────────────────── */
.doacoes-layout {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 72px;
    align-items: center;
}
.doacoes-text .section-tag { display: block; margin-bottom: 8px; }
.doacoes-text h2 { font-size: clamp(1.8rem, 3vw, 2.7rem); color: #fff; margin-bottom: 8px; }
.doacoes-text > p { font-size: 1rem; line-height: 1.7; color: rgba(255,255,255,0.65); margin-bottom: 24px; }
.doacoes-quote {
    border-left: 3px solid var(--gold);
    padding: 12px 20px;
    margin-bottom: 28px;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.15rem;
    font-style: italic;
    color: rgba(255,255,255,0.75);
    line-height: 1.55;
}
.doacoes-quote cite { display: block; margin-top: 8px; font-size: 0.8rem; color: var(--gold); font-style: normal; }
.pix-box {
    display: flex;
    align-items: center;
    gap: 16px;
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(201,168,76,0.25);
    border-radius: var(--radius-sm);
    padding: 18px 22px;
    flex-wrap: wrap;
}
.pix-header { display: flex; align-items: center; gap: 8px; color: var(--gold); font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.1em; font-weight: 600; }
.pix-header i { font-size: 1.1rem; }
.pix-key { font-family: 'Cormorant Garamond', serif; font-size: 1.2rem; color: #fff; flex: 1; }
.pix-copy {
    background: var(--gold);
    color: var(--navy);
    border: none;
    border-radius: 6px;
    padding: 8px 16px;
    font-size: 0.78rem;
    font-weight: 600;
    cursor: pointer;
    transition: background var(--trans);
    font-family: 'Jost', sans-serif;
    white-space: nowrap;
}
.pix-copy:hover { background: var(--gold2); }
.doacoes-qr {
    display: flex; flex-direction: column; align-items: center; gap: 12px;
    flex-shrink: 0;
}
.doacoes-qr img {
    width: 200px; height: 200px;
    object-fit: cover;
    border-radius: var(--radius-sm);
    border: 4px solid rgba(255,255,255,0.15);
    box-shadow: 0 8px 32px rgba(0,0,0,0.3);
}
.doacoes-qr span { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.1em; color: rgba(255,255,255,0.4); }
.qr-note { font-size: 0.78rem; color: rgba(255,255,255,0.3); text-align: center; max-width: 200px; line-height: 1.4; }

/* ── CONTATO ────────────────────────────────────── */
.contato-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}
.contato-form h3,
.contato-info h3 {
    font-size: 1.6rem;
    color: var(--navy);
    margin-bottom: 6px;
}
.form-intro { font-size: 0.9rem; color: var(--text-lt); margin-bottom: 24px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-group { margin-bottom: 14px; }
.form-group label {
    display: block;
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-lt);
    margin-bottom: 6px;
}
.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 13px 16px;
    background: var(--cream);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    color: var(--text);
    font-family: 'Jost', sans-serif;
    font-size: 0.9rem;
    outline: none;
    transition: border-color var(--trans), box-shadow var(--trans);
    appearance: none;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(201,168,76,0.15);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.btn-submit {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 15px;
    background: var(--navy);
    color: #fff;
    border: none;
    border-radius: var(--radius-sm);
    font-family: 'Jost', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    cursor: pointer;
    transition: background var(--trans), transform var(--trans);
}
.btn-submit:hover { background: var(--navy2); transform: translateY(-1px); }

.contato-cards { display: flex; flex-direction: column; gap: 12px; margin-top: 16px; margin-bottom: 20px; }
.contato-card {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 18px;
    background: var(--cream);
    border-radius: var(--radius-sm);
    border: 1px solid var(--border);
    transition: background var(--trans);
}
.contato-card:hover { background: var(--cream2); }
.contato-card > i:first-child { font-size: 1.3rem; color: var(--gold); flex-shrink: 0; }
.contato-card div { display: flex; flex-direction: column; gap: 2px; }
.contato-card strong { font-size: 0.9rem; color: var(--navy); }
.contato-card span { font-size: 0.82rem; color: var(--text-lt); line-height: 1.4; }
.contato-card.whatsapp { text-decoration: none; }
.contato-card.whatsapp > i:first-child { color: #25d366; }
.contato-mapa { border-radius: var(--radius-sm); overflow: hidden; }

/* ── FOOTER ─────────────────────────────────────── */
.site-footer { background: var(--navy3); }
.footer-top { padding: 64px 0 56px; border-bottom: 1px solid rgba(255,255,255,0.06); }
.footer-grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1fr;
    gap: 48px;
}
.footer-brand .footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}
.footer-brand .brand-cross { font-size: 1.6rem; color: var(--gold); }
.footer-brand strong {
    display: block;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.2rem;
    color: #fff;
}
.footer-brand strong em { color: var(--gold2); font-style: italic; }
.footer-brand .footer-logo span { font-size: 0.68rem; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.35); }
.footer-brand > p { font-size: 0.85rem; color: rgba(255,255,255,0.4); line-height: 1.6; margin-bottom: 20px; }
.social-links { display: flex; gap: 10px; }
.social-links a {
    width: 38px; height: 38px;
    border-radius: 8px;
    background: rgba(255,255,255,0.07);
    color: rgba(255,255,255,0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    transition: background var(--trans), color var(--trans);
}
.social-links a:hover { background: var(--gold); color: var(--navy); }

.footer-col h5 {
    font-family: 'Jost', sans-serif;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: rgba(255,255,255,0.35);
    margin-bottom: 18px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.footer-col a {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.5);
    transition: color var(--trans);
}
.footer-col a:hover { color: var(--gold2); }

.footer-bottom {
    padding: 18px 0;
}
.footer-bottom .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.78rem;
    color: rgba(255,255,255,0.25);
}
.heart { color: #e55; }

/* ── FLUTUANTES ─────────────────────────────────── */
.whatsapp-float {
    position: fixed; bottom: 28px; right: 28px; z-index: 800;
    width: 54px; height: 54px;
    background: #25d366; color: #fff;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.5rem;
    box-shadow: 0 6px 24px rgba(37,211,102,0.4);
    transition: transform var(--trans), box-shadow var(--trans);
}
.whatsapp-float:hover { transform: scale(1.1) translateY(-2px); box-shadow: 0 10px 32px rgba(37,211,102,0.5); }

.scroll-top {
    position: fixed; bottom: 92px; right: 28px; z-index: 800;
    width: 42px; height: 42px;
    background: var(--navy2); color: rgba(255,255,255,0.7);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1rem; cursor: pointer;
    opacity: 0; pointer-events: none;
    transition: opacity var(--trans), transform var(--trans);
}
.scroll-top.visible { opacity: 1; pointer-events: auto; }
.scroll-top:hover { background: var(--navy); transform: translateY(-2px); }

/* ── FADE IN ────────────────────────────────────── */
.fade-in {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.65s ease, transform 0.65s ease;
}
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* ── RESPONSIVE ─────────────────────────────────── */
@media (max-width: 1100px) {
    .pastorais-grid { grid-template-columns: repeat(2, 1fr); }
    .sacramentos-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
    .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 900px) {
    .nav-main, .nav-cta { display: none; }
    .nav-toggle { display: flex; margin-left: auto; }
    .highlights-inner { grid-template-columns: repeat(2, 1fr); }
    .hero-quick-grid { grid-template-columns: repeat(3, 1fr); }
    .news-grid { grid-template-columns: 1fr; }
    .banners-duplos { grid-template-columns: 1fr; min-height: auto; }
    .banner-item { height: 300px; }
    .liturgia-layout { grid-template-columns: 1fr; }
    .sobre-layout { grid-template-columns: 1fr; gap: 60px; }
    .sobre-img-wrap { max-width: 500px; margin: 0 auto; }
    .doacoes-layout { grid-template-columns: 1fr; }
    .doacoes-qr { flex-direction: row; align-items: center; }
    .contato-layout { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .topbar-right { display: none; }
}

@media (max-width: 640px) {
    :root { --nav-h: 64px; }
    .section { padding: 64px 0; }
    .highlights-inner { grid-template-columns: 1fr 1fr; }
    .hero-quick-grid { grid-template-columns: repeat(2, 1fr); }
    .missas-grid { grid-template-columns: 1fr; }
    .sacramentos-grid { grid-template-columns: 1fr; }
    .pastorais-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .footer-bottom .container { flex-direction: column; gap: 6px; text-align: center; }
    .doacoes-qr { flex-direction: column; }
    .news-small { grid-template-columns: 90px 1fr; }
    .sobre-stat { position: static; margin-top: 16px; display: inline-flex; gap: 8px; align-items: center; border-radius: var(--radius-sm); }
}
