:root {
  --orange: #f0491f;
  --orange-dark: #c92f12;
  --ink: #151515;
  --muted: #62646b;
  --line: #e5e7eb;
  --surface: #ffffff;
  --soft: #f5f6f8;
  --header: #2f2130;
  --shadow: 0 18px 50px rgba(17, 24, 39, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--surface);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 76px;
  padding: 14px clamp(18px, 5vw, 86px);
  background: var(--header);
  color: #fff;
}

.brand img {
  width: 168px;
  height: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(14px, 3vw, 34px);
  font-size: 0.9rem;
  font-weight: 800;
}

.site-nav a {
  padding: 10px 0;
  text-decoration: none;
  border-bottom: 3px solid transparent;
}

.site-nav a:hover,
.site-nav a.active {
  color: #ff8b50;
  border-bottom-color: var(--orange);
}

.site-nav .nav-muted {
  opacity: 0.78;
  font-size: 0.78rem;
}

.home-page {
  background: #fff;
  font-style: italic;
}

.home-header {
  min-height: 82px;
  padding: 13px clamp(22px, 13vw, 188px);
  background: #332234;
}

.home-header .brand img {
  width: 118px;
}

.home-header .site-nav {
  gap: clamp(22px, 4vw, 44px);
  font-size: 0.82rem;
}

.home-header .site-nav a.active {
  color: #ff4b20;
}

.pdf-hero {
  min-height: 364px;
  display: grid;
  grid-template-columns: 1fr;
  background: #ff4b14;
}

.pdf-hero__photo {
  min-height: 364px;
  display: flex;
  align-items: center;
  padding: 0 clamp(28px, 13vw, 184px);
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.02) 0 46%, rgba(255, 255, 255, 0.1) 56%, rgba(255, 86, 28, 0.22) 100%),
    url("../assets/pdf-home-001.png") center / cover no-repeat;
}

.pdf-hero__photo h1 {
  max-width: 610px;
  margin: 70px 0 0;
  color: #fff;
  font-size: clamp(2.45rem, 4.2vw, 4.2rem);
  line-height: 0.98;
  font-weight: 900;
  text-align: center;
  text-shadow: 0 5px 0 rgba(0, 0, 0, 0.55), 0 0 18px rgba(0, 0, 0, 0.35);
}

.pdf-hero__brand {
  display: none;
}

.pdf-home-content {
  width: min(880px, calc(100% - 36px));
  margin: 0 auto;
  padding: 34px 0 76px;
}

.pdf-heading {
  margin-bottom: 20px;
  text-align: center;
}

.pdf-heading h2 {
  margin: 0;
  color: #070707;
  font-size: clamp(2.25rem, 5vw, 4rem);
  line-height: 1.04;
  font-weight: 900;
  text-transform: none;
}

.pdf-video {
  position: relative;
  width: min(480px, 100%);
  aspect-ratio: 1.62;
  margin: 26px auto 98px;
  background: #222;
}

.pdf-video iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

.pdf-play {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 76px;
  height: 76px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
}

.pdf-play::after {
  content: "";
  position: absolute;
  left: 31px;
  top: 22px;
  border-top: 16px solid transparent;
  border-bottom: 16px solid transparent;
  border-left: 24px solid #fff;
}

.pdf-controls {
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: -28px;
  display: grid;
  grid-template-columns: 14px 14px 14px 1fr 16px;
  align-items: center;
  gap: 14px;
}

.pdf-controls span {
  width: 0;
  height: 0;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  border-left: 12px solid #111;
}

.pdf-controls i {
  height: 4px;
  border-radius: 99px;
  background: linear-gradient(90deg, #111 0 65%, #ef3d24 65% 68%, #9a9a9a 68%);
}

.pdf-controls b {
  width: 16px;
  height: 16px;
  border-radius: 3px;
  background: #111;
}

.pdf-steps {
  display: grid;
  gap: 86px;
}

.pdf-step {
  position: relative;
  text-align: center;
}

.pdf-step:not(:last-child)::after,
.pdf-video::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -73px;
  width: 52px;
  height: 78px;
  transform: translateX(-50%);
  background:
    linear-gradient(45deg, transparent 48%, var(--orange) 49% 52%, transparent 53%) 100% 100% / 20px 20px no-repeat,
    repeating-linear-gradient(62deg, var(--orange) 0 6px, transparent 6px 15px);
  clip-path: polygon(42% 0, 58% 0, 58% 73%, 100% 73%, 50% 100%, 0 73%, 42% 73%);
  opacity: 0.85;
}

