:root {
    --blue: #08b8ea;
    --blue-bright: #16c5f3;
    --blue-deep: #006da5;
    --navy: #032a4a;
    --navy-dark: #011927;
    --black: #05080b;
    --ink: #102532;
    --muted: #637682;
    --ice: #edf9fd;
    --paper: #fbfdfe;
    --white: #fff;
    --line: rgba(3, 42, 74, .12);
    --shadow: 0 28px 80px rgba(2, 43, 70, .14);
    --radius: 30px;
    --container: min(1180px, calc(100% - 40px));
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    color: var(--ink);
    background: var(--paper);
    font-family: Inter, "Segoe UI", Arial, sans-serif;
    line-height: 1.65;
}
body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, a { -webkit-tap-highlight-color: transparent; }
.container { width: var(--container); margin-inline: auto; }
.section { padding: 120px 0; }
.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 11px;
    color: var(--blue-deep);
    font-size: .73rem;
    font-weight: 900;
    letter-spacing: .17em;
    text-transform: uppercase;
}
.eyebrow::before { width: 32px; height: 2px; background: var(--blue); content: ""; }
.eyebrow-light { color: var(--blue-bright); }
.section-title {
    margin: 15px 0 22px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(2.55rem, 5vw, 5rem);
    font-weight: 500;
    letter-spacing: -.055em;
    line-height: .99;
}
.lead { color: var(--ink); font-size: 1.13rem; }
.button-row { display: flex; flex-wrap: wrap; gap: 12px; }
.button {
    display: inline-flex;
    min-height: 52px;
    padding: 0 23px;
    align-items: center;
    justify-content: center;
    border: 1px solid transparent;
    border-radius: 999px;
    font-size: .88rem;
    font-weight: 850;
    transition: transform .2s ease, background .2s ease, box-shadow .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button-primary {
    color: var(--navy-dark);
    background: linear-gradient(135deg, var(--blue-bright), #72ddfa);
    box-shadow: 0 14px 35px rgba(8, 184, 234, .23);
}
.button-white { color: var(--navy); background: var(--white); }
.button-glass { color: var(--white); border-color: rgba(255,255,255,.3); background: rgba(255,255,255,.08); backdrop-filter: blur(12px); }
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .65s ease, transform .65s ease; }
.reveal.visible { opacity: 1; transform: none; }

.welcome-bar { color: rgba(255,255,255,.72); background: var(--black); font-size: .75rem; letter-spacing: .03em; }
.welcome-bar .container { display: flex; min-height: 38px; align-items: center; justify-content: space-between; gap: 20px; }
.welcome-bar strong { color: var(--blue-bright); }
.site-header {
    position: sticky;
    z-index: 60;
    top: 0;
    border-bottom: 0;
    color: var(--white);
    background: linear-gradient(110deg, rgba(1,25,39,.98), rgba(3,42,74,.97));
    backdrop-filter: blur(16px);
}
.home-page .welcome-bar {
    position: absolute;
    z-index: 62;
    top: 0;
    right: 0;
    left: 0;
    border-bottom: 0;
    background: rgba(1,10,17,.34);
    backdrop-filter: blur(8px);
}
.home-page .site-header {
    position: absolute;
    top: 38px;
    right: 0;
    left: 0;
    background: linear-gradient(180deg, rgba(1,15,24,.52), rgba(1,15,24,.08));
    backdrop-filter: none;
    transition: background .3s ease, box-shadow .3s ease, backdrop-filter .3s ease;
}
.home-page .site-header.header-scrolled {
    position: fixed;
    top: 0;
    background: linear-gradient(110deg, rgba(1,25,39,.97), rgba(3,42,74,.96));
    box-shadow: 0 12px 35px rgba(0,0,0,.2);
    backdrop-filter: blur(16px);
}
.navbar { display: flex; min-height: 190px; align-items: center; justify-content: space-between; gap: 28px; }
.brand { display: flex; align-items: center; gap: 13px; }
.brand img { width: 171px; height: 171px; border: 0; border-radius: 50%; object-fit: contain; box-shadow: none; }
.brand b { display: block; font-size: 1rem; line-height: 1.05; }
.brand small { display: block; margin-top: 5px; color: rgba(255,255,255,.55); font-size: .59rem; font-weight: 800; letter-spacing: .17em; text-transform: uppercase; }
.main-menu { display: flex; align-items: center; gap: 24px; font-size: 1rem; font-weight: 750; }
.main-menu > a:not(.button) { color: rgba(255,255,255,.73); }
.main-menu > a:not(.button):hover { color: var(--white); }
.menu-button {
    display: none;
    width: 48px;
    height: 48px;
    padding: 12px 10px;
    border: 0;
    color: var(--white);
    background: transparent;
}
.menu-button span {
    display: block;
    width: 100%;
    height: 3px;
    margin: 5px 0;
    border-radius: 999px;
    background: currentColor;
    transition: transform .2s ease, opacity .2s ease;
}
.menu-open .menu-button span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.menu-open .menu-button span:nth-child(2) { opacity: 0; }
.menu-open .menu-button span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

.hero {
    position: relative;
    min-height: 760px;
    overflow: hidden;
    color: var(--white);
    background: var(--navy-dark);
}
.hero-photo {
    position: absolute;
    inset: 0;
    background: url("../images/culto-2025/culto-congregacao.jpg") center 46% / cover;
    transform: scale(1.015);
}
.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(1,15,24,.98) 0%, rgba(2,31,50,.88) 42%, rgba(1,23,37,.18) 76%),
        linear-gradient(0deg, rgba(1,16,26,.82), transparent 55%);
}
.hero-overlay::after {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 80% 15%, rgba(8,184,234,.27), transparent 27%);
    content: "";
}
.hero-content { position: relative; z-index: 2; max-width: 640px; padding: 320px 0 150px; }
.hero h1 {
    margin: 16px 0 25px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(3rem, 5.1vw, 5.25rem);
    font-weight: 500;
    letter-spacing: -.055em;
    line-height: .98;
}
.hero-content > p { max-width: 640px; margin-bottom: 32px; color: rgba(255,255,255,.76); font-size: 1.14rem; }
.hero-footer {
    position: absolute;
    z-index: 3;
    right: 0;
    bottom: 0;
    left: 0;
    display: grid;
    padding: 28px 0;
    grid-template-columns: 1fr 1fr 1.25fr;
    align-items: center;
    gap: 30px;
    border-top: 1px solid rgba(255,255,255,.18);
}
.hero-footer div { display: grid; gap: 3px; }
.hero-footer small { color: var(--blue-bright); font-size: .65rem; font-weight: 850; letter-spacing: .13em; text-transform: uppercase; }
.hero-footer strong { font-size: .9rem; }
.hero-footer blockquote { margin: 0; padding-left: 25px; border-left: 1px solid rgba(255,255,255,.25); color: rgba(255,255,255,.73); font-family: Georgia, serif; }
.hero-footer blockquote b { margin-left: 8px; color: var(--white); font-family: Inter, sans-serif; font-size: .64rem; letter-spacing: .1em; text-transform: uppercase; }

