/* ===========================
   Base
=========================== */
:root{
  --bg: #0b0b0b;
  --panel: rgba(12, 12, 12, .72);
  --text: #f5f2ea;
  --muted: rgba(245, 242, 234, .72);

  --gold: #d4af37;
  --gold-2: #f0d27b;
  --red: #8b0000;

  --border: rgba(212,175,55,.18);
  --shadow: 0 18px 50px rgba(0,0,0,.55);

  --radius: 18px;
  --radius-lg: 28px;

  --serif: "Cormorant Garamond", serif;
  --sans: "Inter", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}

*{ box-sizing: border-box; }
html,body{ height: 100%; }
body{
  margin: 0;
  background: radial-gradient(1100px 700px at 25% 20%, rgba(139,0,0,.25), transparent 60%),
              radial-gradient(900px 600px at 70% 55%, rgba(212,175,55,.14), transparent 55%),
              var(--bg);
  color: var(--text);
  font-family: var(--sans);
  line-height: 1.6;
}

img{ max-width: 100%; display: block; }
a{ color: inherit; text-decoration: none; }
.container{
  width: min(1120px, 92vw);
  margin: 0 auto;
}

/* ===========================
   Topbar
=========================== */
.topbar{
  position: sticky;
  top: 0;
  z-index: 30;
  backdrop-filter: blur(10px);
  background: rgba(10,10,10,.55);
  border-bottom: 1px solid rgba(212,175,55,.10);
}
.topbar__inner{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 12px 0;
}
.brand{
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.brand__mark{
  width: 36px; height: 36px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  color: #121212;
  font-weight: 800;
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
  box-shadow: 0 10px 25px rgba(212,175,55,.18);
}
.brand__name{
  font-family: var(--serif);
  font-size: 20px;
  letter-spacing: .3px;
  opacity: .95;
}
.nav{
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.nav a{
  font-size: 14px;
  color: var(--muted);
  padding: 8px 10px;
  border-radius: 12px;
  transition: .2s ease;
}
.nav a:hover{
  color: var(--text);
  background: rgba(255,255,255,.05);
}
.nav__cta{
  color: #141414 !important;
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
  box-shadow: 0 12px 30px rgba(212,175,55,.18);
}
.nav__cta:hover{
  transform: translateY(-1px);
}

/* ===========================
   Hero
=========================== */
.hero{
  position: relative;
  min-height: 78vh;
  display: grid;
  align-items: center;
  overflow: hidden;
  border-bottom: 1px solid rgba(212,175,55,.08);
}
.hero__bg{
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0,0,0,.82) 0%,
                          rgba(0,0,0,.70) 38%,
                          rgba(0,0,0,.25) 70%,
                          rgba(0,0,0,.10) 100%),
    /* TROQUE a URL abaixo pela sua arte do rosto do Cristo (pode usar a própria capa, recortada) */
    url("assets/hero.png") center / contain no-repeat;
  filter: contrast(1.06) saturate(.92);
  transform: scale(1.02);
}
.hero__smoke{
  position: absolute;
  inset: -40px;
  background:
    radial-gradient(900px 500px at 30% 65%, rgba(139,0,0,.55), transparent 60%),
    radial-gradient(700px 440px at 60% 40%, rgba(212,175,55,.22), transparent 55%),
    radial-gradient(500px 380px at 80% 70%, rgba(0,0,0,.35), transparent 65%);
  opacity: .75;
  mix-blend-mode: screen;
  pointer-events: none;
  animation: float 10s ease-in-out infinite alternate;
}
@keyframes float{
  from{ transform: translate3d(0,0,0); }
  to{ transform: translate3d(0,-12px,0); }
}

.hero__content{
  position: relative;
  padding: 64px 0 56px;
}
.hero__copy{
  max-width: 560px;
}
.hero__title{
  font-family: var(--serif);
  font-weight: 700;
  font-size: clamp(38px, 4.6vw, 64px);
  line-height: 1.02;
  margin: 0 0 18px;
  color: var(--gold-2);
  text-shadow: 0 18px 40px rgba(0,0,0,.55);
}
.hero__title--sub{
  display: inline-block;
  font-weight: 600;
  color: rgba(240,210,123,.92);
}
.hero__verse{
  margin: 0 0 22px;
  max-width: 52ch;
  color: rgba(245,242,234,.88);
  font-size: 16px;
}
.hero__ref{
  color: rgba(212,175,55,.95);
  font-weight: 600;
}
.hero__actions{
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin: 18px 0 18px;
}
.hero__meta{
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 10px;
}
.pill{
  font-size: 12px;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(212,175,55,.25);
  background: rgba(0,0,0,.30);
  color: rgba(245,242,234,.82);
}
.pill--dark{
  border-color: rgba(255,255,255,.10);
}

/* ===========================
   Sections
=========================== */
.section{
  padding: 70px 0;
}
.section__head{
  margin-bottom: 26px;
}
.section__title{
  font-family: var(--serif);
  font-size: clamp(28px, 3.1vw, 40px);
  margin: 0 0 10px;
  color: rgba(240,210,123,.92);
}
.section__subtitle{
  margin: 0;
  color: var(--muted);
  max-width: 72ch;
}

.section--about{
  background: radial-gradient(900px 600px at 30% 30%, rgba(139,0,0,.16), transparent 55%),
              radial-gradient(700px 500px at 70% 60%, rgba(212,175,55,.10), transparent 55%);
  border-top: 1px solid rgba(212,175,55,.06);
  border-bottom: 1px solid rgba(212,175,55,.06);
}