.pdf-video::after {
  bottom: -88px;
}

.pdf-step__title {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
}

.pdf-step__title strong {
  color: #020202;
  font-size: clamp(4.8rem, 11vw, 8.2rem);
  line-height: 0.82;
  font-weight: 900;
}

.pdf-step__title h3 {
  min-width: min(470px, calc(100vw - 140px));
  margin: 0;
  padding: 13px 38px 17px;
  border: 3px solid var(--orange);
  border-radius: 999px;
  color: #050505;
  font-size: clamp(2rem, 4.4vw, 3.3rem);
  line-height: 0.96;
  font-weight: 900;
  text-align: center;
}

.pdf-step p {
  width: min(720px, 100%);
  margin: 0 auto 12px;
  color: #4d4d4d;
  font-size: clamp(1rem, 2.2vw, 1.34rem);
  line-height: 1.12;
}

.church-select {
  width: min(760px, 100%);
  min-height: 58px;
  margin: 22px auto 30px;
  padding: 0 22px;
  border: 0;
  border-radius: 8px;
  background: #dcdfe4;
  color: #51545a;
  font-size: 1.18rem;
  font-style: italic;
  font-weight: 600;
}

.pdf-church-card {
  width: min(760px, 100%);
  margin: 0 auto;
  color: #4a4a4a;
  text-align: left;
}

.pdf-church-card h4 {
  margin: 0 0 16px;
  color: #070707;
  font-size: clamp(1.4rem, 3vw, 2rem);
  line-height: 1.05;
  font-weight: 900;
}

.pdf-church-card h4::before {
  content: "⛪ ";
  font-style: normal;
}

.pdf-church-card h5 {
  margin: 12px 0 6px;
  color: #070707;
  font-size: clamp(1.3rem, 2.8vw, 1.8rem);
  line-height: 1;
  font-weight: 900;
}

.pdf-church-card p {
  margin: 0 0 6px;
  font-size: clamp(1rem, 2vw, 1.3rem);
}

.pdf-church-card p:nth-of-type(1)::before {
  content: "📍 ";
  font-style: normal;
}

.church-social {
  text-decoration: underline;
}

.church-social::before {
  content: "📷 ";
  font-style: normal;
}

.pdf-church-card p:nth-of-type(3)::before {
  content: "🟢 ";
  font-style: normal;
}

.pdf-church-card ul {
  display: grid;
  gap: 8px;
  margin: 8px 0 0;
  padding: 0 0 0 25px;
  list-style: none;
}

.pdf-church-card li {
  font-size: clamp(1rem, 2vw, 1.25rem);
  line-height: 1.2;
}

.pdf-church-card li::before {
  content: "◷";
  margin-right: 10px;
  color: var(--orange);
  font-style: normal;
}

/* ── CEP Search ── */

.cep-search {
  width: min(760px, 100%);
  margin: 22px auto 20px;
}

.cep-search__row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
}

.cep-input {
  min-height: 58px;
  padding: 0 22px;
  border: 2px solid #dcdfe4;
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
  font-size: 1.18rem;
  font-style: italic;
  font-weight: 600;
  transition: border-color 200ms ease, box-shadow 200ms ease;
}

.cep-input:focus {
  outline: none;
  border-color: var(--orange);
  box-shadow: 0 0 0 4px rgba(240, 73, 31, 0.12);
}

.cep-input::placeholder {
  color: #9a9da4;
  font-weight: 500;
}

.cep-button {
  min-height: 58px;
  min-width: 130px;
  padding: 0 28px;
  border: 0;
  border-radius: 8px;
  background: var(--orange);
  color: #fff;
  font: inherit;
  font-size: 1.12rem;
  font-weight: 900;
  cursor: pointer;
  transition: background 160ms ease, transform 160ms ease;
}

.cep-button:hover {
  background: var(--orange-dark);
  transform: translateY(-1px);
}

