/* ====== FRANJA DE SECCIÓN ====== */
.section-banner {
  position: relative;
  background: url("../imagenes/frontis.jpg") no-repeat center center/cover;
  padding: 3rem 1rem;
  border-radius: 12px;
  margin: 2rem auto;
  text-align: center;
  overflow: hidden;
}

/* Degradado superpuesto */
.section-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient( rgba(128,0,0,0.8));
  border-radius: 12px;
}

.section-banner h1 {
  position: relative;
  color: #fff;
  font-size: 2rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  z-index: 1;
}

.section-banner h1 i {
  font-size: 1.8rem;
}

/* ====== TEXTO DE PRESENTACIÓN ====== */
.presentacion__texto {
  text-align: justify;
  line-height: 1.7;
  font-size: 1rem;
  color: #333;
  padding: 1rem;
}

.presentacion__texto h2 {
  font-size: 1.6rem;
  margin-bottom: 1rem;
  font-weight: 700;
  color: #800000;
  text-align: center; /* título centrado */
}

.presentacion__texto p {
  margin-bottom: 1rem;
}

/* Responsive */
@media (max-width: 768px) {
  .section-banner h1 {
    font-size: 1.5rem;
  }

  .presentacion__texto {
    font-size: 0.95rem;
    padding: 0.5rem;
  }
}

.presentacion__imagen {
  display: flex;
  justify-content: center; /* centra horizontalmente */
  margin: 2rem 0;
}

.presentacion__imagen img {
  max-width: 600px;  /* limita el tamaño máximo */
  width: 100%;       /* ocupa todo el ancho disponible hasta 600px */
  height: auto;      /* mantiene proporción */
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}
