.elementor-7036 .elementor-element.elementor-element-548cd815 > .elementor-container > .elementor-column > .elementor-widget-wrap{align-content:flex-start;align-items:flex-start;}.elementor-7036 .elementor-element.elementor-element-548cd815{margin-top:0px;margin-bottom:100px;}/* Start custom CSS for html, class: .elementor-element-bd649c4 *//* CONTENEDOR GENERAL */
.talleres-page {
  max-width: 1100px;
  margin: 0 auto;
  padding: 4rem 1.5rem 5rem;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

/* TITULARES PRINCIPALES */
.talleres-hero h1 {
  text-align: center;
  font-size: clamp(2.7rem, 3.4vw, 3.3rem); /* un poco más grande */
  margin-bottom: 1.3rem;
  font-weight: 800;            /* más grueso */
  letter-spacing: 0.03em;      /* un pelín más de aire en las letras */
  color: #111111;              /* más oscuro para que destaque */
}
,
.talleres-bloque h2,
.talleres-cta-final h2 {
  text-align: center;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.talleres-hero h1 {
  font-size: clamp(2.4rem, 3vw, 3rem);
  margin-bottom: 1rem;
}

.talleres-bloque h2 {
  font-size: clamp(2rem, 2.5vw, 2.4rem);
  margin-bottom: 0.75rem;
}

.talleres-hero p,
.talleres-bloque > p,
.talleres-intro p {
  max-width: 800px;
  margin: 0.5rem auto 0;
  text-align: center;
  line-height: 1.6;
  color: #444;
}

/* INTRO LISTA */
.talleres-intro {
  margin: 2rem auto 3rem;
}
.talleres-intro ul {
  max-width: 700px;
  margin: 1rem auto;
  padding-left: 1.2rem;
  color: #444;
}
.talleres-intro li {
  margin-bottom: 0.25rem;
}

/* BLOQUES */
.talleres-bloque {
  margin: 3rem 0;
}

/* GRID TARJETAS */
.talleres-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 2.5rem;
  margin-top: 2rem;
}

/* TARJETAS DE TALLER */
.taller-card {
  flex: 1 1 min(100%, 32rem);
  background: #ffffff;
  border-radius: 24px;
  padding: 1.75rem 1.8rem 2rem;
  box-shadow: 0 18px 38px rgba(0,0,0,0.06);
  position: relative;
  overflow: hidden;
}

/* Borde superior suave tipo “banda” */
.taller-card::before {
  content: "";
  position: absolute;
  inset: 0;
  height: 10px;
  background: linear-gradient(90deg, #ff4b9a, #ffb347, #65d5ff);
  opacity: 0.9;
}

/* CABECERA DE CADA TALLER */
.taller-card-header {
  text-align: center;
  margin-bottom: 1.4rem;
  margin-top: 0.4rem; /* para que el texto no pegue al borde */
}

.taller-label {
  display: inline-block;
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #ff4b9a;
  background: #ffe6f2;
  padding: 0.25rem 0.9rem;
  border-radius: 999px;
  margin-bottom: 0.5rem;
}

.taller-card h3 {
  font-size: 1.35rem;
  font-weight: 700;
  margin: 0;
}

/* TEXTOS INTERIORES */
.taller-tagline {
  font-weight: 600;
  color: #d63a7f;
  margin-bottom: 0.8rem;
}

.taller-card p {
  color: #444;
  line-height: 1.6;
  margin-bottom: 0.75rem;
}

.taller-card ul {
  margin: 0.75rem 0 1.3rem;
  padding-left: 1.1rem;
  color: #444;
}
.taller-card li {
  margin-bottom: 0.3rem;
}

/* BOTONES */
.btn-taller {
  display: inline-block;
  padding: 0.75rem 1.6rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  border: none;
  cursor: pointer;
  background: #ff3b8c;
  color: #fff;
  box-shadow: 0 12px 24px rgba(255, 59, 140, 0.35);
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

.btn-taller:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 32px rgba(255, 59, 140, 0.45);
  background: #ff1f7b;
}

/* Botón destacado de la CTA final */
.btn-taller-destacado {
  padding-inline: 2.4rem;
}

/* CTA FINAL */
.talleres-cta-final {
  margin-top: 3.5rem;
  padding: 2.5rem 1.5rem;
  border-radius: 30px;
  background: linear-gradient(135deg, rgba(255, 75, 154, 0.07), rgba(101, 213, 255, 0.12));
  text-align: center;
}
.talleres-cta-final p {
  max-width: 760px;
  margin: 0.75rem auto 1.4rem;
  color: #444;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .talleres-page {
    padding-inline: 1rem;
  }
  .taller-card {
    padding-inline: 1.4rem;
  }
}
.talleres-hero h1 span {
  color: #ff3b8c; /* por si algún día quisieras resaltar una palabra concreta */
}
/* Que toda la intro funcione como bloque centrado */
.talleres-intro {
  text-align: center;
}

/* Mantener los párrafos centrados y con buen ancho */
.talleres-intro p {
  max-width: 800px;
  margin: 0.5rem auto;
}

/* Hacer que la lista se vea centrada pero el texto de los puntos quede alineado a la izquierda */
.talleres-intro ul {
  display: inline-block;   /* la lista se “encoge” al contenido */
  text-align: left;        /* pero el texto interior sigue alineado a la izquierda */
  max-width: 450px;
  margin: 1rem auto 1.5rem;
  padding-left: 1.2rem;
}
/* Centrar TODOS los títulos de secciones principales */
.talleres-hero h1,
.talleres-hero h2,
.talleres-seccion h2 {
  text-align: center !important;
}

/* Asegurar centrado del texto introductorio bajo cada título */
.talleres-seccion p {
  text-align: center;
  max-width: 750px;
  margin: 0 auto 1.2rem;
}
/* Fondo artístico para la zona superior */
.talleres-hero {
  background: linear-gradient(
    135deg,
    rgba(255, 182, 193, 0.35),
    rgba(173, 216, 230, 0.35),
    rgba(255, 228, 181, 0.35)
  );
  padding-top: 4rem;
  padding-bottom: 3rem;
  border-radius: 0 0 60px 60px;
}
.taller-card {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(6px);
}
/* Fuerza el centrado de todos los títulos de sección de talleres, sin excepciones */
.talleres-hero h1,
.talleres-hero h2,
.talleres-seccion h1,
.talleres-seccion h2,
.talleres-influenser h2,
.talleres-creativos h2 {
    text-align: center !important;
    width: 100% !important;
    margin-left: auto !important;
    margin-right: auto !important;
    display: block !important;
}

/* Asegurar que los párrafos introductorios también queden centrados */
.talleres-hero p,
.talleres-seccion p,
.talleres-influenser p,
.talleres-creativos p {
    text-align: center !important;
    max-width: 750px;
    margin-left: auto !important;
    margin-right: auto !important;
}
/* Fondo suave general de la página de talleres */
.talleres-page.influenser-bg {
  max-width: 1100px;
  margin: 0 auto 80px auto;
  padding: 40px 20px 60px;
  background: radial-gradient(circle at top left, #ffe4f4 0, #fff 40%, #f6fbff 100%);
}

/* Intro general */
.talleres-intro {
  text-align: center;
  margin-bottom: 60px;
}

.talleres-intro h1 {
  font-size: 2.6rem;
  margin-bottom: 16px;
}

.talleres-intro .intro-lead {
  font-size: 1.1rem;
  max-width: 800px;
  margin: 0 auto 18px;
}

.talleres-intro .intro-text {
  max-width: 780px;
  margin: 0 auto 12px;
}

.talleres-intro .intro-list {
  list-style: disc;
  max-width: 600px;
  margin: 10px auto 20px;
  text-align: left;
}

/* Bloques de talleres */
.talleres-bloque {
  margin-bottom: 70px;
}

.talleres-subtitle {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 10px;
}

.talleres-subtext {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 30px;
}

/* Tarjetas de taller en dos columnas */
.taller-card {
  margin-bottom: 40px;
}

.taller-card-inner {
  display: flex;
  align-items: stretch;
  gap: 40px;
  padding: 28px 28px 32px;
  border-radius: 28px;
  background: linear-gradient(135deg, #ffe3f0 0, #fef7ff 35%, #f6fbff 100%);
  box-shadow: 0 18px 35px rgba(0, 0, 0, 0.05);
}

.taller-card-reverse {
  flex-direction: row-reverse;
}

.taller-img {
  flex: 1 1 40%;
}

.taller-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 24px;
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.08);
}

.taller-content {
  flex: 1 1 60%;
}

.taller-pill {
  display: inline-block;
  padding: 4px 14px;
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  border-radius: 999px;
  background: linear-gradient(90deg, #ff4e9a, #ffb347);
  color: #fff;
  margin-bottom: 10px;
}

.taller-content h3 {
  font-size: 1.6rem;
  margin-bottom: 8px;
}

.taller-frase {
  font-weight: 600;
  margin-bottom: 10px;
}

.taller-content ul {
  padding-left: 18px;
  margin-bottom: 16px;
}

/* Botón de WhatsApp / info */
.btn-taller {
  display: inline-block;
  padding: 10px 26px;
  border-radius: 999px;
  background: #ff2f86;
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 10px 22px rgba(255, 47, 134, 0.35);
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

.btn-taller:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 26px rgba(255, 47, 134, 0.4);
  background: #ff1473;
}

/* Cierre */
.talleres-cta-final {
  text-align: center;
  margin-top: 20px;
  font-size: 0.98rem;
}

.talleres-cta-final a {
  color: #ff2f86;
  font-weight: 600;
}

/* RESPONSIVE */
@media (max-width: 900px) {

  .talleres-page.influenser-bg {
    padding: 30px 16px 40px;
  }

  .taller-card-inner,
  .taller-card-reverse {
    flex-direction: column;
  }

  .taller-card-inner {
    gap: 20px;
  }
}/* End custom CSS */