.cep-button:disabled {
  opacity: 0.7;
  cursor: wait;
  transform: none;
}

.cep-status {
  margin-top: 12px;
  padding: 0;
  border-radius: 8px;
  font-size: 1rem;
  font-style: italic;
  font-weight: 600;
  line-height: 1.4;
  transition: all 200ms ease;
}

.cep-status:empty {
  display: none;
}

.cep-status--loading {
  padding: 14px 18px;
  background: #eef0f3;
  color: var(--muted);
  animation: cepPulse 1200ms ease-in-out infinite;
}

.cep-status--error {
  padding: 14px 18px;
  background: #fee2e2;
  color: #991b1b;
}

.cep-status--success {
  padding: 14px 18px;
  background: #dcfce7;
  color: #166534;
}

.cep-status--fallback {
  padding: 14px 18px;
  background: #fff7ed;
  color: #9a3412;
}

@keyframes cepPulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.6; }
}

/* ── Church Result Cards ── */

.church-results {
  width: min(760px, 100%);
  margin: 0 auto;
  display: grid;
  gap: 18px;
}

.church-result-card {
  padding: 24px 28px;
  border: 1px solid var(--line);
  border-left: 5px solid var(--orange);
  border-radius: 8px;
  background: #fafbfc;
  text-align: left;
  animation: cardSlideIn 320ms ease-out;
}

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

.church-result-card h4 {
  margin: 0 0 12px;
  color: #070707;
  font-size: clamp(1.3rem, 2.8vw, 1.8rem);
  line-height: 1.1;
  font-weight: 900;
  font-style: normal;
}

.church-result-card .church-address {
  margin: 0 0 6px;
  color: #4a4a4a;
  font-size: clamp(1rem, 2vw, 1.2rem);
  font-style: normal;
}

.church-result-card .church-social {
  margin: 0 0 6px;
  color: #4a4a4a;
  font-size: clamp(1rem, 2vw, 1.2rem);
  font-style: normal;
}

.church-result-card .church-social a {
  color: var(--orange-dark);
  text-decoration: underline;
}

.whatsapp-button,
.step-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  margin-top: 14px;
  padding: 0 22px;
  border: 0;
  border-radius: 8px;
  background: #1f9d55;
  color: #fff;
  font: inherit;
  font-size: 1rem;
  font-style: normal;
  font-weight: 900;
  text-decoration: none;
  cursor: pointer;
  transition: transform 160ms ease, filter 160ms ease;
}

.step-button {
  background: var(--orange);
}

.whatsapp-button:hover,
.step-button:hover {
  transform: translateY(-1px);
  filter: brightness(0.94);
}

.church-result-card h5 {
  margin: 16px 0 8px;
  color: #070707;
  font-size: clamp(1.15rem, 2.4vw, 1.5rem);
  line-height: 1;
  font-weight: 900;
  font-style: normal;
}

