/* Contact page (theme-aware) */

.contact-hero {
  background: linear-gradient(rgba(10, 132, 255, 0.65), rgba(10, 132, 255, 0.65)),
    url("../assets/contact-background.jpg") no-repeat center center;
  background-size: cover;
  color: white;
  padding: 80px 0;
  text-align: center;
  margin-bottom: 40px;
  border-radius: 12px;
  backdrop-filter: saturate(180%) blur(6px);
}

.contact-hero h1 { font-size: 3.5rem; font-weight: 700; margin-bottom: 15px; }
.contact-hero p { font-size: 1.4rem; max-width: 800px; margin: 0 auto 30px auto; }

.info-card {
  background: var(--card-bg-light);
  border: 1px solid var(--border-light);
  border-radius: 12px;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.08);
  padding: 30px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}
.info-card:hover { transform: translateY(-5px); box-shadow: 0 0.75rem 1.5rem rgba(0, 0, 0, 0.12); }
.info-card i { font-size: 3.5rem; color: var(--primary-color); margin-bottom: 20px; display: block; text-align: center; }
.info-card h4 { font-size: 1.8rem; margin-bottom: 15px; color: var(--text-light); text-align: center; }
.info-card p { font-size: 1.1rem; color: var(--secondary-color); text-align: center; }

.donation-section {
  background-color: var(--card-bg-light);
  border: 1px solid var(--border-light);
  border-radius: 12px;
  padding: 40px;
  margin-top: 40px;
  text-align: center;
  box-shadow: 0 0.25rem 0.75rem rgba(0, 0, 0, 0.05);
}
.donation-section h3 { color: var(--success-color); font-size: 2rem; margin-bottom: 20px; }
.donation-section .pix-info { font-size: 1.3rem; font-weight: bold; color: var(--text-light); margin-bottom: 20px; }


