.elementor-4331 .elementor-element.elementor-element-afdd776{--display:flex;--min-height:0px;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.elementor-4331 .elementor-element.elementor-element-dafb8b1{width:var( --container-widget-width, 99.59% );max-width:99.59%;--container-widget-width:99.59%;--container-widget-flex-grow:0;}.elementor-4331 .elementor-element.elementor-element-dafb8b1.elementor-element{--flex-grow:0;--flex-shrink:0;}:root{--page-title-display:none;}/* Start custom CSS for html, class: .elementor-element-dafb8b1 */.banner-bienvenida {
  position: relative;
  width: 100%;
  min-height: 65vh;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: 'Segoe UI', sans-serif;
  overflow: hidden;
  background: linear-gradient(135deg, #2a73cc, #6fd1ff);
  color: #fff;
  padding: 40px 20px;
}

/* Canvas ocupa todo el fondo */
#bannerCanvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.banner-content {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap; /* en móvil baja la imagen */
  max-width: 1100px;
  margin: 0 auto;
}

.banner-texto {
  flex: 1;
  min-width: 280px;
}

.banner-imagen {
  flex: 1;
  min-width: 280px;
  text-align: center;
}

.banner-imagen img {
  max-width: 100%;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.25);
}

/* Texto */
.banner-title {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 15px;
}

.banner-subtitle {
  font-size: 18px;
  margin-bottom: 15px;
  line-height: 1.6;
}

.banner-proposito {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 12px;
}

.banner-frase {
  font-size: 16px;
  font-style: italic;
  opacity: 0.9;
}

/* Animación de entrada */
.fade-in {
  opacity: 0;
  transform: translateY(25px);
  transition: all 1s ease;
}

.fade-in.show {
  opacity: 1;
  transform: translateY(0);
}/* End custom CSS */