/* Reset básico */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

/* Cabecera */
.headbanner {
  position: relative;
  min-height: 350px;
  background: url('../img/head_talleres.jpg') center/cover no-repeat;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.head-overlay {
  background: rgba(255, 255, 255, 0.4); /* sutil capa encima de la imagen */
  padding: 20px;
  border-radius: 12px;
}

.headbanner {
  position: relative;
  min-height: 350px;
  background: url('../img/head_talleres.jpg') center/cover no-repeat;
  display: flex;
  /*align-items: center;   /* verticalmente centrado */
  text-align: left;      /* alinea textos a la izquierda */
  padding-left: 20px;    /* espacio desde el borde izquierdo */
}

.head-overlay {
  background: rgba(255, 255, 255, 0.4);
  padding: 20px;
  border-radius: 12px;
  max-width: 700px;      /* evita que ocupe todo el ancho */
}


.headbanner h2 {
  color: white;
  font-size: 2rem;
  margin-bottom: 20px;
}

.headbanner h3.subtitulo {
  color: white;
  font-size: 1.2rem;
  margin-bottom: 15px;
}

.btn-inscripcion {
  background: #fecd06;
  border: none;
  border-radius: 50px;
  padding: 15px;
  width: 100%;
  /*max-width: 400px;*/
  font-size: 1rem;
  color: #071726;
  cursor: pointer;
  font-weight: bold;
}


.btn-inscripcion {
  background: #fecd06;
  border: none;
  border-radius: 30px;
  padding: 15px;
  width: 80%;
  /*max-width: 400px;*/
  font-size: 1rem;
  color: #071726;
  cursor: pointer;
  font-weight: bold;
}


/* Sección descripción */
.descripcion-taller {
  display: flex;
  gap: 20px;
  background: rgba(173, 216, 230, 0.4); /* celeste transparente */
  padding: 40px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Columna Ficha */
.ficha-taller {
  flex: 1;
  min-width: 250px;
  max-width: 300px;
  background: #f0f0f0; /* gris suave */
  padding: 20px;
  border-radius: 15px;
  color: #004080;
}

/* Columna Detalle */
.detalle-taller {
  flex: 2;
  min-width: 300px;
  background: #fafafa; /* blanco suave */
  padding: 20px;
  border-radius: 15px;
  color: #004080;
}

.detalle-taller p {
  text-align: justify;
  line-height: 1.6;
  padding-left:40px;
  padding-right:25px;
  margin-bottom: 2em; /* similar a 2 saltos de línea */
}




/* Titulares internos */
.ficha-taller h3,
.detalle-taller h3 {
  margin-bottom: 15px;
}
