/* ====== 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 */
.presentacion {
  padding: 50px 20px;
  font-family: 'Inter', sans-serif;
}

.presentacion__contenido {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 30px;
  max-width: 1100px;
  margin: 0 auto;
}

.presentacion__texto {
  flex: 1;
  text-align: justify;
  line-height: 1.7;
}

.presentacion__texto h2 {
  font-size: 1.6rem;
  margin-bottom: 15px;
  color: #800000;
}

.presentacion__imagen {
  flex: 1;
  text-align: center;
}

.presentacion__imagen img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

/* Responsivo */
@media (max-width: 768px) {
  .presentacion__contenido {
    flex-direction: column;
    text-align: center;
  }

  .presentacion__texto {
    text-align: justify;
  }
}

.presentacion__texto ul {
  margin: 1rem 0;
  padding-left: 1.5rem;   /* sangría para separar de los párrafos */
  list-style: none;       /* quitamos viñetas por defecto */
}

.presentacion__texto ul li {
  position: relative;
  margin-bottom: 0.6rem;
  padding-left: 1.5rem;   /* espacio para el icono */
  font-size: 1rem;
  line-height: 1.6;
  text-align: justify;
  color: #333;
  font-family: 'Inter', sans-serif;
}

/* Icono personalizado en lugar de viñetas */
.presentacion__texto ul li::before {
  content: "\f0da"; /* ícono flecha de Font Awesome (fa-angle-right) */
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  position: absolute;
  left: 0;
  top: 0;
  color: #800000;   /* guinda */
}
