section,
.section {
  /* padding: 45px !important; */
}

.main_general {
  padding-top: 120px;
}

@media (max-width: 765px) {
  .main_general {
    padding-top: 200px;
  }
}

@media (max-width: 576px) {
  .main_general {
    padding-top: 200px;
  }
}

.section-title {
  padding-bottom: 10px !important;
}



  .podcast-container-future {
    width: 100%;
    padding: 20px;
    box-sizing: border-box;
    display: flex;
    justify-content: center;
  }

  .podcast-card-future {
    background-color: #F0F7FF;
    color: #0058FF;
    width: 100%;
    max-width: 500px; 
    min-height: 130px;
    height: 130px;
    border-radius: 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 40px;
    gap: 20px;
    box-shadow: 0 20px 40px rgba(0, 88, 255, 0.2);
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
  }

  /* Contenedor del icono con fondo claro */
  .icon-box {
    background-color: var(--light-bg);
    width: 64px;
    height: 64px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }

  .icon-box svg {
    width: 32px;
    height: 32px;
  }

  .content {
    max-width: 500px;
  }

  .status-label {
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.15em;
    color: var(--brand-blue);
    background-color: var(--light-bg);
    padding: 6px 12px;
    border-radius: 8px;
    display: inline-block;
    margin-bottom: 16px;
  }

  .title-podcast-future {
    font-size: 25px;
    margin: 0 0 12px 0;
    font-weight: 700;
    line-height: 1.2;
  }

  

  /* Ajustes para pantallas medianas/grandes (Responsivo) */
  @media (min-width: 600px) {
    .podcast-card-future {
      flex-direction: row; /* Se vuelve horizontal en PC */
      text-align: left;
      padding: 50px;
      justify-content: flex-start;
      gap: 40px;
    }

    .icon-box {
      width: 80px;
      height: 80px;
    }

    .title {
      font-size: 2rem;
    }
  }

/*--------------------------------------------------------------
# service Section
--------------------------------------------------------------*/
.service-card {
  height: 100%;
  padding: 30px;
  background: var(--surface-color);
  border-radius: 10px;
  transition: all 0.3s ease;
}

.sub-card-pharma {
  border: 1.5px solid rgba(22, 85, 255, 0.4);
  background: linear-gradient(145deg, #ffffff, #eef4ff);
  border-radius: 16px;
}

.icon_imgs {
  border-radius: 16px;
}

.service-card:hover {
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.08);
}

.service-card:hover .icon {
  /*background: var(--accent-color);*/
  color: var(--contrast-color);
}

.service-card:hover .read-more {
  color: color-mix(in srgb, var(--accent-color), transparent 25%);
}

.section-title {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
  text-align: center;
}

.section-title::after {
  content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 3px;
  background: #0d83fd;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}

.service-card .icon {
  /* width: 108px;
  height: 80px;
  margin-right: 30px;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  color: var(--accent-color);
  font-size: 28px;
  transition: all 0.3s ease;
  line-height: 1; */

  width: 20%;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  color: #0d83fd;
  font-size: 28px;
  transition: all 0.3s ease;
  line-height: 1;
  margin-right: 20px;
}

.service-card h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 15px;
}

.service-card p {
  margin-bottom: 25px;
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  font-size: 15px;
  line-height: 1.6;
}

.service-card .read-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--accent-color);
  font-weight: 500;
  transition: all 0.3s ease;
}

.service-card .read-more i {
  font-size: 14px;
  transition: transform 0.3s ease;
}

.service-card .read-more:hover i {
  transform: translateX(5px);
}

/*--------------------------------------------------------------
# Faq Section
--------------------------------------------------------------*/
.faq .faq-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--heading-color);
}

.faq .faq-description {
  font-size: 1rem;
  color: var(--default-color);
  margin-bottom: 2rem;
}

.faq .faq-arrow {
  color: var(--accent-color);
}

.faq .faq-container .faq-item {
  background-color: var(--surface-color);
  position: relative;
  padding: 20px;
  margin-bottom: 15px;
  border-radius: 10px;
  overflow: hidden;
}

.faq .faq-container .faq-item:last-child {
  margin-bottom: 0;
}

.faq .faq-container .faq-item h3 {
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
  margin: 0 30px 0 0;
  transition: 0.3s;
  cursor: pointer;
  display: flex;
  align-items: center;
}

.faq .faq-container .faq-item h3 .num {
  color: var(--accent-color);
  padding-right: 5px;
}

