:root {
  --azul: #0d4f9a;
  --azul-escuro: #08386f;
  --azul-profundo: #062a52;
  --azul-claro: #eef3ff;
  --dourado: #e0b316;
  --grafite: #0e1c2f;
  --cinza: #dfe6f3;
  --branco: #ffffff;
  --sombra: 0 20px 50px rgba(0, 33, 71, 0.18);
  --sombra-suave: 0 10px 30px rgba(0, 33, 71, 0.12);
  --hero-banner: url("https://i.postimg.cc/PrZJRcTm/Unidos-de-Fatima.png");
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Sora", system-ui, -apple-system, sans-serif;
  background: radial-gradient(circle at 20% 20%, rgba(13, 79, 154, 0.08), transparent 35%),
    radial-gradient(circle at 80% 10%, rgba(13, 79, 154, 0.12), transparent 35%),
    #f7f9ff;
  color: var(--grafite);
  line-height: 1.6;
  min-height: 100vh;
}

.hero__content,
.hero__badge,
.hero__stats,
.section__header,
.section__content,
.media-card,
.card,
.timeline__item,
.gallery__info,
.gallery__controls,
.cta,
.footer__content {
  position: relative;
  z-index: 10;
}

a {
  color: inherit;
  text-decoration: none;
}

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

header {
  position: relative;
}

.container {
  width: min(1100px, 92vw);
  margin: 0 auto;
}

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 28px;
  backdrop-filter: blur(12px);
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(6, 42, 82, 0.08);
  z-index: 999;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand__mark {
  width: 50px;
  height: 50px;
  object-fit: contain;
  background: rgba(13, 79, 154, 0.08);
  border-radius: 12px;
  padding: 6px;
  border: 1px solid rgba(6, 42, 82, 0.15);
}

.brand__text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.brand__eyebrow {
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(14, 28, 47, 0.65);
}

.brand__title {
  font-family: "Bebas Neue", sans-serif;
  letter-spacing: 0.05em;
  font-size: 22px;
  color: var(--grafite);
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 18px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav__links a {
  padding: 8px 12px;
  border-radius: 999px;
  font-weight: 600;
  color: rgba(14, 28, 47, 0.82);
  transition: background 0.2s, color 0.2s;
}

.nav__links a:hover {
  background: rgba(13, 79, 154, 0.12);
  color: var(--grafite);
}

.nav__toggle {
  display: none;
  background: rgba(13, 79, 154, 0.1);
  color: var(--grafite);
  border: 1px solid rgba(6, 42, 82, 0.15);
  padding: 10px 14px;
  border-radius: 10px;
  font-weight: 700;
}

.hero {
  min-height: 90vh;
  padding: 120px 0 80px;
  background: linear-gradient(120deg, rgba(6, 42, 82, 0.8), rgba(6, 42, 82, 0.35)),
    radial-gradient(circle at 20% 40%, rgba(224, 179, 22, 0.22), transparent 38%),
    var(--hero-banner) center/cover no-repeat;
  position: relative;
  overflow: hidden;
}

.hero__badge {
  position: absolute;
  top: 86px;
  right: 28px;
  width: 104px;
  height: 104px;
  background: rgba(255, 255, 255, 0.92);
  border-radius: 20px;
  border: 1px solid rgba(6, 42, 82, 0.18);
  box-shadow: var(--sombra);
  padding: 10px;
  display: grid;
  place-items: center;
  z-index: 2;
}

.hero__badge img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(6, 42, 82, 0.2), rgba(6, 42, 82, 0.65));
  pointer-events: none;
}

.hero__content {
  position: relative;
  z-index: 1;
  width: min(1000px, 90vw);
  margin: 0 auto;
}

.hero__eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-weight: 700;
  color: rgba(224, 179, 22, 0.85);
  margin: 0 0 8px;
}

h1,
h2,
h3 {
  font-family: "Bebas Neue", sans-serif;
  letter-spacing: 0.03em;
  margin: 0 0 12px;
  color: var(--grafite);
}

h1 {
  font-size: clamp(44px, 5vw, 68px);
  line-height: 1.05;
  color: var(--branco);
}

h2 {
  font-size: clamp(32px, 3vw, 48px);
}

h3 {
  font-size: 24px;
}

.hero__lead {
  max-width: 720px;
  font-size: 18px;
  color: rgba(255, 255, 255, 0.9);
}

