/* ====== 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;
}


/** CONTENIDO **/

/* ===== Estilos generales ===== */
.acc__presentacion {
  text-align: justify;
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 2rem;
}

.acc__presentacion h2 {
  color: #800000;
  margin-bottom: 1rem;
}

.acc__boton {
  margin-top: 1.5rem;
  text-align: center;
}

.acc__boton button {
  background: #800000;
  color: #fff;
  padding: 0.8rem 1.5rem;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 600;
  transition: background 0.3s ease;
}

.acc__boton button:hover {
  background: #a00000;
}

/* ===== Modal ===== */
.modal {
  display: none;
  position: fixed;
  z-index: 2000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.6);
  justify-content: center;
  align-items: center;
}

.modal__content {
  background: #fff;
  width: 90%;
  max-width: 900px;
  height: 80%;
  position: relative;
  border-radius: 10px;
  padding: 1rem;
  display: flex;
  flex-direction: column;
}

.modal__close {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 1.8rem;
  cursor: pointer;
  color: #333;
}

.modal__content iframe {
  flex: 1;
  width: 100%;
  border: none;
}

.modal__content p {
  text-align: center;
  font-weight: 600;
  padding: 20px;
  color: #800000;
}

p {
  margin-bottom: 15px; /* separa los párrafos */
  line-height: 1.6;    /* mejora la lectura */
}
