/* Liderança Page Styles */

/* Hero Section */
.lideranca-hero {
  position: relative;
  height: 60vh;
  min-height: 400px;
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #ffffff;
}

.hero-content h1 {
  font-size: 4.5rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin: 0;
  text-transform: none;
}

/* Liderança Sections */
.lideranca-section {
  padding: 100px 0 180px;
  background-color: #fafafa;
}

.section-diaconia {
  padding-top: 0;
  background-color: #1a1a1a;
  padding: 100px 0 180px;
}

.section-diaconia .section-header h2 {
  color: #ffffff;
}

.section-diaconia .section-description {
  color: #cccccc;
}

.section-diaconia .leader-card {
  background: #2d2d2d;
}

.section-diaconia .leader-info h3 {
  color: #ffffff;
}

.section-diaconia .leader-role {
  color: #cccccc;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-header h2 {
  font-size: 2.5rem;
  font-weight: 800;
  color: #2c2c2c;
  margin-bottom: 1rem;
}

.section-divider {
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, var(--color-primary), var(--color-accent));
  margin: 0 auto;
  border-radius: 2px;
}

.section-description {
  max-width: 800px;
  margin: 2rem auto 0;
  font-size: 1.1rem;
  line-height: 1.8;
  color: #666;
  text-align: center;
}

/* Liderança Grid */
.lideranca-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* Leader Card */
.leader-card {
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  min-height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem 1.5rem;
  position: relative;
}

.leader-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

/* Pastor Cards - Destaque especial */
.leader-card-pastor {
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  border: 2px solid var(--color-primary);
}

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

.leader-info h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #2c2c2c;
  margin-bottom: 0.5rem;
}

.leader-role {
  font-size: 1rem;
  color: #666;
  line-height: 1.5;
  font-weight: 400;
}

/* Ministérios Container */
.ministerios-container {
  max-width: 1200px;
  margin: 0 auto;
}

.ministerio-group {
  margin-bottom: 5rem;
}

.ministerio-group:last-child {
  margin-bottom: 0;
}

.ministerio-title {
  font-size: 2rem;
  font-weight: 700;
  color: #ffffff;
  text-align: center;
  margin-bottom: 3rem;
  position: relative;
  padding-bottom: 1rem;
}

.ministerio-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--color-primary), var(--color-accent));
  border-radius: 2px;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 3rem;
  }

  .lideranca-section {
    padding: 60px 0;
  }

  .section-header h2 {
    font-size: 2rem;
  }

  .lideranca-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 0 1rem;
  }

  .ministerio-title {
    font-size: 1.75rem;
  }

  .ministerio-group {
    margin-bottom: 3rem;
  }
}

@media (max-width: 480px) {
  .hero-content h1 {
    font-size: 2.5rem;
  }

  .section-header h2 {
    font-size: 1.75rem;
  }

  .leader-info h3 {
    font-size: 1.25rem;
  }

  .leader-role {
    font-size: 0.95rem;
  }
}