.hero__actions {
  display: flex;
  gap: 12px;
  margin: 24px 0;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 18px;
  border-radius: 12px;
  font-weight: 700;
  cursor: pointer;
  border: 1px solid transparent;
  transition: transform 0.15s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn--primary {
  background: linear-gradient(135deg, var(--azul), var(--azul-escuro));
  color: var(--branco);
  box-shadow: var(--sombra);
}

.btn--ghost {
  background: rgba(13, 79, 154, 0.08);
  color: var(--grafite);
  border: 1px solid rgba(13, 79, 154, 0.3);
  box-shadow: var(--sombra-suave);
}

.hero .btn--ghost,
.section--cta .btn--ghost {
  background: rgba(255, 255, 255, 0.12);
  color: var(--branco);
  border: 1px solid rgba(255, 255, 255, 0.35);
}

.hero__stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 14px;
  margin-top: 26px;
}

.stat {
  background: rgba(255, 255, 255, 0.9);
  padding: 14px;
  border-radius: 14px;
  border: 1px solid rgba(6, 42, 82, 0.08);
}

.stat__value {
  display: block;
  font-size: 28px;
  font-weight: 800;
  color: var(--azul-escuro);
}

.stat__label {
  font-size: 14px;
  color: rgba(14, 28, 47, 0.75);
}

.section {
  padding: 90px 0;
  background: #f7f9ff;
}

.section--light {
  background: var(--azul-claro);
  color: var(--grafite);
}

.section--cta {
  background: linear-gradient(125deg, var(--azul-profundo), var(--azul-escuro) 55%, #0b325f);
  color: var(--branco);
}

.section__header {
  text-align: center;
  margin-bottom: 32px;
}

.section__lead {
  margin: 0 auto;
  max-width: 650px;
  color: rgba(14, 28, 47, 0.75);
}

.section--light .section__lead {
  color: rgba(14, 28, 47, 0.72);
}

.section--cta .section__lead {
  color: rgba(255, 255, 255, 0.85);
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-weight: 700;
  font-size: 12px;
  color: var(--dourado);
  margin: 0 0 10px;
}

.grid {
  display: grid;
  gap: 26px;
}

.grid--2 {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  align-items: center;
}

.section__content p {
  margin-bottom: 14px;
}

.pill-list {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 18px;
}

.pill {
  background: rgba(13, 79, 154, 0.08);
  color: var(--grafite);
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(13, 79, 154, 0.25);
  font-weight: 600;
}

.section--light .pill {
  color: var(--grafite);
}

.section__media {
  display: flex;
  justify-content: center;
}

.media-card {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--sombra);
  max-width: 520px;
}

.media-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.media-card__tag {
  position: absolute;
  bottom: 14px;
  left: 14px;
  background: rgba(6, 42, 82, 0.8);
  padding: 8px 12px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  font-weight: 700;
  color: var(--branco);
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 18px;
}

.card {
  background: #ffffff;
  border: 1px solid rgba(6, 42, 82, 0.08);
  border-radius: 14px;
  padding: 18px;
  box-shadow: var(--sombra-suave);
}

.card ul {
  list-style: none;
  padding: 0;
  margin: 0;
  color: rgba(14, 28, 47, 0.86);
}

.card li {
  margin-bottom: 8px;
}

.timeline {
  display: grid;
  gap: 14px;
}

.timeline__item {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 16px;
  background: rgba(13, 79, 154, 0.06);
  padding: 16px;
  border-radius: 14px;
  border: 1px solid rgba(6, 42, 82, 0.08);
  align-items: center;
}

.section--light .timeline__item {
  background: #ffffff;
  border: 1px solid rgba(6, 42, 82, 0.08);
}

.timeline__date {
  font-weight: 800;
  color: var(--dourado);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.gallery {
  display: grid;
  gap: 12px;
}

.gallery__visual {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  min-height: 320px;
  background: #0f1d33;
  border: 1px solid rgba(6, 42, 82, 0.08);
}

.gallery__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.gallery__info {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 18px;
  background: linear-gradient(180deg, transparent, rgba(6, 42, 82, 0.85));
}

.gallery__title {
  margin: 0;
  color: var(--branco);
}

.gallery__desc {
  margin: 4px 0 0;
  color: rgba(255, 255, 255, 0.85);
}

.gallery__controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.gallery__dots {
  display: flex;
  gap: 8px;
}

.gallery__dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(6, 42, 82, 0.15);
  border: none;
  cursor: pointer;
  transition: transform 0.15s ease, background 0.2s ease;
}

.gallery__dot.is-active {
  background: var(--dourado);
  transform: scale(1.15);
}

.section--cta .cta {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  align-items: center;
  gap: 18px;
}

.cta__actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 14px;
}

.cta__info {
  background: rgba(255, 255, 255, 0.08);
  padding: 16px;
  border-radius: 14px;
  border: 1px solid rgba(224, 179, 22, 0.35);
  color: var(--branco);
}

.cta__line {
  margin-bottom: 8px;
}

