.elementor-4934 .elementor-element.elementor-element-c21a738{--display:flex;--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-4934 .elementor-element.elementor-element-2ac943b{margin:0px 0px calc(var(--kit-widget-spacing, 0px) + 0px) 0px;padding:0px 0px 0px 0px;}.elementor-4934 .elementor-element.elementor-element-f056975{--display:flex;--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;}.elementor-4934 .elementor-element.elementor-element-7e60ec3{--display:flex;--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;}.elementor-4934 .elementor-element.elementor-element-4e4889b{--display:flex;--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;}.elementor-4934 .elementor-element.elementor-element-8e44142{--display:flex;--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;}:root{--page-title-display:none;}/* Start custom CSS for html, class: .elementor-element-2ac943b *//* ======== CONTENEDOR PRINCIPAL ======== */
.welcome-banner.fondo-efecto-ondas {
  background: linear-gradient(135deg, #00c6ff, #0072ff);
  min-height: 50vh;   /* más compacto */
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #fff;
  padding: 20px 10px; /* mucho menos padding */
  position: relative;
  overflow: hidden;
  z-index: 1;
}

/* ======== TITULO ======== */
.welcome-banner h1 {
  font-family: 'Poppins', sans-serif;
  font-size: 2.6rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: #ffffff; /* amarillo */
  line-height: 1.2;
  position: relative;
  z-index: 2;
}

/* ======== PÁRRAFO ======== */
.welcome-banner p {
  font-family: 'Comic Neue', cursive;
  font-size: 1.2rem;
  max-width: 600px;
  margin: 0 auto;
  font-weight: 400;
  line-height: 1.5;
  color: #ffffff;
  position: relative;
  z-index: 2;
}

/* ======== RESPONSIVE ======== */
@media (max-width: 768px) {
  .welcome-banner.fondo-efecto-ondas {
    min-height: 30vh;  /* también más compacto en móvil */
    padding: 15px 10px;
  }

  .welcome-banner h1 {
    font-size: 2rem; /* equilibrado en pantallas pequeñas */
  }

  .welcome-banner p {
    font-size: 1.1rem;
    line-height: 1.5;
  }
}/* End custom CSS */
/* Start custom CSS for shortcode, class: .elementor-element-4e4007a *//* ==== Layout general ==== */
.resources-wrapper,
.resources-container {
  padding: 10px;
  text-align: center; /* centra textos en la sección */
}
.resources-header h2 {
  font-size: 24px;
  margin-bottom: 20px;
  color: #1a1a2e;
  text-align: center; /* título centrado */
}
.resources-grid {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center; /* centra las cards en el grid */
}
.resource-card {
  background: #fff;
  border-radius: 10px;
  padding: 20px;
  width: 280px;
  box-shadow: 0 3px 8px rgba(0,0,0,0.1);
  text-align: center; /* centra contenido dentro de la card */
  transition: transform 0.3s ease, opacity 0.6s ease;
  opacity: 0;
  transform: translateY(20px);
}
.resource-card.visible {
  opacity: 1;
  transform: translateY(0);
}
.resource-card:hover {
  transform: translateY(-5px);
}
.resource-card .icon {
  font-size: 40px;
  color: #1a1a2e;
  margin-bottom: 15px;
}
.resource-card h3 {
  font-size: 18px;
  margin-bottom: 10px;
  color: #1a1a2e;
}
.resource-card p {
  font-size: 14px;
  color: #555;
  margin-bottom: 15px;
}
.resource-card a,
.resource-card button {
  display: inline-block;
  padding: 8px 14px;
  background: #1a1a2e;
  color: #fff;
  border-radius: 6px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  margin: 0 auto; /* centra los botones */
}
.resource-card a:hover,
.resource-card button:hover {
  background: #111827;
}

/* ==== Modal ==== */
.modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0; top: 0;
  width: 100%; height: 100%;
  background: rgba(26,26,46,0.85);
  justify-content: center;
  align-items: center;
}
.modal-content {
  background: #fff;
  padding: 20px;
  border-radius: 10px;
  max-width: 700px;
  width: 90%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 6px 16px rgba(0,0,0,0.2);
  animation: fadeIn 0.4s ease;
  border-top: 5px solid #1a1a2e;
  text-align: center; /* centra contenido del modal */
}
.modal .close {
  float: right;
  font-size: 22px;
  font-weight: bold;
  cursor: pointer;
  color: #1a1a2e;
}
.modal .close:hover { color: #111827; }

@keyframes fadeIn {
  from {opacity: 0; transform: scale(0.9);}
  to {opacity: 1; transform: scale(1);}
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-fa3d700 */.testimonials-wrapper {
  text-align: center;
  padding: 40px 20px;
  background: #f8f8f8;
}

.testimonials-title {
  font-size: 2rem;
  margin-bottom: 30px;
  color: #333;
}

.testimonial-card {
  background: #fff;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  text-align: left;
  font-size: 1rem;
  line-height: 1.5;
  height: 100%;
}

.testimonial-card p {
  margin: 0;
}

.testimonial-author {
  margin-top: 15px;
  font-weight: bold;
}

.testimonial-author small {
  display: block;
  font-weight: normal;
  color: #666;
  font-size: 0.9em;
}

/* Ajustes responsivos */
@media (max-width: 768px) {
  .testimonials-title {
    font-size: 1.5rem;
  }
  .testimonial-card {
    font-size: 0.95rem;
    padding: 18px;
  }
}/* End custom CSS */