/* Hero Section */
.hero-layer {
  position: relative;
  height: 60vh;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-layer .overlay {
  background: rgba(0, 0, 0, 0.5);
  padding: 2rem 1.5rem;
  border-radius: 8px;
  text-align: center;
  color: #fff;
  max-width: 600px;
}
.hero-layer .overlay h2 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}
.hero-layer .overlay p {
  font-size: 1.2rem;
}

/* Card Layers */
.layer-card {
  display: flex;
  align-items: stretch;
  margin: 2rem auto;
  max-width: 100%;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}
.layer-card-reverse {
  flex-direction: row-reverse;
}
.layer-card .card-image {
  flex: 1;
  background-size: cover;
  background-position: center;
  min-height: 500px;
}
.layer-card .card-text {
  flex: 1;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.layer-card .card-text h3 {
  font-size: 4rem;
  color: #004d99;
  margin-bottom: 0.5rem;
}
.layer-card .card-text p {
  font-size: 2rem;
  color: #333;
}

/* Valores Section */
.values-layer {
  background: #f9f9f9;
  padding: 3rem 1rem;
  text-align: center;
}
.values-layer h3 {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  color: #0066cc;
}
.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  max-width: 1000px;
  margin: 0 auto;
}
.value-item {
  background: #fff;
  border-radius: 8px;
  padding: 1.5rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  align-items: center;
}
.value-item img {
  height: 60px;
  margin-bottom: 1rem;
}
.value-item p {
  font-size: 1.5rem;
  color: #444;
  line-height: 1.4;
}

/* Áreas de Atuação */
.areas-layer {
  background: #f9f9f9;
  padding: 3rem 1rem;
  text-align: center;
}
.areas-layer h3 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  color: #004d99;
  text-align: center;
}
.areas-layer ul {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  padding: 0;
}
.areas-layer li {
  display: flex;
  align-items: center;
  font-size: 5rem;
  color: #333;
}
.areas-layer li img {
  height: 30px;
  margin-right: 0.75rem;
}

/* Encontros e Ritos */
.ritos-layer {
  background: #f9f9f9;
  padding: 2rem 1rem;
  max-width: 600px;
  margin: 0 auto 3rem;
  border-radius: 8px;
}
.ritos-layer h3 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  color: #0066cc;
  text-align: center;
}
.ritos-layer ul {
  list-style: disc inside;
  color: #333;
}
.ritos-layer li {
  margin: 0.5rem 0;
}

/* Responsividade */
@media (max-width: 768px) {
  .layer-card {
    flex-direction: column;
  }
  .layer-card.reverse {
    flex-direction: column;
  }
  .layer-card .card-image {
    min-height: 200px;
  }
  .hero-layer {
    height: 40vh;
  }
  .hero-layer .overlay h2 {
    font-size: 2rem;
  }
}
