/* FDS Elementor Tabs - Estilos principales */
.fds-tabs-widget {
  background: #fff;
  border-radius: 12px;
  /*box-shadow: 0 2px 8px rgba(0,0,0,0.03);
  padding: 32px 24px; */
  margin-bottom: 32px;
}
.fds-tabs-nav {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  align-items: stretch;
  width: 100%;
  max-width: 980px;
  margin: 0 auto;
}
.fds-tab-btn {
  background: #fff;
  border: 0;
  padding: 18px 20px 16px;
  font-size: 18px;
  font-weight: 500;
  color: #222;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  outline: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-align: center;
  width: 100%;
  min-height: 128px;
}
.fds-tab-btn.active,
.fds-tab-btn:hover {
  background: #f7f7f7;
  color: #0a2a7c;
  font-weight: 700;
  background-image: linear-gradient(to bottom, #FDC82F, #FDC82F);
  background-size: 6px 80%; /* Ancho (grosor) y Alto (longitud) del borde */
  background-position: left top; /* Ubicación del borde */
  background-repeat: no-repeat;
  padding-left: 20px; 
}
.fds-tab-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 28px;
  min-height: 28px;
  font-size: 20px;
  font-weight: 700;
  color: #0a2a7c;
  margin-right: 0;
}
.fds-tab-title {
  font-family: 'Aleo', serif;
  font-size: 32px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0;
  text-align: center;
  color: #002395;
  max-width: 220px;
}
.fds-tab-icon {
  display: block;
  width: 50px;
  height: 50px;
  object-fit: contain;
}
.fds-tabs-content {
  background: #fff;
  border-radius: 0 0 12px 12px;
  /* box-shadow: 0 2px 8px rgba(0,0,0,0.03); */
  width: 100%;
  max-width: 1440px;
  margin-left: auto;
  margin-right: auto;
  /* padding: 0px 24px; */
  overflow-x: hidden;
}

/* En tabs ocultas, Elementor puede calcular mal secciones stretched hasta resize. */
.fds-tab-content .elementor-section.elementor-section-stretched,
.fds-tab-content .elementor-element.elementor-section.elementor-section-stretched {
  width: 100% !important;
  max-width: 100% !important;
  left: auto !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
}
.fds-tab-content {
  display: none;
}
.fds-tab-content.active {
  display: block;
  animation: fadeIn 0.4s;
}

.lista-amplia ul {
  list-style: none; /* quitar el punto */
  padding-left: 0;
}

.lista-amplia ul li::before {
  display: inline-block;
  content: ""; /* contenido vacío para el pseudo-elemento */
  width: 24px;
  height: 24px;
  background: url(../images/done.svg) no-repeat center center;
  background-size: contain;
  color: green; /* opcional */
  margin-right: 24px;
}


.lista-amplia li{
  display: flex;
  align-items: center;
  line-height: 3.2;
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@media (max-width: 1024px) {
  .lista-amplia li{
    align-items: flex-start;
    line-height: 1.8;
  }

  .fds-tab-btn.active,
  .fds-tab-btn:hover {
    background-size: 6px 100%;
  }
}

@media (max-width: 768px) {
  .fds-tabs-nav {
    grid-template-columns: 1fr;
    max-width: 100%;
  }

  .fds-tab-btn {
    min-height: 112px;
    border-radius: 16px;
  }

  .fds-tab-title {
    font-size: 24px;
    max-width: 100%;
  }
}