.church-result-card ul {
  display: grid;
  gap: 6px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.church-result-card li {
  color: #4a4a4a;
  font-size: clamp(1rem, 2vw, 1.15rem);
  font-style: normal;
  line-height: 1.3;
}

.church-empty {
  padding: 22px;
  color: var(--muted);
  text-align: center;
  font-weight: 700;
}

.pdf-form-section {
  width: min(760px, 100%);
  margin: 78px auto 0;
  text-align: center;
}

.pdf-form-section h2 {
  margin-bottom: 24px;
  color: #111;
  font-size: clamp(1.35rem, 2.7vw, 1.85rem);
  line-height: 1.1;
}

.pdf-form {
  gap: 4px;
  text-align: left;
}

.pdf-form .field {
  gap: 4px;
}

.pdf-form label {
  color: #4f4f4f;
  font-size: 1.1rem;
  font-style: italic;
  font-weight: 600;
}

.pdf-form input,
.pdf-form select,
.pdf-form textarea {
  min-height: 58px;
  border: 0;
  border-radius: 8px;
  background: #dcdfe4;
  font-style: italic;
}

.pdf-form textarea {
  min-height: 112px;
  padding: 14px;
  resize: vertical;
}

.pdf-form .field-error {
  min-height: 18px;
}

.pdf-submit {
  justify-self: start;
  min-width: 174px;
  min-height: 58px;
  margin-top: 10px;
  border-radius: 8px;
  background: #d85131;
  font-size: 1.35rem;
}

.pdf-submit::after {
  content: "▷";
  margin-left: 9px;
  font-size: 1.1rem;
}

.journey-hero {
  min-height: 440px;
  display: grid;
  align-items: center;
  padding: clamp(48px, 8vw, 100px) clamp(20px, 7vw, 110px);
  color: #fff;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.78), rgba(240, 73, 31, 0.9)),
    url("../assets/home-family.png") center / cover;
}

.journey-hero__content {
  max-width: 720px;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--orange);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.journey-hero .eyebrow,
.offer-hero .eyebrow {
  color: #ffb38f;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 18px;
  max-width: 780px;
  font-size: clamp(2.2rem, 6vw, 5.2rem);
  line-height: 0.98;
  font-weight: 900;
  font-style: italic;
}

h2 {
  margin-bottom: 14px;
  font-size: clamp(2rem, 4vw, 3.3rem);
  line-height: 1.02;
  font-weight: 900;
  font-style: italic;
}

h3 {
  margin-bottom: 10px;
  font-size: clamp(1.45rem, 3vw, 2.35rem);
  line-height: 1.04;
  font-weight: 900;
  font-style: italic;
}

.journey-hero p,
.offer-hero p {
  max-width: 620px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.08rem;
}

.primary-link,
.submit-button,
.copy-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 22px;
  border: 0;
  border-radius: 8px;
  background: var(--orange);
  color: #fff;
  font: inherit;
  font-weight: 900;
  text-decoration: none;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 160ms ease, background 160ms ease;
}

.primary-link:hover,
.submit-button:hover,
.copy-button:hover {
  background: var(--orange-dark);
  transform: translateY(-1px);
}

.steps-section,
.offer-section,
.payment-section,
.visitor-section {
  padding: clamp(54px, 8vw, 96px) clamp(20px, 5vw, 80px);
}

.section-heading {
  max-width: 860px;
  margin: 0 auto 34px;
  text-align: center;
}

.video-placeholder {
  width: min(520px, 100%);
  aspect-ratio: 16 / 9;
  margin: 0 auto clamp(54px, 8vw, 82px);
  display: grid;
  place-items: center;
  background: #1f1f1f;
  box-shadow: var(--shadow);
}

.play-mark {
  width: 76px;
  height: 76px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  position: relative;
}

.play-mark::after {
  content: "";
  position: absolute;
  left: 31px;
  top: 22px;
  width: 0;
  height: 0;
  border-top: 16px solid transparent;
  border-bottom: 16px solid transparent;
  border-left: 24px solid #fff;
}

.timeline {
  width: min(900px, 100%);
  margin: 0 auto;
  display: grid;
  gap: 46px;
}

.timeline-item {
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: clamp(18px, 4vw, 34px);
  align-items: start;
}

.step-number {
  font-size: clamp(3.8rem, 10vw, 6.5rem);
  line-height: 0.9;
  font-weight: 900;
  font-style: italic;
}

.timeline-item h3 {
  display: inline-block;
  padding: 14px 28px;
  border: 3px solid var(--orange);
  border-radius: 999px;
}

.timeline-item p {
  max-width: 680px;
  color: #41434a;
  font-size: 1.04rem;
}

.church-card {
  margin-top: 18px;
  padding: 18px 20px;
  border: 1px solid var(--line);
  border-left: 5px solid var(--orange);
  border-radius: 8px;
  background: var(--soft);
}

.church-card p {
  margin-bottom: 6px;
}

.church-card__title {
  color: var(--ink);
  font-weight: 900;
  text-transform: uppercase;
}

