/* Ayuda Styles - Identidade visual do site */

.ayudaSection {
  width: 100%;
  padding: 3rem 0;
  display: flex;
  justify-content: center;
  background-color: #7ea8c9;
}

.ayudaContainer {
  max-width: 1200px;
  width: 100%;
  padding: 0 2rem;
}

/* Main Layout */
.ayudaWrapper {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

/* Main Card */
.ayudaMainCard {
  background: white;
  border-radius: 1.5rem;
  padding: 2rem;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

/* Quote Section */
.ayudaQuote {
  background: linear-gradient(135deg, #24231f 0%, #3a3935 100%);
  border-radius: 1rem;
  padding: 1.5rem 2rem;
  margin-bottom: 2rem;
  position: relative;
}

.ayudaQuote i {
  color: #7ea8c9;
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  display: block;
}

.ayudaQuote p {
  color: white;
  font-size: 1.1rem;
  font-style: italic;
  line-height: 1.7;
  margin: 0;
}

.ayudaCita {
  display: block;
  color: #7ea8c9;
  font-size: 0.95rem;
  font-weight: bold;
  margin-top: 0.75rem;
  text-align: right;
}

/* Content */
.ayudaContent h2 {
  color: #24231f;
  font-size: 1.4rem;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid #7ea8c9;
}

.ayudaContent h2 i {
  color: #7ea8c9;
}

.ayudaContent p {
  color: #555;
  font-size: 1.05rem;
  line-height: 1.8;
  text-align: justify;
  margin-bottom: 1rem;
}

.ayudaContent p:last-child {
  margin-bottom: 0;
}

/* Sidebar */
.ayudaSidebar {
  display: flex;
  flex-direction: column;
}

.ayudaHelpCard {
  background: white;
  border-radius: 1.5rem;
  padding: 2rem;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
  text-align: center;
  height: fit-content;
}

.ayudaHelpIcon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #24231f 0%, #3a3935 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

.ayudaHelpIcon i {
  font-size: 2rem;
  color: white;
}

.ayudaHelpCard h3 {
  color: #24231f;
  font-size: 1.3rem;
  margin-bottom: 1rem;
}

.ayudaHelpCard > p {
  color: #555;
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

/* Options List */
.ayudaOptions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.ayudaOption {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  background: #f8f9fa;
  border-radius: 0.75rem;
  transition: all 0.3s ease;
}

.ayudaOption:hover {
  background: rgba(126, 168, 201, 0.15);
  transform: translateX(5px);
}

.ayudaOption i {
  color: #24231f;
  width: 20px;
  text-align: center;
}

.ayudaOption span {
  color: #555;
  font-size: 0.9rem;
  font-weight: 500;
}

/* Donate Button */
.ayudaDonateBtn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, #0070ba 0%, #003087 100%);
  color: white;
  padding: 1rem 1.5rem;
  border-radius: 0.75rem;
  text-decoration: none;
  font-size: 1rem;
  font-weight: bold;
  transition: all 0.3s ease;
  width: auto;
  max-width: 100%;
  box-sizing: border-box;
}

.ayudaDonateBtn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 112, 186, 0.4);
}

.ayudaDonateBtn i {
  font-size: 1.2rem;
}

/* Bottom Section */
.ayudaBottomSection {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

/* Verse Card */
.ayudaVerseCard {
  background: white;
  border-radius: 1.5rem;
  padding: 2rem;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.ayudaVerseCard i {
  color: #7ea8c9;
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.ayudaVerseCard p {
  color: #24231f;
  font-size: 1.1rem;
  font-style: italic;
  line-height: 1.7;
  margin: 0;
}

.ayudaVerseCard span {
  color: #7ea8c9;
  font-size: 0.95rem;
  font-weight: bold;
  margin-top: 0.75rem;
}

/* Call to Action */
.ayudaCallToAction {
  background: linear-gradient(135deg, #24231f 0%, #3a3935 100%);
  border-radius: 1.5rem;
  padding: 2.5rem;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
  text-align: center;
}

.ayudaCallToAction h2 {
  color: white;
  font-size: 1.3rem;
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.ayudaCallToAction h2 i {
  color: #7ea8c9;
}

.ayudaCallToAction p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1rem;
  margin-bottom: 1.5rem;
}

.ayudaContactBtn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #7ea8c9;
  color: white;
  padding: 0.875rem 2rem;
  border-radius: 0.75rem;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
}

.ayudaContactBtn:hover {
  background: white;
  color: #24231f;
  transform: translateY(-2px);
}

/* Gallery */
.ayudaGallery {
  background: white;
  border-radius: 1.5rem;
  padding: 2rem;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.ayudaGallery h3 {
  color: #24231f;
  font-size: 1.3rem;
  margin-bottom: 1.5rem;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.ayudaGallery h3 i {
  color: #7ea8c9;
}

.ayudaGalleryGrid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.ayudaGalleryItem {
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.ayudaGalleryItem img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.ayudaGalleryItem:hover img {
  transform: scale(1.05);
}

/* Responsive Design */
@media (max-width: 992px) {
  .ayudaWrapper {
    grid-template-columns: 1fr;
  }

  .ayudaBottomSection {
    grid-template-columns: 1fr;
  }

  .ayudaCallToAction {
    order: -1;
  }
}

@media (max-width: 768px) {
  .ayudaSection {
    padding: 2rem 0;
  }

  .ayudaContainer {
    padding: 0 1rem;
  }

  .ayudaMainCard,
  .ayudaHelpCard,
  .ayudaVerseCard,
  .ayudaCallToAction,
  .ayudaGallery {
    padding: 1.5rem;
  }

  .ayudaQuote {
    padding: 1.25rem 1.5rem;
  }

  .ayudaQuote p {
    font-size: 1rem;
  }

  .ayudaContent h2 {
    font-size: 1.25rem;
  }

  .ayudaContent p {
    font-size: 1rem;
  }

  .ayudaHelpIcon {
    width: 70px;
    height: 70px;
  }

  .ayudaHelpIcon i {
    font-size: 1.75rem;
  }

  .ayudaHelpCard h3 {
    font-size: 1.2rem;
  }

  .ayudaCallToAction h2 {
    font-size: 1.15rem;
  }

  .ayudaGalleryGrid {
    grid-template-columns: 1fr;
  }

  .ayudaGalleryItem img {
    height: 250px;
  }
}

@media (max-width: 480px) {
  .ayudaMainCard,
  .ayudaHelpCard,
  .ayudaVerseCard,
  .ayudaCallToAction,
  .ayudaGallery {
    padding: 1.25rem;
    border-radius: 1rem;
  }

  .ayudaQuote {
    padding: 1rem 1.25rem;
    border-radius: 0.75rem;
  }

  .ayudaQuote i {
    font-size: 1.25rem;
  }

  .ayudaQuote p {
    font-size: 0.95rem;
  }

  .ayudaCita {
    font-size: 0.85rem;
  }

  .ayudaContent h2 {
    font-size: 1.15rem;
  }

  .ayudaContent p {
    font-size: 0.95rem;
  }

  .ayudaHelpIcon {
    width: 60px;
    height: 60px;
  }

  .ayudaHelpIcon i {
    font-size: 1.5rem;
  }

  .ayudaHelpCard h3 {
    font-size: 1.1rem;
  }

  .ayudaOption {
    padding: 0.6rem 0.75rem;
  }

  .ayudaOption span {
    font-size: 0.85rem;
  }

  .ayudaDonateBtn {
    padding: 0.875rem 1.5rem;
    font-size: 1rem;
  }

  .ayudaVerseCard p {
    font-size: 1rem;
  }

  .ayudaCallToAction h2 {
    font-size: 1.05rem;
  }

  .ayudaCallToAction p {
    font-size: 0.9rem;
  }

  .ayudaContactBtn {
    padding: 0.75rem 1.5rem;
    font-size: 0.95rem;
  }

  .ayudaGallery h3 {
    font-size: 1.1rem;
  }

  .ayudaGalleryItem img {
    height: 200px;
  }
}
