.sobreHero {
  width: 100%;
  background: linear-gradient(135deg, #24231f 0%, #3a3935 100%);
  padding: 4rem 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.sobreHero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("../img/pattern-orthodox.png") repeat;
  opacity: 0.05;
  pointer-events: none;
}

.sobreHeroContent {
  max-width: 800px;
  text-align: center;
  z-index: 1;
}

.sobreHeroContent h1 {
  color: white;
  font-size: 2.75rem;
  margin-bottom: 1rem;
}

.sobreHeroContent h1::after {
  content: "";
  display: block;
  width: 100px;
  height: 4px;
  background: #7ea8c9;
  margin: 1rem auto 0;
  border-radius: 2px;
}

.sobreHeroContent p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.2rem;
  line-height: 1.6;
}

.sobreSection {
  width: 100%;
  padding: 3rem 0;
  display: flex;
  justify-content: center;
}

.sobreContainer {
  max-width: 1000px;
  width: 100%;
  padding: 0 2rem;
}

.sobreCard {
  background: white;
  border-radius: 1.5rem;
  padding: 2.5rem;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  margin-bottom: 2rem;
}

.sobreProfile {
  display: flex;
  gap: 2.5rem;
  margin-bottom: 2rem;
}

.sobreProfileImg {
  flex-shrink: 0;
  width: 250px;
  height: 300px;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.sobreProfileImg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.sobreProfileImg:hover img {
  transform: scale(1.05);
}

.sobreProfileInfo h2 {
  color: #24231f;
  font-size: 1.75rem;
  margin-bottom: 0.5rem;
}

.sobreProfileInfo .subtitle {
  color: #7ea8c9;
  font-size: 1.1rem;
  font-weight: bold;
  margin-bottom: 1rem;
}

.sobreProfileInfo p {
  color: #555;
  font-size: 1.05rem;
  line-height: 1.8;
  text-align: justify;
  margin-bottom: 1rem;
}

.sobreContent h2 {
  color: #24231f;
  font-size: 1.5rem;
  margin: 2rem 0 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid #7ea8c9;
}

.sobreContent h3 {
  color: #7ea8c9;
  font-size: 1.25rem;
  margin: 1.5rem 0 0.75rem;
}

.sobreContent p {
  color: #555;
  font-size: 1.05rem;
  line-height: 1.8;
  text-align: justify;
  margin-bottom: 1rem;
}

.sobreContent blockquote {
  background: rgba(126, 168, 201, 0.1);
  border-left: 4px solid #7ea8c9;
  padding: 1.5rem;
  margin: 1.5rem 0;
  border-radius: 0 0.75rem 0.75rem 0;
  font-style: italic;
  color: #444;
}

.sobreContent ul {
  margin: 1rem 0 1rem 1.5rem;
  color: #555;
}

.sobreContent ul li {
  margin-bottom: 0.5rem;
  line-height: 1.6;
}

.sobreLanguages {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
}

.sobreLanguages span {
  background: #7ea8c9;
  color: white;
  padding: 0.4rem 1rem;
  border-radius: 2rem;
  font-size: 0.9rem;
  font-weight: bold;
}

.sobreExclamation {
  text-align: center;
  font-size: 1.25rem;
  color: #7ea8c9;
  font-weight: bold;
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid #eee;
}

.faqList {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faqItem {
  background: white;
  border-radius: 1rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.faqQuestion {
  padding: 1.25rem 1.5rem;
  background: #f8f9fa;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s ease;
}

.faqQuestion:hover {
  background: rgba(126, 168, 201, 0.1);
}

.faqQuestion h3 {
  color: #24231f;
  font-size: 1.1rem;
  margin: 0;
  flex: 1;
}

.faqQuestion i {
  color: #7ea8c9;
  transition: transform 0.3s ease;
}

.faqItem.open .faqQuestion i {
  transform: rotate(180deg);
}

.faqAnswer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faqItem.open .faqAnswer {
  max-height: 1000px;
}

.faqAnswer p {
  padding: 1.5rem;
  color: #555;
  font-size: 1rem;
  line-height: 1.7;
  text-align: justify;
  margin: 0;
}

.sobreVolverBtn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #7ea8c9;
  text-decoration: none;
  font-weight: bold;
  font-size: 1rem;
  padding: 0.75rem 1.5rem;
  background: white;
  border-radius: 0.75rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  margin-bottom: 2rem;
}

.sobreVolverBtn:hover {
  background: #24231f;
  color: white;
  transform: translateX(-4px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

@media (max-width: 768px) {
  .sobreHero {
    padding: 3rem 1.5rem;
  }

  .sobreHeroContent h1 {
    font-size: 2rem;
  }

  .sobreHeroContent p {
    font-size: 1rem;
  }

  .sobreContainer {
    padding: 0 1rem;
  }

  .sobreCard {
    padding: 1.5rem;
  }

  .sobreProfile {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .sobreProfileImg {
    width: 200px;
    height: 250px;
  }

  .sobreProfileInfo h2 {
    font-size: 1.5rem;
  }

  .sobreProfileInfo p {
    text-align: justify;
  }

  .sobreContent h2 {
    font-size: 1.3rem;
  }

  .sobreContent p {
    font-size: 1rem;
  }

  .faqQuestion h3 {
    font-size: 1rem;
  }
}

/* Santos Grid */
.santosGrid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin: 1.5rem 0;
}

.santoCard {
  background: rgba(126, 168, 201, 0.08);
  border-radius: 1rem;
  padding: 1.5rem;
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid rgba(126, 168, 201, 0.2);
}

.santoCard:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border-color: #7ea8c9;
}

.santoCard i {
  font-size: 2rem;
  color: #7ea8c9;
  margin-bottom: 1rem;
}

.santoCard h4 {
  color: #24231f;
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.santoCard p {
  color: #666;
  font-size: 0.95rem;
  line-height: 1.5;
  text-align: center;
  margin: 0;
}

.santosLista {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
}

.santosLista li {
  padding: 0.75rem 1rem;
  background: rgba(126, 168, 201, 0.05);
  border-left: 3px solid #7ea8c9;
  margin-bottom: 0.75rem;
  border-radius: 0 0.5rem 0.5rem 0;
}

.autor {
  text-align: center;
  color: #7ea8c9;
  font-size: 1.1rem;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid #eee;
}

/* Historia Destaque */
.historiaDestaque {
  background: linear-gradient(135deg, rgba(126, 168, 201, 0.15) 0%, rgba(126, 168, 201, 0.05) 100%);
  border-radius: 1rem;
  padding: 2rem;
  text-align: center;
  margin: 1.5rem 0;
  border: 1px solid rgba(126, 168, 201, 0.3);
}

.historiaDestaque i {
  font-size: 3rem;
  color: #7ea8c9;
  margin-bottom: 1rem;
}

.historiaDestaque p {
  font-size: 1.1rem;
  text-align: center;
  color: #444;
  margin: 0;
}

/* Figuras Grid */
.figurasGrid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin: 1.5rem 0;
}

.figuraCard {
  background: white;
  border-radius: 1rem;
  padding: 1.5rem;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border: 1px solid #eee;
}

.figuraCard:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.figuraCard i {
  font-size: 2.5rem;
  color: #24231f;
  margin-bottom: 1rem;
}

.figuraCard h4 {
  color: #24231f;
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.figuraCard p {
  color: #666;
  font-size: 0.95rem;
  line-height: 1.5;
  text-align: center;
  margin: 0;
}

@media (max-width: 768px) {
  .santosGrid,
  .figurasGrid {
    grid-template-columns: 1fr;
  }

  .santoCard,
  .figuraCard {
    padding: 1.25rem;
  }

  .historiaDestaque {
    padding: 1.5rem;
  }

  .historiaDestaque i {
    font-size: 2rem;
  }
}

@media (max-width: 480px) {
  .sobreHeroContent h1 {
    font-size: 1.75rem;
  }

  .sobreProfileImg {
    width: 180px;
    height: 220px;
  }

  .santoCard h4,
  .figuraCard h4 {
    font-size: 1rem;
  }

  .santoCard p,
  .figuraCard p {
    font-size: 0.9rem;
  }
}
