:root {
  --ink: #eee9dc;
  --forest: #243a28;
  --forest-deep: #132119;
  --moss: #516d45;
  --gold: #c79644;
  --terracotta: #a64e32;
  --cream: #142219;
  --paper: #0d1711;
  --muted: #a6ada3;
  --line: rgba(225, 232, 218, .13);
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Outfit", system-ui, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; color: var(--ink); background: var(--paper); font-family: var(--sans); line-height: 1.6; }
img { display: block; max-width: 100%; }
a { color: inherit; }
.container { width: min(1160px, calc(100% - 40px)); margin-inline: auto; }
.skip { position: fixed; left: 12px; top: -80px; z-index: 100; padding: 10px 16px; color: white; background: var(--forest); border-radius: 0 0 8px 8px; }
.skip:focus { top: 0; }

.site-header { position: absolute; inset: 0 0 auto; z-index: 20; color: #fff; border-bottom: 1px solid rgba(255,255,255,.14); }
.nav-wrap { min-height: 86px; display: flex; align-items: center; gap: 32px; }
.brand { display: inline-flex; align-items: center; gap: 12px; text-decoration: none; font-family: var(--serif); font-size: 1.55rem; font-weight: 600; letter-spacing: .04em; white-space: nowrap; }
.brand img { width: 54px; height: 54px; object-fit: cover; border-radius: 50%; border: 1px solid rgba(199,150,68,.7); }
nav { display: flex; align-items: center; justify-content: center; gap: 26px; margin-left: auto; }
nav a { font-size: .84rem; font-weight: 500; text-decoration: none; letter-spacing: .03em; opacity: .82; }
nav a:hover { opacity: 1; color: #f6cf82; }
.nav-cta { padding: 10px 18px; border: 1px solid rgba(255,255,255,.45); border-radius: 999px; text-decoration: none; font-size: .82rem; }
.menu-toggle { display: none; color: #fff; background: transparent; border: 0; font: inherit; }

.hero { min-height: 760px; position: relative; display: grid; align-items: center; overflow: hidden; color: #fff; }
.hero-bg, .hero-shade { position: absolute; inset: 0; width: 100%; height: 100%; }
.hero-bg { object-fit: cover; object-position: center; }
.hero-shade { background: linear-gradient(90deg, rgba(8,16,11,.93) 0%, rgba(8,16,11,.78) 38%, rgba(8,16,11,.28) 72%, rgba(8,16,11,.12) 100%), linear-gradient(0deg, rgba(8,16,11,.55), transparent 45%); }
.hero-content { position: relative; z-index: 2; padding-top: 104px; }
.eyebrow, .kicker { margin: 0 0 12px; color: var(--gold); font-size: .72rem; font-weight: 600; letter-spacing: .24em; text-transform: uppercase; }
.hero h1 { max-width: 680px; margin: 0; font-family: var(--serif); font-size: clamp(4.1rem, 8vw, 7.4rem); line-height: .88; letter-spacing: -.045em; font-weight: 600; }
.hero-lead { max-width: 640px; margin: 25px 0 20px; color: rgba(255,255,255,.84); font-size: clamp(1rem, 2vw, 1.18rem); font-weight: 300; }
.hero blockquote { max-width: 630px; margin: 24px 0 0; padding-left: 22px; color: rgba(255,255,255,.76); border-left: 2px solid var(--gold); font-family: var(--serif); font-size: 1.18rem; font-style: italic; }
.hero cite { display: block; margin-top: 5px; font-family: var(--sans); font-size: .68rem; font-style: normal; letter-spacing: .15em; text-transform: uppercase; }
.hero-actions, .radio-actions { display: flex; align-items: center; flex-wrap: wrap; gap: 14px; margin-top: 30px; }
.button { display: inline-flex; align-items: center; justify-content: center; min-height: 50px; padding: 0 23px; border-radius: 999px; text-decoration: none; font-size: .84rem; font-weight: 600; transition: transform .2s ease, background .2s ease; }
.button:hover { transform: translateY(-2px); }
.button-primary { background: var(--gold); color: #182016; }
.button-primary:hover { background: #d8ad5f; }
.button-ghost { border: 1px solid rgba(255,255,255,.45); color: #fff; backdrop-filter: blur(8px); }
.reggae-line { position: absolute; inset: auto 0 0; z-index: 3; display: grid; grid-template-columns: repeat(3, 1fr); height: 5px; }
.reggae-line i:nth-child(1) { background: var(--moss); }
.reggae-line i:nth-child(2) { background: var(--gold); }
.reggae-line i:nth-child(3) { background: var(--terracotta); }

.breath, .needs, .featured, .radio, .prayer { padding: 105px 0; }
.breath { background: var(--cream); }
.breath-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(50px, 8vw, 120px); align-items: start; }
h2 { margin: 0; font-family: var(--serif); font-size: clamp(2.8rem, 5vw, 4.6rem); line-height: .98; letter-spacing: -.035em; font-weight: 600; }
.breath-copy { max-width: 590px; font-size: 1.05rem; color: var(--muted); }
.breath-copy p:first-child { margin-top: 4px; }
.text-link { display: inline-flex; gap: 8px; align-items: center; margin-top: 12px; color: #e7c479; font-size: .85rem; font-weight: 600; text-underline-offset: 5px; }
.text-link span { transition: transform .2s; }
.text-link:hover span { transform: translateX(4px); }

.needs { background: var(--paper); }
.section-heading { max-width: 760px; margin-bottom: 44px; }
.section-heading > p:last-child { max-width: 620px; color: var(--muted); }
.section-heading.horizontal { max-width: none; display: flex; justify-content: space-between; align-items: end; gap: 30px; }
.section-heading.horizontal h2 { max-width: 780px; }
.needs-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.need-card { min-height: 210px; display: flex; flex-direction: column; padding: 28px; border: 1px solid var(--line); border-radius: 18px; background: rgba(255,255,255,.025); text-decoration: none; transition: transform .25s, border .25s, background .25s; }
.need-card:hover { transform: translateY(-5px); border-color: rgba(199,150,68,.65); background: #17271d; }
.need-icon { width: 46px; height: 46px; display: grid; place-items: center; margin-bottom: 30px; border-radius: 50%; color: var(--gold); background: rgba(199,150,68,.11); font-family: var(--serif); font-size: 1.35rem; }
.need-card strong { font-family: var(--serif); font-size: 1.65rem; line-height: 1.1; }
.need-card small { margin-top: 8px; color: var(--muted); font-size: .86rem; }

.featured { background: #101b14; }
.article-grid { display: grid; grid-template-columns: 1.35fr 1fr 1fr; gap: 18px; }
.article-card { overflow: hidden; border: 1px solid var(--line); border-radius: 16px; background: #17241b; }
.article-card a { display: block; height: 100%; text-decoration: none; }
.article-card img { width: 100%; height: 290px; object-fit: cover; transition: transform .4s ease; }
.article-main img { height: 370px; }
.article-card:hover img { transform: scale(1.025); }
.article-body { padding: 24px; }
.article-body span { color: var(--terracotta); font-size: .68rem; font-weight: 600; letter-spacing: .16em; text-transform: uppercase; }
.article-body h3 { margin: 9px 0 8px; font-family: var(--serif); font-size: 1.85rem; line-height: 1.05; }
.article-main .article-body h3 { font-size: 2.45rem; }
.article-body p { margin: 0; color: var(--muted); font-size: .9rem; }

.radio { color: #fff; background: var(--forest-deep); }
.radio-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 80px; align-items: center; }
.radio-copy h2 { max-width: 720px; }
.radio-copy > p:not(.kicker) { max-width: 650px; color: rgba(255,255,255,.68); }
.button-gold { background: var(--gold); color: var(--forest-deep); }
.text-link.light { color: #fff; }
.station { display: grid; grid-template-columns: 100px 1fr 50px; gap: 20px; align-items: center; padding: 24px; border: 1px solid rgba(255,255,255,.13); border-radius: 20px; background: rgba(255,255,255,.055); box-shadow: 0 24px 70px rgba(0,0,0,.25); }
.station-disc { width: 100px; height: 100px; padding: 7px; border-radius: 50%; background: repeating-radial-gradient(circle, #222 0 2px, #151515 3px 6px); }
.station-disc img { width: 100%; height: 100%; border-radius: 50%; object-fit: cover; }
.station span, .station small { display: block; color: rgba(255,255,255,.56); font-size: .68rem; letter-spacing: .13em; }
.station strong { display: block; margin: 4px 0; font-family: var(--serif); font-size: 2rem; }
.station > a { width: 50px; height: 50px; display: grid; place-items: center; border-radius: 50%; color: var(--forest-deep); background: var(--gold); text-decoration: none; }

.prayer { text-align: center; background: var(--cream); }
.prayer-inner { max-width: 780px; }
.prayer-inner > img { width: 76px; height: 76px; margin: 0 auto 24px; border-radius: 50%; object-fit: cover; }
.prayer-text { margin: 28px auto 30px; color: #c0c7ba; font-family: var(--serif); font-size: clamp(1.5rem, 3vw, 2rem); line-height: 1.45; font-style: italic; }

.social-strip { padding: 34px 0; color: #fff; background: var(--terracotta); }
.social-strip .container { display: flex; justify-content: space-between; align-items: center; gap: 25px; }
.social-strip p { margin: 0; font-family: var(--serif); font-size: 1.55rem; }
.social-strip div div { display: flex; gap: 24px; }
.social-strip a { font-size: .82rem; font-weight: 600; text-underline-offset: 5px; }

.site-footer { padding: 70px 0 28px; color: rgba(255,255,255,.72); background: #0d1711; }
.footer-grid { display: grid; grid-template-columns: 1.8fr 1fr 1fr; gap: 60px; }
.footer-brand { color: #fff; }
.footer-grid p { max-width: 300px; }
.footer-grid > div:not(:first-child) { display: flex; flex-direction: column; gap: 9px; }
.footer-grid strong { margin-bottom: 8px; color: #fff; font-family: var(--serif); font-size: 1.3rem; }
.footer-grid a:not(.brand) { color: rgba(255,255,255,.62); text-decoration: none; font-size: .84rem; }
.footer-grid a:hover { color: #fff; }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; margin-top: 60px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,.1); font-size: .72rem; }

@media (max-width: 950px) {
  .menu-toggle { width: 48px; height: 48px; display: grid; place-content: center; gap: 5px; margin-left: auto; border: 1px solid rgba(255,255,255,.3); border-radius: 50%; cursor: pointer; }
  .menu-toggle span { width: 19px; height: 1px; display: block; background: currentColor; transition: transform .2s, opacity .2s; }
  .menu-toggle b { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); }
  body.menu-open .menu-toggle span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
  body.menu-open .menu-toggle span:nth-child(2) { opacity: 0; }
  body.menu-open .menu-toggle span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }
  nav { position: absolute; top: 74px; left: 14px; right: 14px; display: none; align-items: stretch; flex-direction: column; gap: 0; margin: 0; padding: 14px; border: 1px solid rgba(255,255,255,.14); border-radius: 18px; background: rgba(10,20,13,.97); box-shadow: 0 24px 60px rgba(0,0,0,.42); backdrop-filter: blur(18px); }
  body.menu-open #main-menu { display: flex; }
  nav a { padding: 13px 14px; border-bottom: 1px solid rgba(255,255,255,.08); font-size: .92rem; }
  nav a:last-child { border-bottom: 0; }
  .nav-cta { margin-left: 0; }
  .hero { min-height: 720px; }
  .hero-bg { object-position: 63% center; }
  .breath-grid, .radio-grid { grid-template-columns: 1fr; gap: 45px; }
  .needs-grid { grid-template-columns: repeat(2, 1fr); }
  .article-grid { grid-template-columns: 1fr 1fr; }
  .article-main { grid-column: 1 / -1; }
}

@media (max-width: 640px) {
  .container { width: min(100% - 28px, 1160px); }
  .site-header { position: absolute; }
  .nav-wrap { min-height: 72px; }
  .brand img { width: 46px; height: 46px; }
  .brand span { font-size: 1.25rem; }
  .nav-cta { display: none; }
  .hero { min-height: 780px; align-items: end; }
  .hero-bg { object-position: 68% center; }
  .hero-shade { background: linear-gradient(0deg, rgba(8,16,11,.97) 0%, rgba(8,16,11,.78) 62%, rgba(8,16,11,.28) 100%); }
  .hero-content { padding: 130px 0 72px; }
  .hero h1 { max-width: 500px; font-size: clamp(3.6rem, 20vw, 5.3rem); }
  .hero-lead { font-size: .98rem; }
  .hero blockquote { font-size: 1.04rem; }
  .hero-actions { align-items: stretch; flex-direction: column; }
  .button { width: 100%; }
  .breath, .needs, .featured, .radio, .prayer { padding: 76px 0; }
  h2 { font-size: clamp(2.5rem, 13vw, 3.4rem); }
  .section-heading.horizontal { align-items: start; flex-direction: column; }
  .needs-grid, .article-grid { grid-template-columns: 1fr; }
  .article-main { grid-column: auto; }
  .article-card img, .article-main img { height: 260px; }
  .article-main .article-body h3 { font-size: 2rem; }
  .station { grid-template-columns: 74px 1fr 44px; gap: 12px; padding: 16px; }
  .station-disc { width: 74px; height: 74px; }
  .station strong { font-size: 1.5rem; }
  .station > a { width: 44px; height: 44px; }
  .social-strip .container { align-items: start; flex-direction: column; }
  .social-strip div div { flex-wrap: wrap; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 38px 24px; }
  .footer-grid > div:first-child { grid-column: 1 / -1; }
  .footer-bottom { align-items: start; flex-direction: column; }
}

/* Capas da home: moldura paisagem uniforme e imagem integral. */
.article-card img,
.article-main img{
  width:100%;
  height:auto;
  aspect-ratio:4/3;
  object-fit:contain!important;
  object-position:center!important;
  padding:8px;
  background:linear-gradient(145deg,#24352b,#14241a);
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition: none !important; }
}

/* Sistema editorial compartilhado com o blog. */
.featured .section-heading.horizontal { margin-bottom: 28px; }
.featured .section-heading.horizontal .text-link { min-height: 48px; align-items: center; margin-top: 0; }
.article-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); align-items: stretch; }
.article-main { grid-column: auto; }
.article-card { min-width: 0; height: 100%; transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease; }
.article-card:hover { transform: translateY(-3px); border-color: rgba(199,150,68,.58); box-shadow: 0 18px 40px rgba(0,0,0,.17); }
.article-card a { display: flex; flex-direction: column; }
.article-card img,
.article-main img { width: 100%; height: auto; aspect-ratio: 4 / 3; object-fit: cover; object-position: center; background: #233329; }
.article-card img[src*="o-que-deus-faz-enquanto-voce-espera"] { object-position: 50% 50%; }
.article-card img[src*="o-lugar-do-descanso"] { object-position: 55% 50%; }
.article-card img[src*="louvor-para-ansiedade"] { object-position: 68% 50%; }
.article-body { display: flex; flex: 1; flex-direction: column; padding: 22px; }
.article-body h3,
.article-main .article-body h3 { font-size: clamp(1.72rem, 2.4vw, 2rem); }
.article-body p { display: -webkit-box; overflow: hidden; -webkit-box-orient: vertical; -webkit-line-clamp: 3; }
.article-body::after { content: "Ler reflexão  →"; display: flex; min-height: 48px; align-items: end; margin-top: auto; padding-top: 16px; color: #e7c479; font-size: .82rem; font-weight: 700; text-decoration: underline; text-underline-offset: 4px; }
.article-card a:focus-visible { outline: 3px solid var(--gold); outline-offset: 4px; }

@media (max-width: 950px) {
  .article-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .article-main { grid-column: auto; }
}

@media (max-width: 640px) {
  .featured { padding-block: 62px; }
  .featured .section-heading.horizontal { gap: 12px; margin-bottom: 22px; }
  .article-grid { grid-template-columns: 1fr; gap: 16px; }
  .article-card img,
  .article-main img { height: auto; aspect-ratio: 4 / 3; }
  .article-body { padding: 20px 22px 18px; }
  .article-body h3,
  .article-main .article-body h3 { font-size: clamp(1.8rem, 9vw, 2.1rem); }
}

/* Regra final: todas as capas da home permanecem inteiras em paisagem. */
.article-card img,
.article-main img{
  width:100%;
  height:auto;
  aspect-ratio:4/3;
  object-fit:contain!important;
  object-position:center!important;
  padding:8px;
  background:linear-gradient(145deg,#24352b,#14241a);
}