.visitor-section {
  background: linear-gradient(180deg, #fff 0%, #fff7f3 100%);
}

.visitor-card {
  width: min(760px, 100%);
  margin: 0 auto;
  padding: clamp(24px, 5vw, 42px);
  border: 1px solid #f2c8b8;
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
}

.visitor-card__intro {
  margin-bottom: 24px;
  text-align: center;
}

form {
  display: grid;
  gap: 18px;
}

.field {
  display: grid;
  gap: 7px;
}

label,
legend {
  color: #2b2d33;
  font-weight: 800;
}

input,
select {
  width: 100%;
  min-height: 48px;
  padding: 0 14px;
  border: 1px solid #d1d5db;
  border-radius: 8px;
  background: #eef0f3;
  color: var(--ink);
  font: inherit;
}

input:focus,
select:focus {
  outline: 3px solid rgba(240, 73, 31, 0.22);
  border-color: var(--orange);
  background: #fff;
}

.support-options {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin: 0;
  padding: 18px;
  border: 1px solid #f2c8b8;
  border-radius: 8px;
}

.support-options legend {
  padding: 0 8px;
  color: var(--orange-dark);
}

.support-options label {
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 48px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  cursor: pointer;
}

.support-options input {
  width: 18px;
  min-height: 18px;
  accent-color: var(--orange);
}

.field-error {
  min-height: 18px;
  color: #b42318;
  font-weight: 700;
}

.feedback-message {
  display: none;
  padding: 13px 14px;
  border-radius: 8px;
  font-weight: 800;
  text-align: center;
}

.feedback-success {
  display: block;
  background: #dcfce7;
  color: #166534;
}

.feedback-error {
  display: block;
  background: #fee2e2;
  color: #991b1b;
}

.offer-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 520px);
  align-items: center;
  gap: clamp(28px, 6vw, 72px);
  min-height: 500px;
  padding: clamp(46px, 8vw, 96px) clamp(20px, 7vw, 110px);
  color: #fff;
  background: linear-gradient(135deg, #231923, #f0491f);
}

.offer-hero img {
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.donation-grid,
.payment-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  width: min(1120px, 100%);
  margin: 0 auto;
}

.payment-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: 780px;
}

.donation-card,
.payment-card {
  min-height: 210px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 8px 28px rgba(17, 24, 39, 0.06);
}

.donation-card--featured {
  border-color: #f2b09a;
  background: #fff7f3;
}

.donation-card img,
.payment-card img {
  height: 46px;
  width: auto;
  margin-bottom: 20px;
}

.donation-card h3,
.payment-card h3 {
  font-size: 1.35rem;
  font-style: normal;
}

.copy-value {
  font-size: 1.25rem;
  font-weight: 900;
}

.legal-note {
  margin: 28px auto 0;
  max-width: 920px;
  color: var(--muted);
  text-align: center;
}

.payment-section {
  background: var(--soft);
}

.payment-card {
  display: grid;
  align-content: space-between;
}

.contribute-hero img {
  width: min(260px, 70vw);
  justify-self: center;
  padding: 28px;
  background: rgba(255, 255, 255, 0.96);
}