.faq .faq-container .faq-item h3:hover {
  color: var(--accent-color);
}

.faq .faq-container .faq-item .faq-content {
  display: grid;
  grid-template-rows: 0fr;
  transition: 0.3s ease-in-out;
  visibility: visible !important;
  /*opacity: 0;*/
}

.faq .faq-content .service-card {
  background-color: var(--background-color);
}

.faq .faq-container .faq-item .faq-content .row {
  margin-bottom: 0;
  overflow: hidden;
}

.faq .faq-container .faq-item .faq-toggle {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 16px;
  line-height: 0;
  transition: 0.3s;
  cursor: pointer;
}

.faq .faq-container .faq-item .faq-toggle:hover {
  color: var(--accent-color);
}

.faq .faq-container .faq-active h3 {
  color: var(--accent-color);
}

.faq .faq-container .faq-active .faq-content {
  grid-template-rows: 1fr;
  visibility: visible;
  opacity: 1;
  padding-top: 10px;
}

.faq .faq-container .faq-active .faq-toggle {
  transform: rotate(90deg);
  color: var(--accent-color);
}

/*--------------------------------------------------------------
# search 
--------------------------------------------------------------*/
input,
button {
  font-family: "Poppins", sans-serif;
}

* {
  box-sizing: border-box;
}

.s130 {
  display: -ms-flexbox;
  /*  display: contents;*/
  -ms-flex-pack: center;
  justify-content: center;
  font-family: "Poppins", sans-serif;

  background-position: bottom right;
  background-repeat: no-repeat;
  width: 100%;
}

.s130 form {
  width: 100%;
  max-width: 460px;
  /* min-width: 460px; */
  margin-left: 1.5rem;
}

.s130 form .inner-form {
  display: -ms-flexbox;
  display: flex;
  width: 100%;

  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 34px;
  overflow: hidden;
}



/* .s130 form .inner-form .input-field {
  height: 48px;
}

.s130 form .inner-form .input-field input {
  height: 100%;
  background: transparent;
  border: 0;
  display: block;
  width: 100%;
  padding: 10px 0;
  font-size: 16px;
  color: #000;
}

.s130 form .inner-form .input-field input.placeholder {
  color: #222;
  font-size: 16px;
}

.s130 form .inner-form .input-field input:-moz-placeholder {
  color: #222;
  font-size: 16px;
}

.s130 form .inner-form .input-field input::-webkit-input-placeholder {
  color: #222;
  font-size: 16px;
}

.s130 form .inner-form .input-field input:hover, .s130 form .inner-form .input-field input:focus {
  box-shadow: none;
  outline: 0;
}

.s130 form .inner-form .input-field.first-wrap {
  -ms-flex-positive: 1;
      flex-grow: 1;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  background-color:color-mix(in srgb, var(--accent-color), transparent 92%);
}

.s130 form .inner-form .input-field.first-wrap input {
  -ms-flex-positive: 1;
      flex-grow: 1;
}

.s130 form .inner-form .input-field.first-wrap .svg-wrapper {
  display: -ms-flexbox;
  padding-left: 15px;
  display: flex;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-align: center;
      align-items: center;
}

.s130 form .inner-form .input-field.first-wrap svg {
  width: 36px;
  height: 36px;
  fill: #222;
}

.s130 form .inner-form .input-field.second-wrap {
  min-width: 100px;
}

.s130 form .inner-form .input-field.second-wrap .btn-search {
  height: 100%;
  width: 100%;
  white-space: nowrap;
  font-size: 16px;
  color: #fff;
  border: 0;
  cursor: pointer;
  position: relative;
  z-index: 0;
  background: #00ad5f;
  transition: all .2s ease-out, color .2s ease-out;
  font-weight: 300;
}

.s130 form .inner-form .input-field.second-wrap .btn-search:hover {
  background: #009451;
}

.s130 form .inner-form .input-field.second-wrap .btn-search:focus {
  outline: 0;
  box-shadow: none;
} */
.s130 .search-input {
  flex-grow: 1;
  height: 100%;
  border: none;
  background: transparent;
  padding: 0 15px;
  font-size: 16px;
  color: #000;
  outline: none;
}

.s130 .search-input::placeholder {
  color: #999;
  font-size: 16px;
}

.s130 form .info {
  font-size: 15px;
  color: #ccc;
  padding-left: 26px;
}
.s130 form .inner-form .input-field {
  height: 48px;
}

