/* Igreja Page Specific Styles */

/* Hero Section with Church Background */
.church-hero {
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.7)), 
              url('https://images.unsplash.com/photo-1438032005730-c779502df39b?ixlib=rb-4.0.3&ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&auto=format&fit=crop&w=1920&q=80');
  background-size: cover;
  background-position: center;
  color: white;
  padding: 300px 0 180px;
  min-height: 100vh; /* Ensure it takes at least the full viewport height */
}

.church-hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  margin-bottom: 1.5rem;
  line-height: 1.2;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.church-hero p {
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1.1rem, 2vw, 1.3rem);
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 2rem;
}

/* Mission Section */
.mission {
  padding: 6rem 0;
  background-color: #f9f9f9;
}

.mission-content {
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

.mission h2 {
  font-size: 2.5rem;
  margin-bottom: 2rem;
  color: var(--dark);
}

.mission p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  color: #444;
}

.mission-stats {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  margin-top: 4rem;
  gap: 2rem;
}

.stat {
  text-align: center;
  flex: 1;
  min-width: 200px;
}

.stat-number {
  display: block;
  font-size: 3rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 1rem;
  color: #555;
}

/* Solutions Section */
.solutions {
  padding: 6rem 0;
  background-color: white;
}

.solutions h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.solutions > .container > p {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 4rem;
  color: #555;
}

.solutions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2.5rem;
  margin-top: 3rem;
}

.solution-card {
  background-color: white;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  padding: 2.5rem 2rem;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  border: 1px solid #f0f0f0;
}

.solution-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  border-color: #e0e0e0;
}

.solution-icon {
  font-size: 2.5rem;
  color: var(--primary);
  margin-bottom: 1.5rem;
  height: 60px;
  width: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(255, 107, 53, 0.1);
  border-radius: 50%;
  margin-left: auto;
  margin-right: auto;
}

.solution-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  text-align: center;
  color: var(--dark);
}

.solution-card p {
  color: #555;
  margin-bottom: 1.5rem;
  text-align: center;
}

.solution-features {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
}

.solution-features li {
  margin-bottom: 0.8rem;
  display: flex;
  align-items: flex-start;
  color: #444;
}

.solution-features li i {
  color: var(--primary);
  margin-right: 0.8rem;
  font-size: 0.9rem;
  margin-top: 0.5rem;
}

.solution-cta {
  display: inline-block;
  background-color: transparent;
  color: var(--primary);
  padding: 0.8rem 1.5rem;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 2px solid var(--primary);
  text-align: center;
  margin-top: auto;
}

.solution-cta:hover {
  background-color: var(--primary);
  color: white;
}

/* Benefits Section */
.benefits {
  padding: 6rem 0;
  background-color: #f9f9f9;
}

.benefits h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 3rem;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.benefit-card {
  text-align: center;
  padding: 2rem;
  background-color: white;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.benefit-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.benefit-card i {
  font-size: 2.5rem;
  color: var(--primary);
  margin-bottom: 1.5rem;
}

.benefit-card h3 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
  color: var(--dark);
}

.benefit-card p {
  color: #555;
  font-size: 1rem;
}

/* Testimonials Section */
.testimonials {
  padding: 6rem 0;
  background-color: white;
}

.testimonials h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 3rem;
}

.testimonials-slider {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
}

.testimonial {
  background-color: white;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  padding: 2rem;
  max-width: 350px;
  flex: 1;
  min-width: 300px;
  border: 1px solid #f0f0f0;
}

.testimonial-content {
  margin-bottom: 1.5rem;
}

.testimonial-content p {
  font-style: italic;
  color: #444;
  text-align: left;
  margin: 0;
}

.testimonial-author {
  display: flex;
  align-items: center;
}

.testimonial-author img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  margin-right: 1rem;
  object-fit: cover;
}

.testimonial-author h4 {
  margin: 0;
  font-size: 1.1rem;
  color: var(--dark);
}

.testimonial-author p {
  margin: 0;
  font-size: 0.9rem;
  color: #666;
  text-align: left;
}

/* CTA Section */
.cta-section {
  padding: 6rem 0;
  background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), 
              url('https://images.unsplash.com/photo-1501281668745-f7f57925c3b4?ixlib=rb-4.0.3&ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&auto=format&fit=crop&w=1920&q=80');
  background-size: cover;
  background-position: center;
  color: white;
  text-align: center;
}

.cta-section h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

.cta-section p {
  font-size: 1.2rem;
  max-width: 700px;
  margin: 0 auto 2.5rem;
  color: rgba(255, 255, 255, 0.9);
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.secondary-cta {
  display: inline-block;
  background-color: transparent;
  color: white;
  padding: 0.8rem 1.5rem;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 2px solid white;
}

.secondary-cta:hover {
  background-color: white;
  color: var(--dark);
}

/* FAQ Section */
.faq {
  padding: 6rem 0;
  background-color: #f9f9f9;
}

.faq h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 3rem;
}

.faq-grid {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  margin-bottom: 1.5rem;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  overflow: hidden;
  background-color: white;
}

.faq-question {
  padding: 1.5rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s ease;
}

.faq-question h3 {
  margin: 0;
  font-size: 1.2rem;
  color: var(--dark);
  font-weight: 600;
}

.faq-question i {
  color: var(--primary);
  transition: all 0.3s ease;
}

.faq-answer {
  padding: 0 1.5rem;
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
  padding: 0 1.5rem 1.5rem;
  max-height: 500px;
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
}

.faq-answer p {
  margin: 0;
  color: #555;
  text-align: left;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .mission-stats {
    flex-direction: column;
    gap: 3rem;
  }
  
  .cta-buttons {
    flex-direction: column;
    max-width: 300px;
    margin: 0 auto;
  }
  
  .solution-card, .benefit-card, .testimonial {
    padding: 1.5rem;
  }
  
  .church-hero {
    padding: 250px 0 150px !important;
    min-height: 100vh !important;
    display: flex;
    align-items: center;
  }
  
  .church-hero .hero-content {
    width: 100%;
    padding: 0 1.5rem;
  }
  
  .church-hero h1 {
    font-size: clamp(1.8rem, 5vw, 2.5rem);
    margin-bottom: 1.5rem;
  }
  
  .church-hero p {
    font-size: clamp(1rem, 2vw, 1.1rem);
    margin-bottom: 2rem;
    padding: 0 1rem;
  }
}