.pix-panel {
  width: min(860px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 300px minmax(0, 1fr);
  gap: 22px;
  align-items: stretch;
}

.pix-qr {
  display: grid;
  place-items: center;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 8px 28px rgba(17, 24, 39, 0.06);
}

.pix-qr img {
  width: min(260px, 100%);
  height: auto;
}

.tv-hero {
  min-height: 430px;
  display: grid;
  align-items: center;
  padding: clamp(48px, 8vw, 96px) clamp(20px, 7vw, 110px);
  color: #fff;
  background:
    linear-gradient(90deg, rgba(47, 33, 48, 0.94), rgba(240, 73, 31, 0.82)),
    url("../assets/home-family.png") center / cover;
}

.tv-hero .eyebrow {
  color: #ffb38f;
}

.tv-hero__content {
  max-width: 780px;
}

.tv-hero p {
  max-width: 650px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.08rem;
}

.radio-section,
.social-section {
  padding: clamp(54px, 8vw, 96px) clamp(20px, 5vw, 80px);
}

.radio-section {
  background: var(--soft);
}

.radio-shell {
  width: min(1060px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(260px, 0.85fr) minmax(320px, 1.15fr);
  gap: clamp(24px, 5vw, 56px);
  align-items: center;
}

.radio-copy p {
  color: var(--muted);
  font-size: 1.05rem;
}

.radio-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.radio-highlights span {
  padding: 9px 12px;
  border: 1px solid #f2c8b8;
  border-radius: 999px;
  background: #fff;
  color: var(--orange-dark);
  font-size: 0.9rem;
  font-weight: 900;
}

.radio-console {
  position: relative;
  overflow: hidden;
  padding: clamp(20px, 4vw, 30px);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background:
    radial-gradient(circle at top right, rgba(240, 73, 31, 0.38), transparent 34%),
    linear-gradient(145deg, #2f2130 0%, #171318 72%);
  color: #fff;
  box-shadow: 0 24px 70px rgba(17, 24, 39, 0.24);
}

.radio-console::before {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: inherit;
  pointer-events: none;
}

.radio-console__top {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 22px;
}

.radio-console__top img {
  width: 116px;
  padding: 10px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
}

.radio-console__top h3 {
  margin: 10px 0 4px;
  color: #fff;
  font-size: clamp(1.55rem, 3vw, 2.25rem);
  font-style: normal;
}

.radio-console__top p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-weight: 800;
}

.live-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 11px;
  border-radius: 999px;
  background: rgba(240, 73, 31, 0.18);
  color: #ffb38f;
  font-size: 0.78rem;
  font-style: normal;
  font-weight: 900;
  text-transform: uppercase;
}

.live-pill::before {
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: #ff4b20;
  box-shadow: 0 0 0 6px rgba(240, 73, 31, 0.18);
}

.radio-wave {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: end;
  gap: 7px;
  height: 64px;
  margin-bottom: 18px;
  padding: 12px 0;
}

.radio-wave span {
  width: 100%;
  max-width: 28px;
  min-width: 10px;
  height: 18px;
  border-radius: 999px;
  background: linear-gradient(180deg, #ffb38f, #f0491f);
  opacity: 0.92;
  animation: radioPulse 1200ms ease-in-out infinite;
}

.radio-wave span:nth-child(2) {
  height: 38px;
  animation-delay: 100ms;
}

.radio-wave span:nth-child(3) {
  height: 52px;
  animation-delay: 180ms;
}

.radio-wave span:nth-child(4) {
  height: 28px;
  animation-delay: 260ms;
}

.radio-wave span:nth-child(5) {
  height: 46px;
  animation-delay: 340ms;
}

.radio-wave span:nth-child(6) {
  height: 24px;
  animation-delay: 420ms;
}

.radio-wave span:nth-child(7) {
  height: 58px;
  animation-delay: 500ms;
}

.radio-wave span:nth-child(8) {
  height: 34px;
  animation-delay: 580ms;
}

.native-radio-player {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 86px minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  padding: 20px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.05)),
    rgba(255, 255, 255, 0.08);
  box-shadow: 0 16px 42px rgba(0, 0, 0, 0.2);
}

.native-radio-player audio {
  display: none;
}