.s130 form .inner-form .input-field input {
  height: 100%;
  background: transparent;
  border: 0;
  display: block;
  width: 100%;
  padding: 10px 0;
  font-size: 16px;
  color: #000;
}

.s130 form .inner-form .input-field input::placeholder {
  color: #999;
  font-size: 16px;
}

.s130 form .inner-form .input-field input:hover,
.s130 form .inner-form .input-field input:focus {
  box-shadow: none;
  outline: 0;
}

.s130 form .inner-form .input-field.first-wrap {
  flex-grow: 1;
  display: flex;
  align-items: center;
  background: #f8f9fa;
}

.s130 form .inner-form .input-field.first-wrap input {
  flex-grow: 1;
  padding-left: 15px;
}

.s130 form .inner-form .input-field.first-wrap .svg-wrapper {
  display: flex;
  padding-left: 20px;
  padding-right: 10px;
  justify-content: center;
  align-items: center;
}

.s130 form .inner-form .input-field.first-wrap svg {
  width: 24px;
  height: 24px;
  fill: #666;
}

.s130 form .inner-form .input-field.second-wrap {
  min-width: 120px;
}

.s130 form .inner-form .input-field.second-wrap .btn-search {
  height: 100%;
  width: 100%;
  white-space: nowrap;
  font-size: 16px;
  color: #fff;
  border: 0;
  cursor: pointer;
  position: relative;
  z-index: 0;
  background: #0d6efd;
  transition: all 0.2s ease-out;
  font-weight: 400;
  padding: 0 24px;
}

.s130 form .inner-form .input-field.second-wrap .btn-search:hover {
  background: #0b5ed7;
}

.s130 form .inner-form .input-field.second-wrap .btn-search:focus {
  outline: 0;
  box-shadow: none;
}

/* Estilos comunes para el buscador grande */
.s130 {
  display: flex;
  justify-content: center;
}

.s130 .inner-form {
  display: flex;
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  border-radius: 34px;
  overflow: hidden;
  background: #fff;
}

.s130 .input-field.first-wrap {
  flex-grow: 1;
  display: flex;
  align-items: center;
  background: #f8f9fa;
  height: 68px;
}

.s130 .input-field.first-wrap .svg-wrapper {
  padding: 0 20px 0 20px;
  display: flex;
  align-items: center;
}

.s130 .input-field.first-wrap svg {
  width: 24px;
  height: 24px;
  fill: #666;
}

/* Input de texto */
.s130 .search-input {
  flex-grow: 1;
  height: 100%;
  border: none;
  background: transparent;
  padding: 0 15px;
  font-size: 16px;
  color: #000;
  outline: none;
}

.s130 .search-input::placeholder {
  color: #999;
  font-size: 16px;
}

/* Select personalizado para que se vea igual */
.s130 .custom-select-search {
  flex-grow: 1;
  height: 100%;
  border: none;
  background: transparent;
  padding: 0 40px 0 15px;
  /* Espacio para la flecha */
  font-size: 16px;
  color: #000;
  appearance: none;
  /* Quita la flecha por defecto */
  cursor: pointer;
  /* Agregar flecha personalizada */
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23666' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 15px center;
  background-size: 12px;
}

.s130 .custom-select-search:focus {
  outline: none;
  box-shadow: none;
}

.accordion-body {
  background-color: #f0f7ff;
}

.stat-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: color-mix(in srgb, var(--accent-color), transparent 92%);
  border-radius: 50px;
  transition: 0.3s;
}

.stat-icon i {
  font-size: 1.2rem;
  color: var(--accent-color);
}

/*
* multiselect
 */

.inner-form-multiselect {
  width: 40%;
  border: 0px solid #adadad;
}

.inner-form-multiselect .input-field {
  -ms-flex-positive: 1;
  flex-grow: 1;
  display: -ms-flexbox;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 34px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 92%);
}

.inner-form-multiselect .input-field .selected-item {
  border: 0px solid #337ab7 !important;
  margin-right: 4px;
  background: var(--accent-color);
  padding: 0 5px;
  color: #fff;
  border-radius: 2px;
  float: left;
  width: auto;
}

.backgroundTres {
  background-color: #f0f7ff !important;
}

.s130 form {
  width: 100%;
  max-width: 800px;
}