.cta__socials {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.cta__label {
  font-weight: 700;
}

.social-links {
  display: flex;
  gap: 8px;
}

.social-link {
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.22);
  transition: transform 0.15s ease, background 0.2s ease, border 0.2s ease;
}

.social-link:hover {
  transform: translateY(-2px);
  background: rgba(224, 179, 22, 0.18);
  border-color: rgba(224, 179, 22, 0.4);
}

.social-link svg {
  width: 18px;
  height: 18px;
  fill: var(--branco);
}

.audio-player {
  position: fixed;
  right: 18px;
  bottom: 18px;
  width: min(420px, 92vw);
  padding: 12px;
  border-radius: 16px;
  background: linear-gradient(120deg, rgba(6, 42, 82, 0.95), rgba(13, 79, 154, 0.95));
  border: 1px solid rgba(224, 179, 22, 0.35);
  box-shadow: var(--sombra);
  color: var(--branco);
  backdrop-filter: blur(12px);
  z-index: 1000;
}

.audio-player__row {
  display: flex;
  align-items: center;
  gap: 12px;
}

.audio-player__row--progress {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 10px;
  margin-top: 8px;
}

.audio-player__play {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  border: 1px solid rgba(224, 179, 22, 0.45);
  background: rgba(255, 255, 255, 0.08);
  cursor: pointer;
  transition: transform 0.15s ease, background 0.2s ease, border-color 0.2s ease;
}

.audio-player__play:hover {
  transform: translateY(-2px);
  background: rgba(224, 179, 22, 0.15);
  border-color: rgba(224, 179, 22, 0.65);
}

.audio-player__icon {
  width: 18px;
  height: 18px;
  fill: var(--branco);
  display: none;
}

.audio-player__play.is-playing .audio-player__icon--pause {
  display: block;
}

.audio-player__play:not(.is-playing) .audio-player__icon--play {
  display: block;
}

.audio-player__meta {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
  flex: 1;
}

.audio-player__label {
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(224, 179, 22, 0.85);
}

.audio-player__title {
  font-size: 20px;
  letter-spacing: 0.04em;
  color: var(--branco);
}

.audio-player__status {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.85);
}

.audio-player__volume {
  display: flex;
  align-items: center;
  gap: 6px;
}

.audio-player__vol-icon {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
}

.audio-player__volume-range,
.audio-player__progress {
  accent-color: var(--dourado);
}

.audio-player input[type="range"] {
  -webkit-appearance: none;
  appearance: none;
  height: 4px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.28);
  outline: none;
}

.audio-player input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--dourado);
  border: 1px solid rgba(255, 255, 255, 0.5);
  box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.12);
}

.audio-player input[type="range"]::-moz-range-thumb {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--dourado);
  border: 1px solid rgba(255, 255, 255, 0.5);
  box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.12);
}

.audio-player__time {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.9);
  min-width: 42px;
  text-align: center;
}

.footer {
  padding: 28px 0 36px;
  background: var(--azul-profundo);
  border-top: 1px solid rgba(224, 179, 22, 0.18);
  color: var(--branco);
}

.footer__content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.footer__brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer__logo {
  width: 64px;
  height: 64px;
  object-fit: contain;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  border: 1px solid rgba(224, 179, 22, 0.35);
  padding: 8px;
  box-shadow: var(--sombra-suave);
}

.footer__text {
  margin: 4px 0 0;
  color: rgba(255, 255, 255, 0.88);
}

.footer .eyebrow {
  color: var(--dourado);
}

[data-animate] {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

[data-animate].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 900px) {
  .nav__toggle {
    display: inline-flex;
  }

  .nav__links {
    position: absolute;
    top: 68px;
    right: 14px;
    flex-direction: column;
    align-items: flex-start;
    background: rgba(6, 42, 82, 0.96);
    padding: 12px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    display: none;
    min-width: 220px;
  }

  .nav__links a {
    color: var(--branco);
    width: 100%;
  }

  .nav__links.is-open {
    display: flex;
  }

  .nav__links li {
    width: 100%;
  }

  .hero {
    padding-top: 140px;
  }

  .hero__badge {
    top: 94px;
    right: 18px;
    width: 86px;
    height: 86px;
  }

  .timeline__item {
    grid-template-columns: 1fr;
  }

  .gallery__controls {
    flex-direction: column;
    align-items: stretch;
  }

  .audio-player {
    left: 14px;
    right: 14px;
    width: auto;
  }

  .audio-player__row {
    flex-wrap: wrap;
  }

  .audio-player__volume {
    width: 100%;
  }
}

@media (max-width: 600px) {
  .hero__stats {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  }

  .btn {
    width: 100%;
    text-align: center;
  }

  .cta__actions {
    flex-direction: column;
  }

  .hero__badge {
    width: 74px;
    height: 74px;
    top: 102px;
    right: 14px;
  }
}
