/* ====== 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 **/
/* Contenedor principal */
.admision {
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin: 40px auto;
  max-width: 1000px;
}

/* Bloques */
.admision__block {
  background: #fff;
  border-radius: 12px;
  padding: 25px 30px;
  box-shadow: 0 6px 12px rgba(0,0,0,0.08);
  flex: 1;
}

.admision__block h2 {
  font-size: 1.4rem;
  margin-bottom: 15px;
  color: #800000;
}

.admision__block p {
  font-size: 1rem;
  line-height: 1.6;
  color: #333;
}

/* Requisitos en lista */
.admision__block ul {
  list-style: none;
  padding-left: 0;
}

.admision__block ul li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 10px;
  font-size: 1rem;
  color: #444;
}

.admision__block ul li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #800000;
  font-weight: bold;
}

/* Row de 2 columnas */
.admision__row {
  display: flex;
  gap: 20px;
}

/* Destacado */
.admision__highlight {
  background: #fff4f4;
  border: 1px solid #80000033;
  text-align: center;
}

.admision__highlight h2 {
  font-size: 1.6rem;
}

.admision__highlight .btn-guinda {
  display: inline-block;
  background: #800000;
  color: #fff;
  padding: 10px 20px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  margin: 15px 0;
  transition: background 0.3s ease;
}

.admision__highlight .btn-guinda:hover {
  background: #a00000;
}

.admision__highlight .fecha {
  margin-top: 10px;
  font-size: 1.1rem;
  color: #222;
}

/* Contactos */
.contacto {
  margin-top: 15px;
}

.contacto li {
  margin-bottom: 8px;
  font-size: 1rem;
}

/* Responsivo */
@media (max-width: 768px) {
  .admision__row {
    flex-direction: column;
  }
}


/* ENLACE DE FB */
.admision__block a {
  color: #0066cc;        /* Azul */
  text-decoration: underline; /* Subrayado */
  font-weight: 600;
}

.admision__block a:hover {
  color: #004999;        /* Azul más oscuro al pasar el mouse */
}