.native-radio-player__play {
  width: 78px;
  height: 78px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(145deg, #ff6d3d, #f0491f);
  box-shadow: 0 16px 34px rgba(240, 73, 31, 0.35);
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.native-radio-player__play:hover {
  transform: translateY(-1px) scale(1.02);
  box-shadow: 0 20px 42px rgba(240, 73, 31, 0.45);
}

.native-radio-player__play-icon {
  width: 0;
  height: 0;
  margin-left: 6px;
  border-top: 15px solid transparent;
  border-bottom: 15px solid transparent;
  border-left: 23px solid #fff;
}

.native-radio-player[data-state="playing"] .native-radio-player__play-icon {
  width: 25px;
  height: 30px;
  margin-left: 0;
  border: 0;
  background:
    linear-gradient(90deg, #fff 0 35%, transparent 35% 65%, #fff 65% 100%);
}

.native-radio-player[data-state="loading"] .native-radio-player__play {
  animation: nativePlayerLoading 900ms ease-in-out infinite;
}

.native-radio-player__meta {
  min-width: 0;
}

.native-radio-player__label {
  margin: 0 0 3px;
  color: #ffb38f;
  font-size: 0.78rem;
  font-style: normal;
  font-weight: 900;
  text-transform: uppercase;
}

.native-radio-player__meta strong {
  display: block;
  overflow: hidden;
  color: #fff;
  font-size: clamp(1.15rem, 2.4vw, 1.55rem);
  line-height: 1.12;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.native-radio-player__meta span {
  display: block;
  margin-top: 5px;
  color: rgba(255, 255, 255, 0.72);
  font-weight: 800;
}

.native-radio-player__volume {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 12px;
  align-items: center;
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.86rem;
  font-style: normal;
  font-weight: 900;
}

.native-radio-player__volume input {
  width: 100%;
  min-height: 0;
  padding: 0;
  accent-color: var(--orange);
}

.radio-actions {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 16px;
}

.radio-action {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 16px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  color: #fff;
  font-weight: 900;
  text-align: center;
  text-decoration: none;
}

.radio-action--primary {
  border-color: transparent;
  background: var(--orange);
}

.radio-action:hover {
  border-color: rgba(255, 255, 255, 0.48);
}

.radio-action--primary:hover {
  background: var(--orange-dark);
}

@keyframes radioPulse {
  0%,
  100% {
    transform: scaleY(0.72);
  }

  50% {
    transform: scaleY(1);
  }
}

@keyframes nativePlayerLoading {
  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(0.94);
  }
}

.social-grid {
  width: min(980px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.social-grid a {
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: var(--header);
  font-weight: 900;
  text-align: center;
  text-decoration: none;
  box-shadow: 0 8px 24px rgba(17, 24, 39, 0.05);
}

.social-grid a:hover {
  border-color: #f2b09a;
  color: var(--orange-dark);
}

.site-footer {
  display: grid;
  justify-items: center;
  gap: 12px;
  padding: 38px 20px;
  color: #fff;
  background: var(--header);
  text-align: center;
}

.site-footer img {
  width: 154px;
}

.site-footer p {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
}

@media (max-width: 900px) {
  .site-header {
    position: static;
    align-items: flex-start;
    flex-direction: column;
  }

  .site-nav {
    width: 100%;
    flex-wrap: wrap;
  }

  .offer-hero,
  .donation-grid,
  .payment-grid,
  .pix-panel,
  .radio-shell,
  .social-grid {
    grid-template-columns: 1fr;
  }

  .support-options {
    grid-template-columns: repeat(2, 1fr);
  }

  .home-header {
    padding: 14px 24px;
  }

  .pdf-hero__photo {
    min-height: 320px;
    padding: 0 24px;
    background-position: center;
  }

  .pdf-hero__photo h1 {
    margin-top: 34px;
  }

  .pdf-step__title {
    flex-direction: column;
    gap: 4px;
  }

  .pdf-step__title h3 {
    min-width: 0;
    width: min(520px, 100%);
  }
}

@media (max-width: 620px) {
  .brand img {
    width: 138px;
  }

  .site-nav {
    gap: 12px 18px;
    font-size: 0.82rem;
  }

  .timeline-item {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .timeline-item h3 {
    padding: 12px 18px;
    border-radius: 28px;
  }

  .support-options {
    grid-template-columns: 1fr;
  }

  .home-header .brand img {
    width: 110px;
  }

  .pdf-home-content {
    width: min(100% - 24px, 880px);
  }

  .pdf-heading h2 {
    font-size: 2rem;
  }

  .pdf-video {
    margin-bottom: 84px;
  }

  .pdf-steps {
    gap: 72px;
  }

  .pdf-step__title strong {
    font-size: 4.4rem;
  }

  .pdf-step__title h3 {
    padding: 12px 18px 15px;
    font-size: 1.75rem;
  }

  .pdf-church-card {
    text-align: center;
  }

  .pdf-church-card ul {
    padding-left: 0;
  }

  .pdf-submit {
    width: 100%;
    justify-self: stretch;
  }

  .cep-search__row {
    grid-template-columns: 1fr;
  }

  .cep-button {
    min-width: 0;
  }

  .church-result-card {
    padding: 18px 20px;
  }

  .radio-console__top {
    flex-direction: column;
  }

  .radio-console__top img {
    width: 128px;
  }

  .radio-actions {
    grid-template-columns: 1fr;
  }

  .native-radio-player {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }

  .native-radio-player__meta strong {
    white-space: normal;
  }

  .native-radio-player__volume {
    grid-template-columns: 1fr;
    width: 100%;
  }
}
