/* ========================= */
/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Georgia', serif;
  background: #f4f6f9;
  background-image: radial-gradient(rgba(0,0,0,0.03) 1px, transparent 1px);
  background-size: 20px 20px;
  color: #1b263b;
}

/* ========================= */
/* TOPO */
.topo {
  background: linear-gradient(90deg, #0d1b2a, #1b263b);
  color: #f4c430;
  text-align: center;
  padding: 35px 20px;
}

.topo h1 {
  font-size: 30px;
  font-weight: bold;
}

#versiculo-topo {
  margin-top: 8px;
  font-size: 14px;
  color: #ffffff;
  opacity: 0.9;
}

/* ========================= */
/* CONTEÚDO */
.conteudo-diario {
  max-width: 800px;
  margin: 50px auto 120px auto;
  padding: 20px;
  animation: fadeIn 0.8s ease-in-out;
}

.salmo-box {
  background: #ffffff;
  padding: 30px;
  border-radius: 14px;
  box-shadow: 0 6px 25px rgba(0,0,0,0.08);
  margin-bottom: 30px;
  transition: transform 0.3s ease;
}

.salmo-box:hover {
  transform: translateY(-3px);
}

.salmo-box h2 {
  margin-bottom: 15px;
  font-size: 22px;
  color: #0d1b2a;
}

.salmo-box p {
  font-size: 17px;
  line-height: 1.8;
  color: #333;
}

.reflexao-box {
  background: #fff8e1;
  padding: 25px;
  border-left: 6px solid #f4c430;
  border-radius: 10px;
  margin-bottom: 30px;
  animation: fadeIn 1.2s ease-in-out;
}

.reflexao-box h3 {
  margin-bottom: 10px;
  font-size: 18px;
}

.reflexao-box p {
  font-size: 16px;
  line-height: 1.7;
}

/* ========================= */
/* BOTÃO WHATSAPP */
.btn-compartilhar {
  background: #25D366;
  color: white;
  border: none;
  padding: 15px 30px;
  border-radius: 40px;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-block;
}

.btn-compartilhar:hover {
  background: #1ebe5d;
  transform: scale(1.05);
}

/* ========================= */
/* MENU FIXO */
.menu-fixo {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #ffffff;
  display: flex;
  justify-content: space-around;
  padding: 12px 0;
  box-shadow: 0 -4px 15px rgba(0,0,0,0.08);
}

.menu-fixo a {
  text-decoration: none;
  color: #1b263b;
  font-size: 13px;
  text-align: center;
  transition: 0.2s;
}

.menu-fixo a:hover {
  color: #f4c430;
}

.menu-fixo a.ativo {
  color: #f4c430;
  font-weight: bold;
}

/* ========================= */
/* ANIMAÇÃO */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(15px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ========================= */
/* RESPONSIVO */
@media (max-width: 600px) {
  .salmo-box p,
  .reflexao-box p {
    font-size: 15px;
  }

  .topo h1 {
    font-size: 22px;
  }
}