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

:root {
  --terracota: #E35336;
  --terracota-claro: #ff8a72;
  --terracota-suave: #ffb09f;
  --marrom-profundo: #180806;
  --marrom-vinho: #35110c;
  --marrom-card: rgba(255, 255, 255, 0.08);
  --texto-principal: #ffffff;
  --texto-suave: #ffe1d8;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  background:
    radial-gradient(circle at top, rgba(227, 83, 54, 0.18), transparent 35%),
    linear-gradient(180deg, var(--marrom-profundo), var(--marrom-vinho), #0f0504);
  color: var(--texto-principal);
  min-height: 100vh;
  overflow-x: hidden;
}

.tela-inicial {
  min-height: 100vh;
  padding: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    radial-gradient(circle at top, rgba(227, 83, 54, 0.45), transparent 35%),
    linear-gradient(180deg, #3b120c, #130604);
}

.tela-inicial-com-video {
  position: relative;
  overflow: hidden;
}

.video-fundo-inicial {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
  transform: scale(1.03);
}

.camada-video-inicial {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(circle at center, rgba(227, 83, 54, 0.22), transparent 42%),
    linear-gradient(180deg, rgba(24, 8, 6, 0.70), rgba(53, 17, 12, 0.78), rgba(15, 5, 4, 0.88));
}

.card-inicial {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 420px;
  padding: 36px 24px;
  text-align: center;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(227, 83, 54, 0.26);
  box-shadow: 0 0 30px rgba(227, 83, 54, 0.42);
  backdrop-filter: blur(10px);
}

.coracao-grande {
  font-size: 48px;
  color: var(--terracota-claro);
  margin-bottom: 12px;
  animation: pulsar 1.6s infinite;
}

.card-inicial h1 {
  font-size: 70px;
  color: var(--terracota-claro);
  margin-bottom: 6px;
  text-shadow: 0 0 18px rgba(227, 83, 54, 0.45);
}

.subtitulo {
  font-size: 21px;
  color: var(--texto-suave);
  margin-bottom: 22px;
}

.texto-inicial {
  font-size: 17px;
  line-height: 1.6;
  margin-bottom: 28px;
}

button {
  border: none;
  padding: 15px 30px;
  border-radius: 999px;
  background: var(--terracota);
  color: white;
  font-size: 17px;
  cursor: pointer;
  box-shadow: 0 0 20px rgba(227, 83, 54, 0.65);
  transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

button:hover {
  transform: scale(1.05);
  background: var(--terracota-claro);
  box-shadow: 0 0 26px rgba(255, 138, 114, 0.8);
}

.oculto {
  display: none;
}

.secao {
  padding: 64px 22px;
  text-align: center;
  animation: aparecer 0.9s ease both;
}

.hero {
  min-height: 90vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-com-video {
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  padding: 80px 22px;
  background: #180806;
}

.video-fundo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 72% 30%;
  z-index: 0;
  transform: scale(1.01);
}

.camada-video {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(circle at center, rgba(227, 83, 54, 0.18), transparent 40%),
    linear-gradient(180deg, rgba(24, 8, 6, 0.68), rgba(53, 17, 12, 0.74), rgba(15, 5, 4, 0.84));
}

.conteudo-hero {
  position: relative;
  z-index: 2;
  max-width: 850px;
  margin: 0 auto;
}

.etiqueta {
  display: inline-block;
  margin: 0 auto 18px auto;
  padding: 8px 16px;
  border-radius: 999px;
  background: rgba(227, 83, 54, 0.14);
  border: 1px solid rgba(227, 83, 54, 0.25);
  color: var(--texto-suave);
  font-size: 15px;
}

.etiqueta-final {
  margin-bottom: 28px;
  font-size: 16px;
  box-shadow: 0 0 16px rgba(227, 83, 54, 0.22);
}

.hero h2,
.contador h2,
.galeria h2,
.album h2,
.mensagem h2,
.destaque-larisse h2 {
  color: var(--terracota-claro);
  font-size: 32px;
  margin-bottom: 22px;
  text-shadow: 0 0 14px rgba(227, 83, 54, 0.25);
}

.hero-com-video h2 {
  font-size: 38px;
  text-shadow: 0 0 22px rgba(0, 0, 0, 0.65);
}

.hero p,
.descricao {
  max-width: 680px;
  margin: 0 auto;
  font-size: 19px;
  line-height: 1.7;
}

.hero-com-video p {
  font-size: 21px;
  line-height: 1.8;
  text-shadow: 0 0 16px rgba(0, 0, 0, 0.75);
}

.caixa-tempo {
  display: inline-block;
  margin-top: 10px;
  padding: 22px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(227, 83, 54, 0.18);
  color: #ffffff;
  font-size: 22px;
  line-height: 1.5;
  box-shadow: 0 0 18px rgba(227, 83, 54, 0.25);
}

.galeria {
  padding-top: 40px;
}

.foto-card {
  width: 100%;
  max-width: 500px;
  height: auto !important;
  overflow: visible !important;
  margin: 28px auto;
  padding: 10px;
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(227, 83, 54, 0.16);
  box-shadow: 0 0 20px rgba(227, 83, 54, 0.26);
}

.foto-card img {
  display: block !important;
  width: 100% !important;
  border-radius: 20px;
  margin-bottom: 14px !important;
}

.foto-card-duplo {
  max-width: 760px;
}

.dupla-fotos {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.dupla-fotos img {
  width: 100% !important;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
  margin-bottom: 0 !important;
}

.legenda-interativa {
  padding: 8px 8px 12px 8px;
}

.botao-legenda {
  display: inline-block;
  width: auto;
  max-width: 100%;
  margin: 4px auto 6px auto;
  padding: 12px 18px;
  border-radius: 999px;
  background: rgba(227, 83, 54, 0.22);
  border: 1px solid rgba(255, 138, 114, 0.45);
  color: #ffffff;
  font-size: 15px;
  line-height: 1.4;
  box-shadow: 0 0 14px rgba(227, 83, 54, 0.28);
}

.botao-legenda:hover {
  background: var(--terracota);
  transform: scale(1.03);
}

.legenda-foto {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
  position: relative !important;
  z-index: 5 !important;
  color: #ffffff !important;
  font-size: 17px !important;
  line-height: 1.75 !important;
  text-align: center !important;
  padding: 14px 10px 12px 10px !important;
  margin: 0 !important;
  animation: aparecerLegenda 0.45s ease both;
}

.legenda-foto.oculta {
  display: none !important;
}

.album {
  padding-top: 30px;
}

.botoes-album {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin: 28px auto 30px auto;
  max-width: 760px;
}

.botao-album {
  padding: 13px 22px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 138, 114, 0.38);
  color: #ffffff;
  font-size: 16px;
  box-shadow: 0 0 14px rgba(227, 83, 54, 0.22);
}

.botao-album:hover,
.botao-album.ativo {
  background: var(--terracota);
  box-shadow: 0 0 22px rgba(227, 83, 54, 0.55);
}

.grupo-album {
  display: none;
  max-width: 900px;
  margin: 0 auto;
  animation: aparecer 0.5s ease both;
}

.grupo-album.ativo {
  display: block;
}

.grupo-album h3 {
  color: var(--terracota-claro);
  font-size: 25px;
  margin-bottom: 12px;
}

.texto-album {
  max-width: 680px;
  margin: 0 auto 24px auto;
  color: #ffffff;
  font-size: 17px;
  line-height: 1.7;
}

.grade-album {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 24px;
}

.grade-album img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(227, 83, 54, 0.18);
  box-shadow: 0 0 18px rgba(227, 83, 54, 0.25);
}

.album-vazio {
  max-width: 560px;
  margin: 24px auto 0 auto;
  padding: 34px 20px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px dashed rgba(255, 138, 114, 0.45);
  color: var(--texto-suave);
  font-size: 17px;
  line-height: 1.7;
}

.mensagem {
  max-width: 780px;
  margin: 0 auto;
}

.mensagem p {
  font-size: 18px;
  line-height: 1.85;
  margin-bottom: 22px;
}

.mensagem h3 {
  margin-top: 28px;
  color: var(--terracota-claro);
  font-size: 30px;
  text-shadow: 0 0 14px rgba(227, 83, 54, 0.35);
}

.destaque-larisse {
  padding-top: 20px;
  padding-bottom: 20px;
}

.foto-destaque-card {
  width: 100%;
  max-width: 420px;
  margin: 24px auto 0 auto;
  padding: 10px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(227, 83, 54, 0.18);
  box-shadow: 0 0 22px rgba(227, 83, 54, 0.30);
}

.foto-destaque-card img {
  width: 100%;
  display: block;
  border-radius: 22px;
}

.texto-destaque-final {
  display: block;
  max-width: 760px;
  margin: 24px auto 0 auto;
  padding: 0 12px;
  font-size: 18px;
  line-height: 1.9;
  color: #ffffff;
  text-align: center;
}

.versiculo {
  min-height: 80vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.versiculo h2 {
  color: var(--terracota-claro);
  font-size: 66px;
  margin-bottom: 24px;
  text-shadow: 0 0 18px rgba(227, 83, 54, 0.45);
}

.versiculo p {
  max-width: 700px;
  margin: 0 auto 16px auto;
  font-size: 22px;
  line-height: 1.6;
  color: #ffffff;
}

.versiculo span {
  color: var(--texto-suave);
  font-size: 18px;
}

.player-musica {
  display: none;
  position: fixed;
  right: 18px;
  bottom: 18px;
  width: 320px;
  padding: 12px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.10);
  border: 1px solid rgba(227, 83, 54, 0.20);
  box-shadow: 0 0 20px rgba(227, 83, 54, 0.35);
  backdrop-filter: blur(10px);
  z-index: 1000;
  text-align: center;
}

.player-musica p {
  margin-bottom: 8px;
  color: var(--texto-suave);
  font-size: 15px;
}

.player-musica iframe {
  width: 100%;
  border-radius: 12px;
}

@media (max-width: 700px) {
  .dupla-fotos {
    grid-template-columns: 1fr;
  }

  .grade-album {
    grid-template-columns: 1fr;
  }

  .grade-album img {
    height: auto;
    max-height: none;
  }
}

@media (max-width: 600px) {
  .secao {
    padding: 56px 18px;
  }

  .video-fundo-inicial {
    object-position: center;
    transform: scale(1.08);
  }

  .card-inicial {
    max-width: 360px;
  }

  .hero-com-video {
    min-height: 100vh;
    padding: 72px 18px;
  }

  .video-fundo {
    object-position: 74% 30%;
    transform: scale(1.01);
  }

  .hero-com-video h2 {
    font-size: 30px;
  }

  .hero-com-video p {
    font-size: 18px;
  }

  .player-musica {
    position: static;
    width: calc(100% - 40px);
    margin: 30px auto;
  }

  .versiculo h2 {
    font-size: 52px;
  }

  .versiculo p {
    font-size: 18px;
  }

  .hero h2,
  .contador h2,
  .galeria h2,
  .album h2,
  .mensagem h2,
  .destaque-larisse h2 {
    font-size: 28px;
  }

  .legenda-foto,
  .texto-destaque-final {
    font-size: 16px !important;
    line-height: 1.7 !important;
  }

  .foto-card {
    max-width: 430px;
  }

  .botao-legenda {
    font-size: 14px;
    padding: 11px 16px;
  }

  .botoes-album {
    gap: 10px;
  }

  .botao-album {
    width: 100%;
    max-width: 280px;
    font-size: 15px;
  }

  .grupo-album h3 {
    font-size: 23px;
  }

  .texto-album {
    font-size: 16px;
  }
}

@keyframes aparecer {
  from {
    opacity: 0;
    transform: translateY(26px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes aparecerLegenda {
  from {
    opacity: 0;
    transform: translateY(12px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulsar {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.15);
  }

  100% {
    transform: scale(1);
  }
}

@keyframes subir {
  from {
    transform: translateY(0);
    opacity: 0.85;
  }

  to {
    transform: translateY(-110vh);
    opacity: 0;
  }
}

.coracao-flutuante {
  position: fixed;
  bottom: -30px;
  color: var(--terracota-claro);
  opacity: 0.85;
  z-index: 999;
  pointer-events: none;
  animation: subir 5s linear forwards;
}
