/* ============================================================
   Nova Criatura — Novo layout (100% HTML/CSS/JS, sem PHP)
   Tema escuro elegante com acentos da chama da logo (laranja/dourado)
   ============================================================ */

:root {
  --bg:          #0d0f14;
  --bg-2:        #12151c;
  --bg-3:        #171b24;
  --surface:     #1b202b;
  --line:        rgba(255,255,255,.08);
  --line-strong: rgba(255,255,255,.16);
  --text:        #eef1f6;
  --text-soft:   #b8c0cf;
  --text-mute:   #7d8698;
  --flame-1:     #ffcf33;  /* amarelo */
  --flame-2:     #ff8a1e;  /* laranja */
  --flame-3:     #e0491f;  /* vermelho terra */
  --grad-flame:  linear-gradient(135deg, var(--flame-1) 0%, var(--flame-2) 48%, var(--flame-3) 100%);
  --radius:      18px;
  --radius-sm:   12px;
  --shadow:      0 18px 50px -18px rgba(0,0,0,.7);
  --maxw:        1160px;
  --ff-head:     "Sora", system-ui, sans-serif;
  --ff-body:     "Inter", system-ui, sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--ff-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px;
}

.flame-text {
  background: var(--grad-flame);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ---------- Header ---------- */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  transition: background .35s ease, box-shadow .35s ease, padding .35s ease, border-color .35s;
  padding: 20px 0;
  border-bottom: 1px solid transparent;
}
.site-header.scrolled {
  background: rgba(13,15,20,.82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom-color: var(--line);
  padding: 12px 0;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.brand img { height: 54px; width: auto; transition: height .35s ease; }
.site-header.scrolled .brand img { height: 44px; }

.nav {
  display: flex;
  align-items: center;
  gap: 6px;
}
.nav a {
  position: relative;
  padding: 9px 16px;
  font-size: .92rem;
  font-weight: 500;
  color: var(--text-soft);
  border-radius: 999px;
  transition: color .2s, background .2s;
}
.nav a:hover { color: #fff; }
.nav a.active { color: #fff; }
.nav a.active::after {
  content: "";
  position: absolute;
  left: 16px; right: 16px; bottom: 2px;
  height: 2px;
  border-radius: 2px;
  background: var(--grad-flame);
}
.nav .btn-nav {
  margin-left: 8px;
  background: var(--grad-flame);
  color: #1a1205;
  font-weight: 700;
}
.nav .btn-nav:hover { color: #1a1205; filter: brightness(1.06); }

.nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--line-strong);
  border-radius: 10px;
  width: 44px; height: 44px;
  color: var(--text);
  font-size: 1.3rem;
  cursor: pointer;
  align-items: center;
  justify-content: center;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 26px;
  border-radius: 999px;
  font-weight: 600;
  font-size: .95rem;
  cursor: pointer;
  border: 1px solid transparent;
  transition: transform .2s, filter .2s, background .2s, color .2s, border-color .2s;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn-flame { background: var(--grad-flame); color: #1a1205; }
.btn-flame:hover { filter: brightness(1.08); }
.btn-ghost { border-color: var(--line-strong); color: var(--text); }
.btn-ghost:hover { border-color: var(--flame-2); color: #fff; }
.btn-wa { background: #25D366; color: #06331b; }
.btn-wa:hover { filter: brightness(1.05); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background: url("../img/fundo-header.png") center/cover no-repeat;
  transform: scale(1.05);
  filter: saturate(1.05);
}
.hero::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(60% 60% at 50% 40%, rgba(224,73,31,.18), transparent 70%),
    linear-gradient(180deg, rgba(13,15,20,.62) 0%, rgba(13,15,20,.78) 55%, var(--bg) 100%);
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 860px;
  padding: 120px 24px 60px;
}
.hero-eyebrow {
  display: inline-block;
  font-size: .8rem;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--flame-1);
  margin-bottom: 26px;
  font-weight: 600;
}
.hero blockquote {
  font-family: var(--ff-head);
  font-weight: 300;
  font-size: clamp(1.6rem, 4.2vw, 3rem);
  line-height: 1.3;
  color: #fff;
  font-style: italic;
}
.hero blockquote strong {
  display: block;
  margin-top: 26px;
  font-style: normal;
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: .02em;
}
.hero-cta {
  margin-top: 44px;
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}
.scroll-cue {
  position: absolute;
  bottom: 28px; left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  color: var(--text-mute);
  font-size: 1.4rem;
  animation: bob 2s ease-in-out infinite;
}
@keyframes bob { 0%,100%{transform:translate(-50%,0)} 50%{transform:translate(-50%,8px)} }

/* ---------- Sections ---------- */
.section { padding: 96px 0; position: relative; }
.section-alt { background: var(--bg-2); }
.section-head {
  max-width: 640px;
  margin: 0 auto 56px;
  text-align: center;
}
.section-head .kicker {
  display: inline-block;
  font-size: .78rem;
  letter-spacing: .26em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--flame-2);
  margin-bottom: 14px;
}
.section-head h2 {
  font-family: var(--ff-head);
  font-weight: 700;
  font-size: clamp(1.9rem, 4vw, 2.8rem);
  line-height: 1.15;
  letter-spacing: -.02em;
}
.section-head p { color: var(--text-soft); margin-top: 16px; font-size: 1.05rem; }

/* ---------- Videos ---------- */
.video-lead {
  display: flex;
  align-items: center;
  gap: 12px;
  justify-content: center;
  margin-bottom: 34px;
  flex-wrap: wrap;
}
.video-lead .handle {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--flame-1); font-weight: 600;
}
.video-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.video-frame {
  position: relative;
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  background: #000;
  aspect-ratio: 16 / 9;
}
.video-frame iframe {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  border: 0;
}
.video-actions { text-align: center; margin-top: 40px; }

/* ---------- Social ---------- */
.social {
  background:
    linear-gradient(rgba(13,15,20,.86), rgba(13,15,20,.94)),
    url("../img/back.png") center/cover fixed no-repeat;
}
.social .logo-mark { max-width: 260px; margin: 0 auto 46px; }
.social-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 820px;
  margin: 0 auto;
}
.social-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 22px 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: rgba(27,32,43,.55);
  transition: transform .25s, border-color .25s, background .25s;
}
.social-card:hover { transform: translateY(-4px); border-color: var(--flame-2); background: rgba(27,32,43,.85); }
.social-card .ic {
  flex: 0 0 auto;
  width: 48px; height: 48px;
  display: grid; place-items: center;
  border-radius: 12px;
  background: var(--grad-flame);
  color: #1a1205;
  font-size: 1.25rem;
}
.social-card .label { font-size: .74rem; letter-spacing: .18em; text-transform: uppercase; color: var(--text-mute); }
.social-card .value { font-weight: 600; color: #fff; }

/* ---------- Page hero (internal pages) ---------- */
.page-hero {
  padding: 160px 0 60px;
  background: var(--bg-2);
  border-bottom: 1px solid var(--line);
  text-align: center;
}
.page-hero h1 {
  font-family: var(--ff-head);
  font-weight: 700;
  font-size: clamp(2rem, 5vw, 3.2rem);
  letter-spacing: -.02em;
}
.breadcrumb {
  margin-top: 14px;
  font-size: .9rem;
  color: var(--text-mute);
}
.breadcrumb a:hover { color: var(--flame-2); }
.breadcrumb span { color: var(--flame-2); }

/* ---------- Content / prose ---------- */
.prose { max-width: 780px; margin: 0 auto; }
.prose p { color: var(--text-soft); margin-bottom: 1.3em; font-size: 1.06rem; }
.prose .signature {
  color: #fff; font-weight: 700; font-family: var(--ff-head);
  font-size: 1.15rem; margin-top: 8px;
}
.pull {
  border-left: 3px solid var(--flame-2);
  padding: 8px 0 8px 24px;
  margin: 34px 0;
  font-family: var(--ff-head);
  font-style: italic;
  font-size: 1.3rem;
  line-height: 1.4;
  color: #fff;
}

/* ---------- Donation ---------- */
.donate-card {
  max-width: 560px;
  margin: 0 auto;
  text-align: center;
  padding: 50px 40px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, var(--surface), var(--bg-3));
  box-shadow: var(--shadow);
}
.donate-card .ic-big {
  width: 76px; height: 76px; margin: 0 auto 24px;
  display: grid; place-items: center;
  border-radius: 20px;
  background: var(--grad-flame);
  color: #1a1205; font-size: 2rem;
}
.donate-card p { color: var(--text-soft); }
.pix-box {
  margin: 28px 0 8px;
  display: flex; align-items: center; justify-content: space-between; gap: 14px;
  padding: 16px 20px;
  border: 1px dashed var(--line-strong);
  border-radius: var(--radius-sm);
  background: rgba(0,0,0,.25);
}
.pix-box .pix-label { font-size: .72rem; letter-spacing: .18em; text-transform: uppercase; color: var(--text-mute); }
.pix-box .pix-key { font-family: var(--ff-head); font-weight: 600; font-size: 1.15rem; color: #fff; word-break: break-all; }
.copy-btn {
  flex: 0 0 auto;
  background: var(--grad-flame); color:#1a1205;
  border: 0; border-radius: 10px;
  padding: 10px 14px; font-weight: 700; cursor: pointer;
  transition: filter .2s;
}
.copy-btn:hover { filter: brightness(1.08); }
.copy-note { font-size: .85rem; color: var(--flame-1); min-height: 20px; margin-top: 6px; }

/* ---------- Contact ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 44px;
  align-items: start;
}
.contact-aside h3 { font-family: var(--ff-head); font-size: 1.5rem; margin-bottom: 14px; }
.contact-aside p { color: var(--text-soft); margin-bottom: 26px; }
.contact-methods { display: flex; flex-direction: column; gap: 14px; }
.contact-method {
  display: flex; align-items: center; gap: 14px;
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--surface);
  transition: border-color .25s, transform .25s;
}
.contact-method:hover { border-color: var(--flame-2); transform: translateX(4px); }
.contact-method .ic { width: 42px; height: 42px; display: grid; place-items: center; border-radius: 10px; background: rgba(255,138,30,.14); color: var(--flame-2); font-size: 1.15rem; }
.contact-method .label { font-size: .74rem; letter-spacing: .16em; text-transform: uppercase; color: var(--text-mute); }
.contact-method .value { font-weight: 600; color: #fff; }

.form-field { margin-bottom: 18px; }
.form-field label { display: block; font-size: .82rem; margin-bottom: 7px; color: var(--text-soft); font-weight: 500; }
.form-field label .req { color: var(--flame-2); }
.form-control {
  width: 100%;
  padding: 13px 16px;
  background: var(--bg-3);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-sm);
  color: var(--text);
  font-family: inherit;
  font-size: .96rem;
  transition: border-color .2s, background .2s;
}
.form-control:focus { outline: none; border-color: var(--flame-2); background: #1d222d; }
textarea.form-control { resize: vertical; min-height: 130px; }
.hp-field { position: absolute; left: -9999px; opacity: 0; height: 0; overflow: hidden; }
.form-msg { margin-top: 14px; font-size: .95rem; min-height: 22px; }
.form-msg.ok { color: #38d47a; }
.form-msg.err { color: #ff6b6b; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--bg);
  border-top: 1px solid var(--line);
  padding: 46px 0 34px;
  text-align: center;
}
.site-footer .foot-logo { max-width: 170px; margin: 0 auto 22px; opacity: .95; }
.site-footer .foot-social { display: flex; gap: 12px; justify-content: center; margin-bottom: 24px; }
.site-footer .foot-social a {
  width: 42px; height: 42px; display: grid; place-items: center;
  border-radius: 50%; border: 1px solid var(--line-strong);
  color: var(--text-soft); font-size: 1.05rem;
  transition: all .25s;
}
.site-footer .foot-social a:hover { border-color: var(--flame-2); color: var(--flame-1); transform: translateY(-3px); }
.site-footer .copy { color: var(--text-mute); font-size: .88rem; }
.site-footer .copy strong { color: var(--text-soft); }

/* ---------- Scroll reveal ---------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in { opacity: 1; transform: none; }

/* ---------- Responsive ---------- */
@media (max-width: 860px) {
  .nav-toggle { display: inline-flex; }
  .nav {
    position: fixed;
    inset: 0 0 0 auto;
    width: min(80vw, 320px);
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 6px;
    padding: 100px 22px 40px;
    background: var(--bg-2);
    border-left: 1px solid var(--line);
    transform: translateX(100%);
    transition: transform .35s ease;
  }
  .nav.open { transform: none; }
  .nav a { padding: 14px 16px; font-size: 1rem; border-radius: var(--radius-sm); }
  .nav a.active::after { display: none; }
  .nav a.active { background: rgba(255,138,30,.12); }
  .nav .btn-nav { margin: 10px 0 0; justify-content: center; }
  body.nav-open { overflow: hidden; }
  .nav-backdrop {
    position: fixed; inset: 0; z-index: 90;
    background: rgba(0,0,0,.5); opacity: 0; visibility: hidden;
    transition: opacity .3s;
  }
  .nav-backdrop.show { opacity: 1; visibility: visible; }

  .contact-grid { grid-template-columns: 1fr; gap: 34px; }
  .social-grid { grid-template-columns: 1fr; max-width: 440px; }
  .video-grid { grid-template-columns: 1fr; max-width: 560px; margin: 0 auto; }
  .section { padding: 72px 0; }
}

@media (min-width: 861px) and (max-width: 1080px) {
  .video-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
  .container { padding: 0 18px; }
  .pix-box { flex-direction: column; align-items: stretch; text-align: center; }
  .hero-cta .btn { width: 100%; justify-content: center; }
}