.about{
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 34px;
  align-items: center;
}
.book{
  border-radius: 22px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(212,175,55,.18);
}
.about__text .lead{
  font-family: var(--serif);
  font-size: 24px;
  margin: 0 0 6px;
  color: rgba(245,242,234,.92);
}
.about__text p{
  margin: 0 0 14px;
  color: rgba(245,242,234,.80);
  max-width: 72ch;
}
.bullets{
  margin: 0 0 18px;
  padding-left: 18px;
  color: rgba(245,242,234,.78);
}
.bullets li{
  margin: 6px 0;
}

/* ===========================
   Grid Cards
=========================== */
.grid{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.card{
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(212,175,55,.12);
  box-shadow: 0 14px 38px rgba(0,0,0,.45);
  transition: transform .18s ease, border-color .18s ease, background .18s ease;
}
.card:hover{
  transform: translateY(-4px);
  border-color: rgba(212,175,55,.22);
  background: rgba(255,255,255,.04);
}
.card__img{
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  border-bottom: 1px solid rgba(212,175,55,.10);
}
.card__body{
  padding: 14px 14px 16px;
}
.card__title{
  font-family: var(--serif);
  margin: 0 0 6px;
  font-size: 20px;
  color: rgba(245,242,234,.95);
}
.card__desc{
  margin: 0 0 12px;
  color: rgba(245,242,234,.70);
  font-size: 13px;
}

/* ===========================
   Buttons
=========================== */
.btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: 14px;
  font-weight: 600;
  letter-spacing: .2px;
  border: 1px solid transparent;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease, border-color .15s ease;
  user-select: none;
  cursor: pointer;
}
.btn:active{ transform: translateY(1px); }

.btn--gold{
  color: #141414;
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
  box-shadow: 0 14px 34px rgba(212,175,55,.18);
  border-color: rgba(212,175,55,.30);
}
.btn--gold:hover{
  transform: translateY(-1px);
  box-shadow: 0 18px 44px rgba(212,175,55,.22);
}

.btn--ghost{
  color: rgba(245,242,234,.92);
  background: rgba(0,0,0,.35);
  border-color: rgba(245,242,234,.14);
}
.btn--ghost:hover{
  background: rgba(255,255,255,.05);
  border-color: rgba(212,175,55,.18);
  transform: translateY(-1px);
}

.btn--small{
  padding: 10px 12px;
  border-radius: 12px;
  font-size: 13px;
}

/* ===========================
   CTA Section
=========================== */
.section--cta{
  padding: 78px 0;
  background:
    radial-gradient(900px 520px at 50% 10%, rgba(139,0,0,.24), transparent 60%),
    radial-gradient(720px 500px at 80% 70%, rgba(212,175,55,.12), transparent 60%),
    rgba(0,0,0,.35);
  border-top: 1px solid rgba(212,175,55,.08);
}
.cta{
  text-align: center;
  max-width: 920px;
}
.cta__title{
  font-family: var(--serif);
  font-size: clamp(28px, 3.4vw, 44px);
  margin: 0 0 10px;
  color: rgba(240,210,123,.92);
}
.cta__text{
  margin: 0 auto 22px;
  max-width: 74ch;
  color: rgba(245,242,234,.78);
}
.cta__actions{
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 22px;
}
.cta__fineprint{
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
  color: rgba(245,242,234,.55);
  font-size: 12px;
}
.dot{ opacity: .45; }

/* ===========================
   Responsive
=========================== */
@media (max-width: 980px){
  .grid{ grid-template-columns: repeat(2, 1fr); }
  .about{ grid-template-columns: 300px 1fr; }
}
@media (max-width: 680px){
  .nav{ display: none; } /* simples; depois podemos fazer menu mobile */
  .hero__content{ padding: 52px 0 44px; }
  .about{ grid-template-columns: 1fr; }
  .about__book{ max-width: 320px; margin: 0 auto; }
  .grid{ grid-template-columns: 1fr; }
}
/* ===========================
   NUVENS ANIMADAS (GARANTIDO)
=========================== */

.cloud-layer{
  position: fixed;
  inset: 0;
  z-index: 999;           /* garante ficar por cima de tudo */
  pointer-events: none;
  overflow: hidden;
}

/* Cada nuvem é um “tapete” com várias manchas */
.cloud{
  position: absolute;
  left: -35%;
  width: 170%;
  height: 55%;
  opacity: .55;           /* mais forte */
  filter: blur(24px);
  mix-blend-mode: screen; /* fica bonito no fundo escuro */
  background:
    radial-gradient(closest-side at 10% 60%, rgba(255,255,255,.20), transparent 70%),
    radial-gradient(closest-side at 25% 40%, rgba(255,255,255,.18), transparent 72%),
    radial-gradient(closest-side at 45% 65%, rgba(255,255,255,.16), transparent 70%),
    radial-gradient(closest-side at 65% 35%, rgba(255,255,255,.14), transparent 72%),
    radial-gradient(closest-side at 85% 55%, rgba(255,255,255,.12), transparent 70%);
}

/* Camadas com alturas e velocidades diferentes */
.cloud-a{
  top: -10%;
  height: 55%;
  animation: drift 90s linear infinite;
}

.cloud-b{
  top: 20%;
  height: 60%;
  opacity: .35;
  filter: blur(34px);
  animation: drift 140s linear infinite reverse;
}

.cloud-c{
  top: 50%;
  height: 70%;
  opacity: .28;
  filter: blur(44px);
  animation: drift 190s linear infinite;
}

@keyframes drift{
  from { transform: translateX(-8%); }
  to   { transform: translateX(8%); }
}


