/* ===== Import de Ícones ===== */
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.0/css/all.min.css');

/* ===== Estrutura Principal ===== */
.pastor-section {
  padding: 100px 0;
  background: linear-gradient(180deg, #fff 0%, #f6f3f0 100%);
  font-family: 'Roboto', sans-serif;
}

.navbar-default {
  background-color: #222 !important;
}

.section-heading {
  margin-top: 100px;
}

/* ===== Import Icons ===== */
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.0/css/all.min.css');

/* ===== Section ===== */
.pastor-section {
  padding: 100px 0;
  background: linear-gradient(180deg, #ffffff 0%, #faf7f5 100%);
  font-family: 'Roboto', sans-serif;
}

/* ===== Title ===== */
.pastor-section .section-heading {
  font-size: 3.2rem;
  font-weight: 800;
  text-align: center;
  background: linear-gradient(45deg, #ff7e00, #861f00);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 60px;
  letter-spacing: 1px;
}

.pastor-section .section-heading::after {
  content: '';
  width: 70px;
  height: 4px;
  background: linear-gradient(90deg, #ff7e00, #861f00);
  display: block;
  margin: 10px auto 0;
  border-radius: 3px;
}

/* ===== List Cards ===== */
.pastor-card {
  animation: fadeInUp 0.8s ease;
}

.pastor-card .card {
  border: none;
  border-radius: 16px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
}

.pastor-card .card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25);
}

.pastor-card img {
  width: 100%;
  height: 310px;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.pastor-card:hover img {
  transform: scale(1.05);
}

.pastor-card .card-body {
  padding: 20px;
}

.pastor-card .card-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: #222;
  margin: 10px 0 0;
}

.pastor-card:hover .card-title {
  color: #ff7e00;
}

/* ===== Detail Page ===== */
#pastor-detail {
  animation: fadeInUp 0.8s ease;
}

#pastor-detail .row {
  align-items: center;
  gap: 30px;
}

/* Photo */
#pastor-photo img {
  margin: auto;
  max-width: 500px;
  display: flex;
  width: 100%;
  max-width: 380px;
  border-radius: 20px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
  transition: transform 0.4s ease;
}

#pastor-photo img:hover {
  transform: scale(1.03);
}

/* Info */
#pastor-info {
  padding: 10px 15px;
}

#pastor-info h2 {
  font-size: 2.6rem;
  font-weight: 800;
  background: linear-gradient(45deg, #ff7e00, #861f00);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 20px;
}

#pastor-info p {
  font-size: 1.6rem;
  color: #444;
  line-height: 1.7;
  text-align: justify;
}

/* Socials */
.pastor-redes {
  display: flex;
  justify-content: center;
  width: 100%;
}

.pastor-redes a {
  margin-top: 30px;
  color: #444;
  font-size: 3rem;
  margin-right: 15px;
  transition: all 0.3s ease;
}

.pastor-redes a:hover {
  color: #ff7e00;
  transform: translateY(-3px);
}

/* Button */
#pastor-info .btn {
  background: linear-gradient(135deg, #ff7e00, #861f00);
  color: #fff;
  border: none;
  border-radius: 25px;
  padding: 10px 25px;
  font-size: 1.4rem;
  transition: all 0.3s ease;
}

#pastor-info .btn:hover {
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.25);
}

/* ===== Animation ===== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(25px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ===== Responsiveness ===== */

/* Tablets */
@media (max-width: 992px) {
  #pastor-detail .row {
    flex-direction: column;
    text-align: center;
  }
  #pastor-photo img {
    max-width: 320px;
  }
  #pastor-info h2 {
    font-size: 2.2rem;
    margin-top: 20px;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .pastor-section {
    padding-top: 60px;
  }
  .pastor-card img {
    height: 240px;
  }
  #pastor-info p {
    font-size: 1.45rem;
  }
  #pastor-info .btn {
    font-size: 1.3rem;
    padding: 8px 20px;
  }
}
