body {
  background-color: #f8f9fa;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  font-size: 130%;
}

.header-section {
  background-color: #007bff;
  color: rgb(255, 255, 255);
  padding: 40px 0;
  margin-bottom: 30px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.victory-card {
  background-color: white;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  margin-bottom: 25px;
  transition: transform 0.3s ease;
  border-left: 5px solid #28a745;
}

.victory-card:hover {
  transform: translateY(-5px);
}

.victory-icon {
  font-size: 3.25rem;
  margin-bottom: 15px;
  color: #28a745;
}

.victory-title {
  font-weight: 600;
  color: #343a40;
  display: flex;
  align-items: center;
  font-size: 1.3em;
}

.victory-emoji {
  font-size: 2.35rem;
  margin-left: 10px;
}

.victory-point {
  padding: 8px 0;
  border-bottom: 1px dashed #e9ecef;
}

.victory-point:last-child {
  border-bottom: none;
}

.bible-verse {
  background-color: rgba(40, 167, 69, 0.1);
  border-radius: 6px;
  padding: 15px;
  margin: 15px 0;
  border-left: 4px solid #28a745;
}

.footer-section {
  background-color: #deeee8;
  color: rgb(12, 11, 11);
  padding: 30px 0;
  margin-top: 30px;
}

.verse {
  font-style: italic;
  padding: 15px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 6px;
  margin-top: 15px;
}

.principles {
  background-color: #e6f7ff;
  border-radius: 8px;
  padding: 20px;
  margin-bottom: 35px;
}

.principle-item {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
  padding: 10px;
  background-color: white;
  border-radius: 6px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.principle-icon {
  font-size: 1.85rem;
  margin-right: 15px;
  color: #007bff;
}

.language-selector {
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 1000;
}

.language-btn {
  background-color: rgba(255, 255, 255, 0.2);
  color: white;
  border: 1px solid white;
  padding: 5px 10px;
  margin-left: 5px;
  border-radius: 4px;
  text-decoration: none;
  transition: all 0.3s;
  font-weight: bold;
}

.language-btn:hover {
  background-color: white;
  color: #007bff;
}

.language-btn.active {
  background-color: white;
  color: #007bff;
}

/* Compartilhamento Social */
.social-share {
  display: flex;
  justify-content: center;
  margin: 20px 0;
}

.social-share a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  margin: 0 5px;
  border-radius: 50%;
  color: white;
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-share a:hover {
  transform: translateY(-3px);
  opacity: 0.9;
}

.social-facebook {
  background-color: #3b5998;
}

.social-twitter {
  background-color: #1da1f2;
}

.social-whatsapp {
  background-color: #25d366;
}

.social-instagram {
  background: linear-gradient(45deg, #405de6, #5851db, #833ab4, #c13584, #e1306c, #fd1d1d);
}