.rounded-pill {
  border-radius: 5px !important;
  display: flex;
  justify-content: center;
  text-align: center;
  width: 30px;
  height: 30px;
  line-height: 20px;
  font-size: 22px;
  color: #717275;
}

.podcast_mini_image {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 88px;
  height: 100%;
  background-size: cover;
  background-position: center;
}

.content_title {
  text-align: left;
  font-size: 22px !important;
}

.content_description {
  text-align: left;
}

.favs_btn {
  font-size: 21px;
  cursor: pointer;
}

.favs_btn_unselected_color {
  color: #ed0202;
}

.favs_btn_selected_color {
  /* color: #0133A1; */
  color: #ed0202;
}

.service-card {
  height: 100%;
  padding: 20px;
  display: flex;
  position: relative;
  overflow: hidden;
}

.service-card img {
  width: 100%;
}

.service-card .icon {
  width: 20%;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  color: #0d83fd;
  font-size: 28px;
  transition: all 0.3s ease;
  line-height: 1;
  margin-right: 20px;
  position: relative;
}

.service-card_episodio {
  height: 100%;
  padding: 30px;
  padding-bottom: 0;
  background: #fff;
  border-radius: 10px;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  overflow: hidden;
  margin: auto;
}

.service-card_episodio h3 {
  font-size: 1rem;
  font-weight: 600;
  color: #0f2a44;
  text-align: left;
}

.service-card_episodio p {
  font-size: 0.8rem;
  font-weight: 600;
  color: #0f2a44;
  text-align: left;
}

.service-card_episodio .icon {
  width: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  align-items: flex-start;
  border-radius: 16px;
  color: #0d83fd;
  font-size: 28px;
  transition: all 0.3s ease;
  line-height: 1;
  margin-bottom: 16px;
}

.service-card_episodio img {
  width: 100%;
}

.rounded-pill {
  border-radius: 5px !important;
  display: flex;
  justify-content: center;
  text-align: center;
  width: 30px;
  height: 30px;
  line-height: 20px;
  font-size: 22px;
  color: #0133a1;
}

.rounded-pill i {
  transition: all 0.3s ease;
}

.rounded-pill:hover i {
  color: #0133a1;
  cursor: pointer;
}

.rounded-pill:hover i.bi-heart::before {
  content: "\f415";
  /* bi-heart-fill icon code */
}

.rounded-pill.active i,
.rounded-pill:active i {
  color: #0133a1;
  cursor: pointer;
}

.rounded-pill.active i.bi-heart::before,
.rounded-pill:active i.bi-heart::before {
  content: "\f415";
  /* bi-heart-fill icon code */
}

.service-card .interaction {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-right: 8px;
}

.service-card .interaction h3 {
  color: #0f2a44;
  font-weight: 700;
  font-size: 16px;
  position: relative;
  padding-bottom: 10px;
  text-align: left;
}

.service-card .interaction h3:after {
  content: "";
  position: absolute;
  display: block;
  width: 60px;
  height: 3px;
  background: var(--accent-color);
  left: 0;
  bottom: 0;
}

.service-card p {
  font-size: 15px;
  line-height: 1.6;
  text-align: left;
  margin: 0;
}

.service-card .read-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #0d83fd;
  font-size: 15px;
  font-weight: 500;
  transition: all 0.3s ease;
  text-decoration: none;
}

.accordion-template {
  border: none;
  margin-bottom: 1rem;
  border-radius: 15px;
}

.accordion-template-button {
  display: flex;
  gap: 1rem;
  align-items: center;
}

/* Contenedor de la imagen (span) con posición relativa */
.accordion-template-button .img-wrapper {
  position: relative;
  display: inline-block;
  margin-right: 10px;
}

/* La imagen dentro del contenedor */
.accordion-template-button .img-wrapper img {
  display: block;
  width: 66px;
  height: auto;
}

/* Línea azul debajo de la imagen usando ::after en el contenedor */
.accordion-template-button .img-wrapper::after {
  content: "";
  position: absolute;
  display: block;
  width: 60px;
  height: 3px;
  background: #0d83fd;
  left: 3px;
  /* Centrado */
  bottom: -8px;
  /* Separación de la imagen */
}

.bg-light {
  background-color: white !important;
  border-radius: 15px;
}

@media (max-width: 1024px) {
  .inner-form {
    /* border: 3px solid blue; */
    /* width: 90%; */
  }   

  .general_container_text_search {
    /* width: 90%; */
    background-color: #0d6efd;
  }
}