.quick-welcome { position: relative; z-index: 5; background: var(--white); box-shadow: 0 12px 50px rgba(3,42,74,.07); }
.quick-grid { display: grid; grid-template-columns: 1.15fr repeat(3, 1fr); }
.quick-grid > div { min-height: 150px; padding: 30px; border-right: 1px solid var(--line); }
.quick-grid > div:last-child { border: 0; }
.quick-heading { color: var(--white); background: linear-gradient(135deg, var(--blue-deep), var(--navy)); }
.quick-heading span { color: var(--blue-bright); font-size: .68rem; font-weight: 900; letter-spacing: .15em; text-transform: uppercase; }
.quick-heading h2 { margin: 8px 0 0; font-family: Georgia, serif; font-size: 1.8rem; font-weight: 500; line-height: 1.12; }
.quick-item { display: grid; grid-template-columns: 35px 1fr; gap: 13px; }
.quick-item > b { color: var(--blue); font-size: .68rem; }
.quick-item strong, .quick-item span { display: block; }
.quick-item strong { line-height: 1.25; }
.quick-item span { margin-top: 7px; color: var(--muted); font-size: .83rem; line-height: 1.5; }

.home-identity {
    position: relative;
    overflow: hidden;
    padding: 92px 0;
    color: var(--white);
    background:
        radial-gradient(circle at 82% 45%, rgba(8,184,234,.2), transparent 30%),
        linear-gradient(120deg, var(--navy-dark), var(--navy) 62%, #075b82);
}
.home-identity::after {
    position: absolute;
    top: -230px;
    right: -170px;
    width: 520px;
    height: 520px;
    border: 75px solid rgba(255,255,255,.035);
    border-radius: 50%;
    content: "";
}
.home-identity-grid { position: relative; z-index: 2; display: grid; grid-template-columns: .82fr 1.18fr; align-items: center; gap: 80px; }
.home-identity-copy h2 { max-width: 620px; margin: 15px 0 20px; font-family: Georgia, serif; font-size: clamp(2.8rem, 5vw, 5rem); font-weight: 500; letter-spacing: -.055em; line-height: .98; }
.home-identity-copy p { max-width: 540px; margin-bottom: 28px; color: rgba(255,255,255,.67); font-size: 1.05rem; }
.home-slogans { display: grid; gap: 18px; }
.home-slogans div { display: grid; min-height: 180px; padding: 32px; place-items: center; border: 1px solid rgba(255,255,255,.14); border-radius: 24px; background: rgba(1,18,29,.3); backdrop-filter: blur(8px); }
.home-slogans img { width: 100%; max-height: 140px; object-fit: contain; }

.about-grid { display: grid; grid-template-columns: 1.02fr .98fr; align-items: center; gap: 95px; }
.about-gallery { position: relative; min-height: 650px; }
.about-main { width: 82%; height: 570px; border-radius: var(--radius); object-fit: cover; box-shadow: var(--shadow); }
.about-small { position: absolute; right: 0; bottom: 0; width: 52%; height: 285px; border: 8px solid var(--paper); border-radius: 24px; object-fit: cover; box-shadow: var(--shadow); }
.about-stamp {
    position: absolute;
    top: 36px;
    right: -18px;
    display: grid;
    width: 150px;
    height: 150px;
    padding: 25px;
    place-content: center;
    border-radius: 50%;
    color: var(--white);
    background: linear-gradient(135deg, var(--blue), var(--blue-deep));
    box-shadow: 0 20px 55px rgba(0,109,165,.24);
    transform: rotate(4deg);
}
.about-stamp strong { font-family: Georgia, serif; font-size: 2rem; font-weight: 500; line-height: 1; }
.about-stamp span { margin-top: 6px; font-size: .71rem; line-height: 1.35; }
.about-copy > p:not(.lead) { color: var(--muted); }
.about-points { display: grid; gap: 1px; margin-top: 34px; overflow: hidden; border: 1px solid var(--line); border-radius: 18px; background: var(--line); }
.about-points div { display: grid; padding: 16px 20px; grid-template-columns: 45px 1fr; background: var(--white); }
.about-points span { color: var(--blue-deep); font-size: .7rem; font-weight: 900; }

.year-theme {
    position: relative;
    overflow: hidden;
    padding: 125px 0;
    color: var(--white);
    background:
        radial-gradient(circle at 78% 48%, rgba(8,184,234,.18), transparent 24%),
        linear-gradient(120deg, #02070b 5%, #03233b 52%, #004f7e 100%);
}
.year-theme::before {
    position: absolute;
    inset: 0;
    opacity: .17;
    background-image: linear-gradient(rgba(255,255,255,.05) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.05) 1px, transparent 1px);
    background-size: 70px 70px;
    mask-image: linear-gradient(90deg, #000, transparent 75%);
    content: "";
}
.year-glow {
    position: absolute;
    top: 50%;
    right: 10%;
    width: 440px;
    height: 440px;
    border-radius: 50%;
    background: var(--blue);
    filter: blur(150px);
    opacity: .14;
    transform: translateY(-50%);
}
.year-grid { position: relative; display: grid; grid-template-columns: 1fr .9fr; align-items: center; gap: 70px; }
.year-label { display: inline-flex; padding: 9px 15px; border: 1px solid rgba(22,197,243,.35); border-radius: 999px; color: var(--blue-bright); background: rgba(8,184,234,.08); font-size: .68rem; font-weight: 900; letter-spacing: .16em; text-transform: uppercase; }
.year-copy h2 { margin: 22px 0; font-size: clamp(3.9rem, 7vw, 7rem); letter-spacing: -.065em; line-height: .82; }
.year-copy h2 em { color: var(--blue-bright); font-family: Georgia, serif; font-weight: 500; }
.year-copy > p { max-width: 630px; color: rgba(255,255,255,.67); font-size: 1.08rem; }
.theme-steps { display: grid; margin: 33px 0; grid-template-columns: repeat(3, 1fr); border-top: 1px solid rgba(255,255,255,.15); border-bottom: 1px solid rgba(255,255,255,.15); }
.theme-steps div { display: grid; min-height: 135px; padding: 23px 19px; border-right: 1px solid rgba(255,255,255,.15); }
.theme-steps div:last-child { border: 0; }
.theme-steps span { color: var(--blue-bright); font-size: .65rem; font-weight: 900; }
.theme-steps strong { margin: 10px 0 4px; font-family: Georgia, serif; font-size: 1.2rem; }
.theme-steps small { color: rgba(255,255,255,.5); line-height: 1.45; }
.year-copy blockquote { margin: 0; padding-left: 22px; border-left: 2px solid var(--blue); color: rgba(255,255,255,.66); font-family: Georgia, serif; }
.year-copy blockquote b { display: block; margin-top: 8px; color: var(--white); font-family: Inter, sans-serif; font-size: .66rem; letter-spacing: .12em; text-transform: uppercase; }
.clock-stage { position: relative; min-height: 650px; }
.clock-stage img { position: absolute; z-index: 3; top: 50%; left: 50%; width: min(620px, 110%); filter: drop-shadow(0 35px 60px rgba(0,0,0,.6)); transform: translate(-50%, -47%); }
.year-number { position: absolute; z-index: 1; top: -15px; right: -5px; color: rgba(255,255,255,.05); font-size: 10rem; font-weight: 950; letter-spacing: -.08em; }
.clock-orbit { position: absolute; top: 50%; left: 50%; border: 1px solid rgba(22,197,243,.22); border-radius: 50%; transform: translate(-50%,-50%); }
.orbit-one { width: 590px; height: 590px; }
.orbit-two { width: 720px; height: 720px; border-style: dashed; opacity: .48; }

.culture { background: var(--ice); }
.section-heading { display: flex; align-items: end; justify-content: space-between; gap: 60px; margin-bottom: 55px; }
.section-heading .section-title { margin-bottom: 0; }
.section-heading > p { max-width: 430px; margin-bottom: 6px; color: var(--muted); }
.culture-grid { display: grid; grid-template-columns: 1.25fr repeat(2, 1fr); gap: 18px; }
.culture-card {
    position: relative;
    display: flex;
    min-height: 245px;
    overflow: hidden;
    padding: 29px;
    flex-direction: column;
    justify-content: space-between;
    border: 1px solid rgba(3,42,74,.1);
    border-radius: 22px;
    background: rgba(255,255,255,.78);
    box-shadow: 0 12px 38px rgba(3,42,74,.045);
}
.culture-card > span { position: relative; z-index: 2; color: var(--blue-deep); font-size: .68rem; font-weight: 900; }
.culture-card > div { position: relative; z-index: 2; }
.culture-icon {
    position: absolute;
    z-index: 1;
    top: 24px;
    right: 24px;
    width: 88px;
    height: 88px;
    fill: none;
    stroke: var(--blue-deep);
    stroke-width: 3;
    stroke-linecap: round;
    stroke-linejoin: round;
    opacity: .22;
    transition: opacity .3s ease, transform .35s ease;
}
.culture-card:hover .culture-icon { opacity: .42; transform: translateY(-4px) scale(1.04); }
.culture-card h3 { margin: 0 0 8px; font-family: Georgia, serif; font-size: 1.45rem; font-weight: 500; line-height: 1.1; }
.culture-card p { margin: 0; color: var(--muted); font-size: .87rem; }
.culture-feature { grid-row: span 2; color: var(--white); background: linear-gradient(145deg, var(--navy), var(--blue-deep)); }
.culture-feature > span { display: grid; width: 50px; height: 50px; place-items: center; border: 1px solid rgba(255,255,255,.25); border-radius: 50%; color: var(--blue-bright); }
.culture-feature .culture-icon { top: 55px; right: 35px; width: 190px; height: 190px; stroke: var(--blue-bright); stroke-width: 2.2; opacity: .18; }
.culture-feature:hover .culture-icon { opacity: .3; }
.culture-feature small { color: var(--blue-bright); font-size: .68rem; font-weight: 900; letter-spacing: .13em; text-transform: uppercase; }
.culture-feature h3 { margin: 10px 0 15px; font-size: 3.1rem; letter-spacing: -.045em; }
.culture-feature p { color: rgba(255,255,255,.66); font-size: 1rem; }

.community-stories { background: var(--white); }
.story-cards { display: grid; grid-template-columns: 1.15fr .85fr; gap: 18px; }
.story-card { position: relative; min-height: 355px; overflow: hidden; border-radius: var(--radius); color: var(--white); background: var(--navy); }
.story-wide { grid-row: span 2; min-height: 728px; }
.story-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.story-card:hover img { transform: scale(1.03); }
.story-card::after { position: absolute; inset: 0; background: linear-gradient(0deg, rgba(1,19,31,.94), transparent 68%); content: ""; }
.story-card div { position: absolute; z-index: 2; right: 0; bottom: 0; left: 0; padding: 31px; }
.story-card span { color: var(--blue-bright); font-size: .68rem; font-weight: 900; letter-spacing: .13em; text-transform: uppercase; }
.story-card h3 { max-width: 500px; margin: 8px 0 0; font-family: Georgia, serif; font-size: 2rem; font-weight: 500; line-height: 1.08; }
.story-wide h3 { font-size: 3rem; }

.sorria-section {
    position: relative;
    overflow: hidden;
    color: var(--white);
    background: radial-gradient(circle at 8% 10%, rgba(8,183,234,.25), transparent 27%), linear-gradient(135deg, #031522, #063652 62%, #075e83);
}
.sorria-section::after { position: absolute; right: -150px; bottom: -220px; width: 520px; height: 520px; border: 75px solid rgba(255,255,255,.035); border-radius: 50%; content: ""; }
.sorria-section .container { position: relative; z-index: 2; }
.sorria-heading { display: flex; margin-bottom: 45px; align-items: end; justify-content: space-between; gap: 35px; }
.sorria-heading h2 { margin: 10px 0 0; font-family: Georgia, serif; font-size: clamp(3.2rem, 6vw, 6rem); font-weight: 500; letter-spacing: -.055em; line-height: .9; }
.sorria-partnership { display: grid; padding: 15px 20px; border: 1px solid rgba(255,255,255,.16); border-radius: 13px; background: rgba(255,255,255,.06); }
.sorria-partnership span { color: rgba(255,255,255,.57); font-size: .68rem; text-transform: uppercase; letter-spacing: .1em; }
.sorria-partnership strong { margin-top: 5px; color: var(--blue-bright); }
.sorria-layout { display: grid; grid-template-columns: .76fr 1.24fr; align-items: stretch; gap: 20px; }
.sorria-story { position: relative; min-height: 620px; display: flex; overflow: hidden; padding: 45px; justify-content: end; flex-direction: column; border: 1px solid rgba(255,255,255,.13); border-radius: 28px; background: rgba(0,0,0,.17); }
.sorria-year { position: absolute; top: 20px; right: 25px; color: rgba(255,255,255,.055); font-size: 7rem; font-weight: 950; letter-spacing: -.08em; }
.sorria-story h3 { position: relative; margin: 0 0 20px; font-family: Georgia, serif; font-size: 2.65rem; font-weight: 500; letter-spacing: -.04em; line-height: 1.03; }
.sorria-story > p { color: rgba(255,255,255,.68); line-height: 1.75; }
.sorria-highlights { display: grid; margin-top: 28px; gap: 12px; }
.sorria-highlights div { display: grid; padding-top: 12px; grid-template-columns: 100px 1fr; border-top: 1px solid rgba(255,255,255,.12); }
.sorria-highlights b { color: var(--blue-bright); font-size: .78rem; }
.sorria-highlights span { color: rgba(255,255,255,.56); font-size: .76rem; }
.sorria-gallery { display: grid; min-height: 620px; grid-template-columns: repeat(2, 1fr); grid-template-rows: 1.4fr 1fr 1fr; gap: 12px; }
.sorria-gallery figure { position: relative; overflow: hidden; margin: 0; border-radius: 20px; background: var(--navy); }
.sorria-gallery .sorria-main { grid-column: 1 / -1; }
.sorria-gallery img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.sorria-gallery figure:hover img { transform: scale(1.045); }

.gatherings { padding: 120px 0; color: var(--white); background: linear-gradient(125deg, var(--black), var(--navy) 75%); }
.gathering-grid { display: grid; grid-template-columns: .9fr 1.1fr; align-items: center; gap: 80px; }
.gathering-copy h2 { margin: 16px 0 22px; font-family: Georgia, serif; font-size: clamp(2.7rem, 4.8vw, 4.8rem); font-weight: 500; letter-spacing: -.05em; line-height: 1; }
.gathering-copy > p { color: rgba(255,255,255,.62); }
.schedule { display: grid; gap: 1px; margin: 30px 0; overflow: hidden; border: 1px solid rgba(255,255,255,.13); border-radius: 18px; background: rgba(255,255,255,.13); }
.schedule div { display: grid; padding: 19px 21px; grid-template-columns: 135px 1fr auto; gap: 14px; background: rgba(2,30,49,.96); }
.schedule strong { color: var(--blue-bright); }
.schedule span { color: rgba(255,255,255,.58); }
.gathering-photo { position: relative; }
.gathering-photo img { width: 100%; height: 620px; border-radius: var(--radius); object-fit: cover; }
.photo-message { position: absolute; bottom: 25px; left: -30px; display: grid; padding: 22px 25px; border-radius: 18px; color: var(--navy-dark); background: var(--blue-bright); box-shadow: var(--shadow); }
.photo-message span { font-size: .8rem; }

.messages { background: var(--paper); }
.message-grid { display: grid; grid-template-columns: 1.18fr .82fr; gap: 20px; }
.message-main, .message-side { overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius); background: var(--white); box-shadow: 0 14px 45px rgba(3,42,74,.06); }
.message-main img { width: 100%; height: 395px; object-fit: cover; }
.message-side img { width: 100%; height: 260px; object-fit: cover; }
.message-main > div, .message-side > div { padding: 27px 30px 31px; }
.message-grid span { color: var(--blue-deep); font-size: .68rem; font-weight: 900; letter-spacing: .13em; text-transform: uppercase; }
.message-grid h3 { margin: 8px 0; font-family: Georgia, serif; font-size: 1.8rem; font-weight: 500; line-height: 1.12; }
.message-grid p { color: var(--muted); }
.message-grid a { color: var(--blue-deep); font-size: .83rem; font-weight: 900; }

.visit-section { background: var(--ice); }
.visit-card {
    position: relative;
    display: grid;
    overflow: hidden;
    padding: 72px;
    grid-template-columns: 1fr .9fr;
    align-items: center;
    gap: 70px;
    border-radius: 36px;
    color: var(--white);
    background: linear-gradient(130deg, var(--navy-dark), var(--navy) 58%, var(--blue-deep));
    box-shadow: var(--shadow);
}
.visit-card::before { position: absolute; top: -260px; right: -220px; width: 560px; height: 560px; border: 80px solid rgba(255,255,255,.04); border-radius: 50%; content: ""; }
.visit-card > div { position: relative; z-index: 2; }
.visit-card h2 { margin: 15px 0 20px; font-family: Georgia, serif; font-size: clamp(2.8rem, 5vw, 5rem); font-weight: 500; letter-spacing: -.055em; line-height: .98; }
.visit-card p { color: rgba(255,255,255,.63); }
.contact-lines { display: grid; gap: 14px; margin: 27px 0; }
.contact-lines div { display: grid; grid-template-columns: 90px 1fr; }
.contact-lines b { color: var(--blue-bright); }
.map { height: 410px; overflow: hidden; border: 6px solid rgba(255,255,255,.1); border-radius: 25px; }
.map img { width: 100%; height: 100%; object-fit: cover; }

.site-footer { padding: 75px 0 28px; color: rgba(255,255,255,.58); background: var(--black); }
.footer-grid { display: grid; grid-template-columns: 1.35fr repeat(3, .65fr); gap: 60px; }
.footer-brand { display: flex; align-items: center; gap: 13px; color: var(--white); font-family: Georgia, serif; font-size: 1.8rem; }
.footer-brand img { width: 56px; height: 56px; border: 1px solid rgba(255,255,255,.12); border-radius: 50%; object-fit: contain; }
.footer-grid h3 { color: var(--white); font-size: .84rem; }
.footer-grid a { display: block; margin: 9px 0; }
.footer-grid a:hover { color: var(--blue-bright); }
.footer-grid p { max-width: 360px; }
.footer-bottom { display: flex; margin-top: 55px; padding-top: 24px; justify-content: space-between; gap: 20px; border-top: 1px solid rgba(255,255,255,.1); font-size: .75rem; }
.messages-more { margin-top: 32px; text-align: center; }
.blog-hero { padding: 145px 0 95px; color: var(--white); background: radial-gradient(circle at 80% 20%, rgba(8,183,234,.28), transparent 30%), linear-gradient(135deg, var(--black), var(--navy) 65%, var(--blue-deep)); }
.blog-hero h1 { max-width: 900px; margin: 18px 0; font-family: Georgia, serif; font-size: clamp(3rem, 6vw, 5.6rem); font-weight: 500; letter-spacing: -.055em; line-height: .98; }
.blog-hero p { max-width: 650px; color: rgba(255,255,255,.67); font-size: 1.08rem; line-height: 1.7; }
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 25px; }
.blog-card { overflow: hidden; border: 1px solid var(--line); border-radius: 22px; background: var(--white); box-shadow: 0 15px 45px rgba(11,48,70,.08); }
.blog-image { display: block; overflow: hidden; aspect-ratio: 16/10; background: #dce8ed; }
.blog-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.blog-card:hover .blog-image img { transform: scale(1.04); }
.blog-card > div { padding: 25px; }
.blog-card span { color: var(--blue-deep); font-size: .7rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.blog-card h2 { margin: 10px 0; font-family: Georgia, serif; font-size: 1.65rem; letter-spacing: -.035em; }
.blog-card p { color: var(--text-light); line-height: 1.65; }
.read-link { color: var(--blue-deep); font-size: .82rem; font-weight: 800; }
.public-notice { margin-bottom: 30px; padding: 18px; border: 1px solid #b5ddea; border-radius: 12px; color: #07546f; background: #edfaff; }
.public-pagination a { border-color: var(--line); }
.post-hero { position: relative; min-height: 650px; display: flex; align-items: end; overflow: hidden; color: var(--white); background: var(--navy); }
.post-hero > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.post-hero-overlay { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(2,12,20,.2), rgba(2,12,20,.92)); }
.post-heading { position: relative; z-index: 2; padding-bottom: 75px; }
.post-heading > a { color: #73dcff; font-size: .78rem; font-weight: 800; }
.post-heading > span { display: block; margin: 45px 0 12px; color: rgba(255,255,255,.65); font-size: .76rem; letter-spacing: .1em; text-transform: uppercase; }
.post-heading h1 { max-width: 980px; margin: 0; font-family: Georgia, serif; font-size: clamp(3.2rem, 7vw, 6.5rem); font-weight: 500; letter-spacing: -.06em; line-height: .94; }
.post-heading p { max-width: 760px; margin: 25px 0 0; color: rgba(255,255,255,.7); font-size: 1.1rem; line-height: 1.7; }
.post-content-wrap { width: min(820px, calc(100% - 34px)); margin: 0 auto; padding: 80px 0; }
.post-author { display: grid; margin-bottom: 45px; padding-bottom: 25px; border-bottom: 1px solid var(--line); }
.post-author span { color: var(--text-light); font-size: .72rem; text-transform: uppercase; letter-spacing: .1em; }
.post-content { font-family: Georgia, serif; font-size: 1.14rem; line-height: 1.9; }
.post-content h2,.post-content h3 { margin: 1.8em 0 .6em; color: var(--navy); line-height: 1.15; letter-spacing: -.035em; }
.post-content h2 { font-size: 2.3rem; }
.post-content h3 { font-size: 1.7rem; }
.post-content img { max-width: 100%; height: auto; margin: 25px auto; border-radius: 16px; }
.post-content a { color: var(--blue-deep); text-decoration: underline; }
.post-content blockquote { margin: 35px 0; padding: 25px 30px; border-left: 4px solid var(--blue-bright); color: var(--navy); background: var(--off-white); }
.post-share { display: flex; margin-top: 55px; padding: 25px; align-items: center; justify-content: space-between; gap: 20px; border-radius: 15px; color: var(--white); background: linear-gradient(120deg, var(--navy-dark), var(--blue-deep)); }
.post-share a { padding: 10px 15px; border: 1px solid rgba(255,255,255,.25); border-radius: 8px; font-size: .78rem; font-weight: 800; }
.related-posts { background: var(--off-white); }

.community-page { overflow: hidden; }
.community-hero {
    position: relative;
    min-height: 720px;
    display: flex;
    align-items: center;
    overflow: hidden;
    color: var(--white);
    background: var(--navy-dark);
}
.community-hero-photo { position: absolute; inset: 0; background: url("../images/culto-270725/comunidade-louvor.jpg") center 42% / cover; transform: scale(1.02); }
.community-hero-shade {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(1,15,24,.98) 0%, rgba(2,35,56,.91) 48%, rgba(1,20,32,.48) 100%),
        linear-gradient(0deg, rgba(1,15,24,.76), transparent 55%);
}
.community-hero-grid { position: relative; z-index: 2; display: grid; padding: 115px 0; grid-template-columns: 1fr .72fr; align-items: center; gap: 80px; }
.community-hero-copy h1 { max-width: 780px; margin: 18px 0 25px; font-family: Georgia, serif; font-size: clamp(3.4rem, 6vw, 6.4rem); font-weight: 500; letter-spacing: -.06em; line-height: .92; }
.community-hero-copy > p { max-width: 680px; margin-bottom: 31px; color: rgba(255,255,255,.72); font-size: 1.12rem; }
.community-hero-slogan { padding: 35px; border: 1px solid rgba(255,255,255,.16); border-radius: 28px; background: rgba(2,37,59,.52); box-shadow: 0 30px 80px rgba(0,0,0,.3); backdrop-filter: blur(14px); }
.community-hero-slogan img { width: 100%; }

.identity-intro { padding: 120px 0; background: var(--white); }
.identity-intro-grid { display: grid; grid-template-columns: .8fr 1.2fr; align-items: center; gap: 100px; }
.identity-statement { position: relative; overflow: hidden; padding: 60px; border-radius: 32px; color: var(--white); background: linear-gradient(145deg, var(--blue-deep), var(--navy)); box-shadow: var(--shadow); }
.identity-statement::after { position: absolute; right: -120px; bottom: -150px; width: 340px; height: 340px; border: 55px solid rgba(255,255,255,.06); border-radius: 50%; content: ""; }
.identity-statement span { color: var(--blue-bright); font-size: .72rem; font-weight: 900; letter-spacing: .17em; text-transform: uppercase; }
.identity-statement h2 { position: relative; z-index: 2; margin: 26px 0 0; font-family: Georgia, serif; font-size: clamp(4rem, 7vw, 7.2rem); font-weight: 500; letter-spacing: -.065em; line-height: .78; }
.identity-copy > p:not(.lead) { color: var(--muted); }
.identity-copy blockquote { margin: 35px 0 0; padding: 25px 28px; border-left: 3px solid var(--blue); color: var(--navy); background: var(--ice); font-family: Georgia, serif; font-size: 1.2rem; }
.identity-copy blockquote b { display: block; margin-top: 11px; color: var(--blue-deep); font-family: Inter, sans-serif; font-size: .68rem; letter-spacing: .13em; text-transform: uppercase; }

.relevance-section { position: relative; padding: 110px 0; overflow: hidden; color: var(--white); background: linear-gradient(120deg, #02121d, var(--navy) 58%, #075f87); }
.relevance-section::before { position: absolute; inset: 0; opacity: .16; background-image: linear-gradient(rgba(255,255,255,.06) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.06) 1px, transparent 1px); background-size: 65px 65px; content: ""; }
.relevance-grid { position: relative; z-index: 2; display: grid; grid-template-columns: 1.08fr .92fr; align-items: center; gap: 90px; }
.relevance-art { padding: 48px; border: 1px solid rgba(255,255,255,.14); border-radius: 30px; background: rgba(0,0,0,.16); }
.relevance-copy h2 { margin: 16px 0 22px; font-family: Georgia, serif; font-size: clamp(3rem, 5vw, 5rem); font-weight: 500; letter-spacing: -.055em; line-height: .95; }
.relevance-copy > p { color: rgba(255,255,255,.67); }
.relevance-points { display: grid; gap: 1px; margin-top: 30px; overflow: hidden; border: 1px solid rgba(255,255,255,.12); border-radius: 18px; background: rgba(255,255,255,.12); }
.relevance-points div { display: grid; padding: 19px 21px; grid-template-columns: 100px 1fr; gap: 15px; background: rgba(2,39,62,.93); }
.relevance-points strong { color: var(--blue-bright); }
.relevance-points span { color: rgba(255,255,255,.6); }

.journey-section { background: var(--ice); }
.journey-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.journey-card { position: relative; min-height: 470px; display: flex; overflow: hidden; padding: 36px; flex-direction: column; border: 1px solid var(--line); border-radius: 27px; background: var(--white); box-shadow: 0 18px 55px rgba(3,42,74,.07); }
.journey-card::before { position: absolute; top: -110px; right: -110px; width: 250px; height: 250px; border: 42px solid rgba(8,184,234,.06); border-radius: 50%; content: ""; }
.journey-card > span { display: grid; width: 46px; height: 46px; place-items: center; border: 1px solid var(--line); border-radius: 50%; color: var(--blue-deep); font-size: .7rem; font-weight: 900; }
.journey-card small { margin-top: auto; color: var(--blue-deep); font-size: .68rem; font-weight: 900; letter-spacing: .13em; text-transform: uppercase; }
.journey-card h3 { margin: 9px 0 13px; font-family: Georgia, serif; font-size: 3.3rem; font-weight: 500; letter-spacing: -.05em; line-height: .9; }
.journey-card p { color: var(--muted); }
.journey-card ul { display: grid; margin: 20px 0 0; padding: 18px 0 0; gap: 8px; border-top: 1px solid var(--line); list-style: none; }
.journey-card li { color: var(--ink); font-size: .85rem; }
.journey-card li::before { margin-right: 9px; color: var(--blue); content: "•"; }
.journey-disciple { color: var(--white); background: linear-gradient(145deg, var(--navy), var(--blue-deep)); }
.journey-disciple > span { border-color: rgba(255,255,255,.22); color: var(--blue-bright); }
.journey-disciple small { color: var(--blue-bright); }
.journey-disciple p, .journey-disciple li { color: rgba(255,255,255,.66); }
.journey-disciple ul { border-color: rgba(255,255,255,.14); }

.values-section { background: var(--white); }
.values-layout { display: grid; grid-template-columns: .8fr 1.2fr; align-items: start; gap: 80px; }
.values-copy { position: sticky; top: 145px; }
.values-copy > p { color: var(--muted); }
.values-copy img { width: 100%; height: 370px; margin-top: 32px; border-radius: 26px; object-fit: cover; box-shadow: var(--shadow); }
.values-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 15px; }
.value-card { min-height: 225px; padding: 29px; border: 1px solid var(--line); border-radius: 22px; background: var(--paper); }
.value-card b { color: var(--blue-deep); font-size: .68rem; }
.value-card h3 { margin: 33px 0 9px; font-family: Georgia, serif; font-size: 1.55rem; font-weight: 500; line-height: 1.05; }
.value-card p { margin: 0; color: var(--muted); font-size: .87rem; }

.formation-section { position: relative; padding: 120px 0; color: var(--white); background: radial-gradient(circle at 75% 15%, rgba(8,184,234,.2), transparent 28%), linear-gradient(135deg, var(--black), var(--navy) 70%); }
.formation-heading { max-width: 820px; margin-bottom: 55px; }
.formation-heading h2 { margin: 13px 0 18px; font-family: Georgia, serif; font-size: clamp(3rem, 6vw, 6rem); font-weight: 500; letter-spacing: -.06em; line-height: .92; }
.formation-heading p { color: rgba(255,255,255,.65); font-size: 1.08rem; }
.formation-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.formation-card { min-height: 270px; padding: 35px; border: 1px solid rgba(255,255,255,.13); border-radius: 24px; background: rgba(255,255,255,.055); }
.formation-card span { color: var(--blue-bright); font-size: .7rem; font-weight: 900; letter-spacing: .13em; text-transform: uppercase; }
.formation-card h3 { margin: 52px 0 11px; font-family: Georgia, serif; font-size: 2rem; font-weight: 500; }
.formation-card p { margin: 0; color: rgba(255,255,255,.59); }

.serve-section { background: var(--paper); }
.serve-groups { display: grid; grid-template-columns: repeat(2, 1fr); gap: 17px; }
.serve-group { min-height: 300px; padding: 34px; border: 1px solid var(--line); border-radius: 25px; background: var(--white); box-shadow: 0 16px 50px rgba(3,42,74,.05); }
.serve-group > span, .serve-group > div > span { color: var(--blue-deep); font-size: .68rem; font-weight: 900; letter-spacing: .13em; text-transform: uppercase; }
.serve-group h3 { max-width: 450px; margin: 34px 0 25px; font-family: Georgia, serif; font-size: 2rem; font-weight: 500; letter-spacing: -.035em; line-height: 1.05; }
.serve-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.serve-tags b { padding: 8px 12px; border: 1px solid var(--line); border-radius: 999px; color: var(--muted); background: var(--paper); font-size: .75rem; font-weight: 700; }
.serve-group-wide { display: grid; min-height: 220px; grid-column: 1 / -1; grid-template-columns: 1fr 1fr; align-items: center; gap: 50px; color: var(--white); background: linear-gradient(130deg, var(--navy), var(--blue-deep)); }
.serve-group-wide > div > span { color: var(--blue-bright); }
.serve-group-wide h3 { margin-bottom: 0; }
.serve-group-wide .serve-tags b { border-color: rgba(255,255,255,.17); color: rgba(255,255,255,.73); background: rgba(255,255,255,.07); }

.community-scripture { padding: 120px 0; color: var(--white); background: var(--navy-dark); }
.scripture-grid { display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 85px; }
.scripture-photo { position: relative; }
.scripture-photo::before { position: absolute; top: -20px; right: -20px; width: 52%; height: 52%; border: 2px solid var(--blue); border-radius: 27px; content: ""; }
.scripture-photo img { position: relative; z-index: 2; width: 100%; height: 590px; border-radius: 27px; object-fit: cover; box-shadow: 0 30px 80px rgba(0,0,0,.35); }
.scripture-copy blockquote { margin: 26px 0 15px; font-family: Georgia, serif; font-size: clamp(2.5rem, 4.5vw, 4.7rem); letter-spacing: -.05em; line-height: 1; }
.scripture-copy > b { color: var(--blue-bright); font-size: .72rem; letter-spacing: .15em; text-transform: uppercase; }
.scripture-copy > p { margin: 28px 0; color: rgba(255,255,255,.62); }

@media (max-width: 1050px) {
    .welcome-bar { display: none; }
    .home-page .site-header { top: 0; }
    .menu-button { display: block; }
    .navbar { position: relative; min-height: 190px; }
    .main-menu {
        position: fixed;
        inset: 190px 0 0;
        display: none;
        padding: 35px 25px;
        align-items: stretch;
        flex-direction: column;
        font-size: 1.12rem;
        background: linear-gradient(150deg, var(--navy-dark), var(--navy));
    }
    .menu-open .main-menu { display: flex; }
    .quick-grid { grid-template-columns: 1fr 1fr; }
    .about-grid, .year-grid, .gathering-grid, .visit-card { grid-template-columns: 1fr; }
    .about-grid { gap: 55px; }
    .clock-stage { min-height: 580px; }
    .culture-grid { grid-template-columns: 1fr 1fr; }
    .culture-feature { grid-column: 1 / -1; grid-row: auto; min-height: 430px; }
    .story-wide { min-height: 650px; }
    .sorria-layout { grid-template-columns: 1fr; }
    .sorria-story { min-height: 480px; }
    .visit-card { padding: 55px; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .home-identity-grid, .community-hero-grid, .identity-intro-grid, .relevance-grid, .values-layout, .scripture-grid { grid-template-columns: 1fr; gap: 55px; }
    .community-hero { min-height: auto; }
    .community-hero-grid { padding: 100px 0; }
    .community-hero-slogan { max-width: 650px; }
    .journey-grid { grid-template-columns: 1fr; }
    .journey-card { min-height: 390px; }
    .values-copy { position: static; }
    .values-copy img { max-width: 680px; }
}

@media (max-width: 700px) {
    :root { --container: min(100% - 28px, 1180px); --radius: 22px; }
    .section { padding: 82px 0; }
    .navbar { min-height: 205px; justify-content: center; }
    .brand { width: 100%; justify-content: center; }
    .brand img { width: min(171px, 48vw); height: min(171px, 48vw); }
    .brand span { display: none; }
    .menu-button { position: absolute; right: 0; bottom: 18px; border: 1px solid rgba(255,255,255,.24); border-radius: 9px; background: rgba(1,20,33,.45); }
    .main-menu { inset: 205px 0 0; }
    .header-scrolled .navbar { min-height: 112px; }
    .header-scrolled .brand img { width: 92px; height: 92px; }
    .header-scrolled .menu-button { bottom: 32px; }
    .header-scrolled .main-menu { inset: 112px 0 0; }
    .hero { min-height: 760px; }
    .hero-content { max-width: 100%; padding: 310px 0 180px; }
    .hero h1 { max-width: 560px; font-size: clamp(2.65rem, 12vw, 4rem); line-height: 1; }
    .hero-footer { grid-template-columns: 1fr 1fr; padding: 22px 0; }
    .hero-footer blockquote { display: none; }
    .button-row .button { width: 100%; }
    .quick-grid { grid-template-columns: 1fr; }
    .quick-grid > div { min-height: 0; padding: 23px; border-right: 0; border-bottom: 1px solid var(--line); }
    .about-gallery { min-height: 460px; }
    .about-main { width: 89%; height: 410px; }
    .about-small { height: 195px; border-width: 5px; }
    .about-stamp { top: 22px; right: -2px; width: 115px; height: 115px; padding: 18px; }
    .about-stamp strong { font-size: 1.5rem; }
    .year-theme { padding: 85px 0; }
    .theme-steps { grid-template-columns: 1fr; }
    .theme-steps div { min-height: 0; border-right: 0; border-bottom: 1px solid rgba(255,255,255,.15); }
    .clock-stage { min-height: 420px; }
    .year-number { font-size: 6rem; }
    .orbit-one { width: 390px; height: 390px; }
    .orbit-two { width: 480px; height: 480px; }
    .section-heading { display: block; }
    .section-heading > p { margin-top: 25px; }
    .culture-grid, .story-cards, .message-grid { grid-template-columns: 1fr; }
    .culture-feature { grid-column: auto; min-height: 390px; }
    .story-wide { grid-row: auto; min-height: 480px; }
    .story-card { min-height: 390px; }
    .story-wide h3 { font-size: 2.2rem; }
    .sorria-heading { align-items: stretch; flex-direction: column; }
    .sorria-story { min-height: 560px; padding: 30px; }
    .sorria-story h3 { font-size: 2.15rem; }
    .sorria-gallery { min-height: 760px; grid-template-columns: 1fr 1fr; grid-template-rows: 1.35fr 1fr 1fr; }
    .sorria-highlights div { grid-template-columns: 1fr; gap: 4px; }
    .schedule div { grid-template-columns: 1fr; gap: 2px; }
    .schedule div b { color: var(--white); }
    .gathering-photo img { height: 440px; }
    .photo-message { left: 18px; }
    .visit-section { padding-right: 0; padding-left: 0; }
    .visit-section > .container { width: 100%; max-width: none; }
    .visit-card { width: 100%; margin: 0; padding: 48px 27px; border-radius: 0; }
    .contact-lines div { grid-template-columns: 1fr; }
    .map { height: 300px; }
    .footer-grid { grid-template-columns: 1fr; gap: 28px; }
    .footer-bottom { flex-direction: column; }
    .blog-grid { grid-template-columns: 1fr; }
    .blog-hero { padding: 110px 0 70px; }
    .post-hero { min-height: 600px; }
    .post-heading { padding-bottom: 50px; }
    .post-share { align-items: stretch; flex-direction: column; }
    .home-identity { padding: 75px 0; }
    .home-identity-grid { gap: 40px; }
    .home-slogans div { min-height: 120px; padding: 22px; border-radius: 18px; }
    .community-hero-grid { padding: 78px 0; gap: 45px; }
    .community-hero-copy h1 { font-size: clamp(3rem, 14vw, 4.6rem); }
    .community-hero-slogan { padding: 24px; border-radius: 20px; }
    .identity-intro, .relevance-section, .formation-section, .community-scripture { padding: 82px 0; }
    .identity-intro-grid, .relevance-grid, .scripture-grid { gap: 45px; }
    .identity-statement { padding: 42px 30px; border-radius: 24px; }
    .identity-statement h2 { font-size: clamp(3.7rem, 20vw, 6rem); }
    .relevance-art { padding: 25px; border-radius: 21px; }
    .relevance-points div { grid-template-columns: 1fr; gap: 4px; }
    .journey-card { min-height: 420px; padding: 29px; }
    .values-grid, .formation-grid, .serve-groups { grid-template-columns: 1fr; }
    .values-copy img { height: 330px; }
    .value-card { min-height: 205px; }
    .serve-group-wide { grid-column: auto; grid-template-columns: 1fr; gap: 25px; }
    .scripture-photo img { height: 430px; }
    .scripture-photo::before { right: -10px; }
}

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after { transition-duration: .01ms !important; animation-duration: .01ms !important; }
    .reveal { opacity: 1; transform: none; }
}
