/* ===================================
    Clases Especificas
====================================== */
/* Hero Empresas */

.hero {
  position: relative;
  width: 100%;
  min-height: 774px;
  height: auto;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-left: 102px;
}

.hero img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right,
      var(--black) 0%,
      var(--black-80) 25%,
      var(--black-60) 50%,
      var(--black-40) 75%,
      var(--black-20) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 691px;
  height: auto;
}

.hero-content h1,
.hero-content .hero-title {
  font-family: var(--merri);
  font-size: 55px;
  font-weight: 700;
  text-align: left;
  color: var(--white);
  margin-bottom: 16px;
}

.hero-content p {
  font-family: var(--merri);
  font-size: 22px;
  font-weight: 400;
  text-align: left;
  color: var(--white);
  margin-bottom: 16px;
}

.hero.detail {
  padding: 0 102px;
  padding-top: 107px;
  min-height: 638px;
}

.hero.detail .hero-content {
  width: auto;
}

.hero.detail .hero-content h1 {
  font-size: 44px;
}

.white-hero-box {
  width: 480px;
  position: relative;
  z-index: 2;
  background-color: rgba(255, 255, 255, 1);
  border-radius: 16px;
  padding: 40px;
}

.white-hero-box.fixed {
  width: 100%;
  background-color: transparent;
  padding: 0;
}

.white-hero-box .title {
  font-family: var(--merri);
  font-size: 35px;
  font-weight: 400;
  text-align: left;
  color: rgba(18, 18, 18, 1);
  margin-bottom: 24px;
}

.white-hero-box .text {
  font-family: var(--lato);
  font-size: 18px;
  font-weight: 400;
  text-align: left;
  color: rgba(18, 18, 18, 1);
  margin-bottom: 24px;
}

.white-hero-box .hero-btns-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 24px;
}

.white-hero-box.fixed .hero-btns-container {
  flex-direction: column;
  flex-wrap: nowrap;
}

.white-hero-box.fixed .title {
  font-family: var(--merri);
  font-size: 20px;
  font-weight: 400;
  text-align: left;
  color: rgba(255, 255, 255, 1);
  margin-bottom: 16px;
}

.white-hero-box.fixed .text {
  font-family: var(--lato);
  font-size: 18px;
  font-weight: 400;
  text-align: left;
  color: rgba(255, 255, 255, 1);
  margin-bottom: 16px;
}

.fix-width {
  min-width: fit-content;
  padding: 11px 15px;
  width: fit-content;
}

.white-hero-box.fixed .hero-btns-container .fix-width {
  width: 100%;
  min-width: 100%;
  max-height: auto;
}

.hero-content-mobile {
  display: none;
}

.divider-white {
  border: 1px solid white;
  background-color: white;
  opacity: 1;
}

.tab-section {
  width: 100%;
  padding: 100px 222px;
  position: relative;
}

.mix-float-button {
  width: 100%;
  display: flex;
  padding: 0 102px;
  justify-content: center;
  position: relative;
  position: absolute;
  top: -75px;
  left: 0;
}

.mix-float-button .white-hero-box {
  max-width: 100%;
  width: 100%;
  display: flex;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  align-items: center;
  justify-content: space-between;
}

.icon-text-box {
  display: flex;
  align-items: center;
}

.icon-text-box svg {
  margin-right: 18px;
}

.icon-text-box .text-box .text-box-title {
  font-family: var(--merri);
  font-size: 22px;
  font-weight: 700;
  text-align: left;
  color: rgba(18, 18, 18, 1);
}

.icon-text-box .text-box .text-box-description {
  font-family: var(--lato);
  font-size: 18px;
  font-weight: 400;
  text-align: left;
  color: rgba(18, 18, 18, 1);
}

.mix-float-button .hero__button {
  min-width: 260px;
  width: auto;
  max-width: 100%;
}

/* Tabs Container */
.tabs-container {
  display: flex;
  justify-content: center;
}

.tabs-container .nav-tabs {
  border: 0;
  justify-content: space-between;
  flex-wrap: nowrap;
  min-width: 700px;
  min-height: 60px;
}

.tabs-container .nav-link {
  border: 0;
  font-family: var(--lato);
  font-size: 18px;
  font-weight: 700;
  text-align: center;
  color: black;
  transition: background-color 0.5s ease;
}

.tabs-container .nav-link:hover {
  transition: background-color 0.5s ease;
  background-color: rgba(248, 248, 248, 1);
  border-bottom: 4px solid rgba(255, 184, 0, 1);
}

.tabs-container .nav-link.active {
  border-bottom: 4px solid rgba(255, 184, 0, 1);
}

.tabs-container .nav-link:focus {
  transition: background-color 0.5s ease;
  background-color: rgba(248, 248, 248, 1);
  border-bottom: 4px solid rgba(255, 184, 0, 1);
  box-shadow: none;
}

.tabs-container .tab-pane {
  padding-top: 32px;
}

.tabs-container .tab-pane ul li {
  font-family: var(--lato);
  font-size: 16px;
  font-weight: 500;
  text-align: left;
}

.tabs-container .tab-pane .accordion-body {
  font-family: var(--lato);
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  text-align: left;
}

.tabs-container .tab-content .video-container {
  width: 100%;
  height: auto;
  margin-bottom: 16px;
}

.tabs-container .tab-content .video-container video {
  width: 100%;
  height: auto;
}

.tabs-container .detail-title {
  font-family: var(--merri);
  font-size: 22px;
  font-weight: 700;
  text-align: left;
  color: rgba(18, 18, 18, 1);
  margin-bottom: 16px;
}

.tabs-container .detail-description {
  font-family: var(--lato);
  font-size: 16px;
  font-weight: 400;
  text-align: left;
  color: rgba(18, 18, 18, 1);
  margin-bottom: 16px;
}

.date-container {
  border: 1px solid rgba(182, 182, 182, 1);
  padding: 40px;
  margin-bottom: 16px;
}

.date-container .first-title {
  font-family: var(--lato);
  font-size: 18px;
  font-weight: 700;
  line-height: 27px;
  text-align: left;
  color: rgba(0, 0, 0, 1);
  margin-bottom: 8px;
}

.detail-img-container {
  width: 100%;
  max-width: 657px;
  height: auto;
  min-height: 357px;
  max-height: 357px;
  border: 1px solid black;
  margin-bottom: 16px;
  overflow: hidden;
}

.detail-img-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 357px;
  max-height: 357px;
}

.scroll-tabs-container {
  overflow-x: auto;
  overflow-y: hidden;
}

.tabs-container .accordion-button:not(.collapsed) {
  background-color: white;
  box-shadow: none;
}

.tabs-container .accordion-button:focus {
  box-shadow: none;
}

.tabs-container .accordion-item {
  border-radius: 0;
  border: 0;
  border-bottom: 1px solid rgba(231, 231, 231, 1);
  margin-bottom: 16px;
}

.tabs-container .accordion-button {
  font-family: var(--lato);
  font-size: 18px;
  font-weight: 700;
  text-align: left;
  color: rgba(18, 18, 18, 1);
}

.tabs-container .accordion-body p {
  font-family: var(--lato);
  font-size: 16px;
  font-weight: 700;
  text-align: left;
  color: rgba(18, 18, 18, 1);
}

/* Footer Personas */
.footer {
  background-color: var(--gray-dark);
  padding: 40px 75px;
}

.footer.empresas {
  padding: 20px 20px 0 20px;
}

.footer.empresas .footer-row-footer {
  border-top: 1px solid var(--gray-light);
  padding: 25px 100px;
}

.footer-title-container {
  margin-bottom: 15px;
  border-bottom: 1px solid var(--yellow);
}

.footer-title {
  font-family: var(--merri);
  font-size: 24px;
  font-weight: 300;
  text-align: left;
  color: var(--yellow);
  width: fit-content;
  padding-bottom: 18px;
  border-bottom: 8px solid var(--yellow);
}

.footer-section {
  border-bottom: 1px solid var(--white);
  margin-bottom: 8px;
}

.footer-section:nth-last-of-type(2) {
  border: none;
  margin: 0;
}

.footer-section-title {
  font-family: var(--lato);
  font-size: 20px;
  font-weight: 700;
  text-align: left;
  color: var(--white);
  margin-bottom: 8px;
}

.footer-section-list {
  list-style: none;
  padding: 0;
}

.footer-section-list li {
  font-family: var(--lato);
  font-size: 16px;
  font-weight: 400;
  text-align: left;
  color: var(--white);
  padding-bottom: 8px;
}

.footer-section-list li:last-child {
  padding: 0;
}

.footer-section-list li span {
  font-family: var(--lato);
  font-size: 16px;
  font-style: italic;
  font-weight: 700;
  text-align: center;
  text-decoration: underline;
}

.footer-list {
  list-style: none;
  padding: 0;
}

.footer-list li {
  font-family: var(--lato);
  font-size: 12.8px;
  font-weight: 400;
  text-align: left;
  text-transform: uppercase;
  color: var(--white);
  padding-bottom: 16px;
}

.footer-button {
  font-family: var(--lato);
  font-size: 14px;
  font-weight: 600;
  text-align: left;
  color: var(--white);
  margin-bottom: 35px;
  background-color: var(--gray-dark);
  border: 2px solid var(--white);
  padding: 0 15px;
  min-height: 50px;
  border-radius: 100px;
  text-transform: uppercase;
  display: flex;
  justify-content: center;
  align-items: center;
  min-width: 175px;
}

.footer-social-icons {
  display: flex;
  align-items: center;
  gap: 24px;
}

.footer-row-footer {
  margin-top: 15px;
  border-top: 1px solid var(--white);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
}

.footer-logo.left-logo img {
  max-height: 36px;
}

.footer-logo.right-logo img {
  height: 100%;
}

/* Value Section */
/* Block: value-proposition */

.value-section {
  padding: 0 102px;
}

.value-proposition {
  display: flex;
  justify-content: space-between;
  margin-top: 35px;
  /* Space between the hero and this section */
}

/* Element: value-proposition__text-container */
.value-proposition__text-container {
  max-width: 800px;
  flex: 1;
  /* Allows the text container to take up available space */
  margin-right: 32px;
}

.value-proposition__text-container.max {
  display: flex;
  flex-direction: column;
  max-width: 100%;
  margin: 0;
  position: relative;
  transform: translateY(-80px);
}

.value-proposition__text-container.max .info-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 32px;
}

.info-section.landing {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 32px;
  gap: 28px;
}

.value-proposition__title {
  font-family: var(--merri);
  font-size: 35px;
  font-weight: 400;
  text-align: left;
  color: var(--gray-dark);
  margin-bottom: 12px;
}

.value-proposition__description {
  font-family: var(--lato);
  font-size: 18px;
  font-weight: 400;
  text-align: justify;
  /* Corrige a justify */

  display: -webkit-box;
  /* Necesario para el uso de line-clamp */
  -webkit-line-clamp: 10;
  /* Limita a 10 líneas */
  -webkit-box-orient: vertical;
  /* Especifica la orientación del box */

  overflow: hidden;
  /* Oculta el texto que se sale del contenedor */
  text-overflow: ellipsis;
  /* Agrega puntos suspensivos al final */
}

/* Element: value-proposition__card */
.value-proposition__card {
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  /* Normal box-shadow */
  border-radius: 5px;
  /* Rounded corners */
  background-color: #fff;
  /* White background for the card */
  padding: 40px;
  /* Padding inside the card */
  width: 100%;
  /* Full width of the available space */
  max-width: 404px;
  /* Maximum width of the card */
  position: relative;
  bottom: 140px;
  z-index: 3;
}

/* Element: value-proposition__category-list */
.value-proposition__category-list {
  list-style-type: none;
  /* Removes bullet points */
  padding: 0;
  margin: 0;
}

/* Element: value-proposition__category-item */
.value-proposition__category-item {
  margin-bottom: 24px;
}

.value-proposition__category-item:last-child {
  margin: 0;
}

.value-proposition_item-container {
  display: flex;
  align-items: center;
  margin-bottom: 8px;
}

.value-proposition__category-image {
  width: 24px;
  /* Adjust width as needed */
  height: 24px;
  /* Maintains aspect ratio */
  border-radius: 4px;
  /* Rounded corners for the image */
}

.value-proposition__category-title {
  padding-left: 8px;
  font-family: var(--merri);
  font-size: 20px;
  font-weight: 700;
  text-align: left;
  color: var(--gray-dark);
}

.value-proposition__category-description {
  font-family: var(--lato);
  font-size: 16px;
  font-weight: 400;
  text-align: left;
  color: var(--gray-dark);
  padding-left: 32px;
}

/* Section Cards */
.cards {}

.card {
  display: block;
  background: var(--white);
  box-shadow: 0 4px 8px var(--black-20);
  padding: 24px;
  position: relative;
  width: 33%;
  height: fit-content;
  transition: transform 0.3s;
  border: 0;
}

.card__box {
  display: flex;
  align-items: center;
}

.card__number {
  background: var(--yellow-second);
  color: var(--gray-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  height: 44px;
  width: 52px;
  font-family: var(--lato);
  font-size: 18px;
  font-weight: 700;
  text-align: left;
  margin-right: 16px;
}

.card__title {
  font-family: var(--merri);
  font-size: 18px;
  font-weight: 700;
  text-align: left;
  color: var(--gray-dark);
}

.card__list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.card__list-item {
  margin-bottom: 16px;
  font-family: var(--lato);
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  text-align: left;
  padding: 6px 0;
}

.card__list-item:nth-child(2n) {
  background-color: rgba(248, 248, 248, 1);
}

.content-section {
  display: flex;
  align-items: center;
  min-height: 400px;
}

.content-section__container {
  display: flex;
  width: 100%;
}

.content-section__image {
  display: flex;
  height: 100%;
  min-height: 400px;
  min-width: 500px;
}

.content-section__content {
  display: flex;
  flex-direction: column;
  padding-left: 20px;
}

.content-section__title {
  font-family: var(--merri);
  font-size: 35px;
  font-weight: 400;
  text-align: left;
  color: var(--gray-dark);
  margin-bottom: 12px;
}

.content-section__paragraph p {
  font-family: var(--lato);
  font-size: 18px;
  font-weight: 400;
  text-align: left;
  margin-bottom: 32px;
}

.content-section__box {
  border: 1px solid var(--gray-light);
  margin-bottom: 32px;
}

.content-section__box-item {
  display: flex;
  align-items: center;
  border-bottom: 1px solid var(--gray-light);
  padding: 14px 0;
}

.content-section__box-item:last-child {
  border-bottom: none;
}

.content-section__subtitle {
  font-family: var(--merri);
  font-size: 18px;
  font-weight: 700;
  text-align: left;
  padding: 0 10px;
}

.content-section__text {
  font-family: var(--lato);
  font-size: 16px;
  font-weight: 400;
  text-align: left;
}

.content-section__button {
  padding: 10px 20px;
  background-color: var(--black);
  color: var(--white);
  border: none;
  cursor: pointer;
  text-align: center;
}

.mask-container {
  width: 100%;
  min-height: 600px;
  position: absolute;
  top: 0;
}

.methodologie-bg {
  width: 100%;
  height: auto;
  position: relative;
  margin-top: 20px;
  display: flex;
  justify-content: center;
  flex-direction: column;
}

.methodologie-bg .bg-image {
  width: 100%;
  min-height: 600px;
  height: auto;
  border-bottom: 2px solid var(--white);
  object-fit: cover;
  position: relative;
}

.methodologie-bg svg {
  width: 100%;
  left: 0;
  bottom: 0;
  position: absolute;
  z-index: 3;
}

.methodologie-content {
  width: 100%;
  position: relative;
  z-index: 4;
  padding: 114px 102px 0 102px;
  overflow: hidden;
}

.methodologie-content__columns {
  display: flex;
  justify-content: space-between;
  margin-bottom: 32px;
  flex-wrap: wrap;
}

.methodologie-content__column--half {
  flex: 1;
  padding: 10px;
  text-align: center;
}

.methodologie-content__column--full {
  flex: 1;
  padding: 10px;
  width: 100%;
  text-align: center;
}

.methodologie-content__box {
  padding: 10px 20px;
}

.methodologie-content__number {
  font-family: var(--merri);
  font-size: 48px;
  font-weight: 700;
  letter-spacing: 0.16px;
  text-align: center;
  color: var(--yellow);
}

.methodologie-content__description {
  font-family: var(--lato);
  font-size: 22px;
  font-weight: 500;
  letter-spacing: 0.16px;
  text-align: center;
  color: var(--white);
  text-transform: uppercase;
}

.methodologie-content__title {
  font-family: var(--merri);
  font-size: 35px;
  font-weight: 400;
  text-align: left;
  color: var(--white);
  margin-bottom: 12px;
}

.methodologie-content__paragraph {
  font-family: var(--lato);
  font-size: 18px;
  font-weight: 400;
  text-align: left;
  color: var(--white);
  margin-bottom: 47px;
}

.methodologie-content__paragraph_info {
  font-family: var(--merri);
  font-size: 22px;
  font-weight: 700;
  text-align: center;
  color: var(--gray-dark);
  padding: 0;
}

.methodologie-content__image-container {
  min-width: 700px;
  max-width: 100%;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  margin-bottom: 32px;
  padding: 0;
  overflow-x: auto;
}

.methodologie-content__image {
  width: 885px;
  height: 541px;
}

.methodologie-content__button {
  padding: 10px 20px;
  background-color: var(--black);
  color: var(--white);
  border: none;
  cursor: pointer;
  text-align: center;
}

.testimonies-section {
  padding: 0 102px;
}

.testimonies-section .section-title {
  font-family: var(--merri);
  font-size: 35px;
  font-weight: 400;
  text-align: left;
  margin-bottom: 32px;
}

.swiper {
  width: 100%;
  min-height: 400px;
  max-height: 400px;
  height: auto;
}

.swiper.swiperBrands {
  min-height: auto;
}

.slider-item {
  width: 100%;
  height: auto;
  min-height: 400px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.swiper-slide.brand .slider-item {
  justify-content: center;
  min-height: 120px;
}

.swiper-slide.brand .slider-item .slider-item-img {
  width: auto;
  height: auto;
  border-radius: 0;
  object-fit: contain;
  max-height: 90px;
}

.slider-item .slider-item-img {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
}

.slider-item .slider-item-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.slider-item-title {
  font-family: var(--lato);
  font-size: 18px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 8px;
  color: var(--gray-dark);
}

.slider-item-role {
  width: 100%;
  font-family: var(--lato);
  font-size: 14px;
  font-weight: 400;
  text-align: center;
  color: rgba(85, 88, 88, 1);
}

.slider-item-quote {
  font-family: var(--merri);
  font-size: 18px;
  font-weight: 400;
  text-align: center;
}

.swiper-button-next,
.swiper-button-prev {
  width: 45px;
  height: 45px;
}

.swiper-button-next:after,
.swiper-rtl .swiper-button-prev:after,
.swiper-button-prev:after,
.swiper-rtl .swiper-button-next:after {
  content: none !important;
}

/* Header */

header {
  width: 100%;
  height: auto;
  position: absolute;
  top: 0;
  z-index: 5;
  min-height: 107px;
}

.certificates {
  padding: 0 20px;
  width: 100%;
  min-height: 47px;
  background-color: rgba(219, 219, 219, 1);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.certificates .navigation-left {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  gap: 16px;
}

.certificates .navigation-left li a {
  text-decoration: none;
  font-family: var(--lato);
  font-size: 14px;
  font-weight: 400;
  color: var(--gray-dark);
}

.mini-navbar {
  display: flex;
  justify-content: end;
  align-items: center;
  background-color: var(--gray-dark);
}

.mini-navbar.fixed {
  width: 100%;
  position: fixed;
  top: 0;
  right: 0;
}

.navbar-right {
  display: flex;
}

.logo-desktop {
  left: 0;
  position: absolute;
  margin-left: 20px;
}

.items-container {
  min-width: 675px;
  display: flex;
  justify-content: end;
  align-items: center;
  background-color: var(--gray-dark);
  gap: 12px;
  min-height: 60px;
  clip-path: polygon(0 0, calc(100% - 40px) 0, 100% 100%, 40px 100%);
  position: relative;
  right: -40px;
  padding-right: 40px;
}

.items-container .item .link-second {
  text-decoration: none;
  font-family: var(--lato);
  font-size: 14px;
  font-weight: 400;
  color: var(--white);
  transition: all 0.5s ease;
}

.items-container .item .link-second:hover {
  color: var(--gray-light) !important;
  transition: all 0.5s ease;
}

.contacto-container {
  min-width: 160px;
  padding-left: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--yellow);
  min-height: 60px;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 40px 100%);
}

.contact-item {
  text-decoration: none;
  font-family: var(--lato);
  font-size: 17px;
  font-weight: 700;
  color: var(--gray-dark);
  text-transform: uppercase;
}

.mobile-header .navbar {
  padding: 20px;
  min-height: 80px;
}

.mobile-header .navbar-toggler {
  border: 0;
  padding: 0;
}

.mobile-header .navbar-toggler:not(.collapsed) .burguer-icon {
  display: none;
}

.mobile-header .navbar-toggler.collapsed .burguer-icon {
  display: block;
}

.mobile-header .navbar-toggler.collapsed .cross-icon {
  display: none;
}

.mobile-header .navbar-toggler:focus {
  box-shadow: none;
}

.mobile-header .accordion-button,
.mobile-header .accordion,
.mobile-header .accordion-item {
  background-color: transparent;
}

.mobile-header .accordion-button {
  font-family: var(--lato);
  font-size: 14px;
  font-weight: 400;
  color: var(--white);
  padding: 0;
  justify-content: space-between;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--gray-light);
}

.mobile-header .accordion-button.collapsed img {
  transform: rotate(0deg);
  transition: all 0.5s ease;
}

.mobile-header .accordion-button:not(.collapsed) img {
  transition: all 0.5s ease;
  transform: rotate(180deg);
}

.mobile-header .accordion-button::after {
  display: none;
}

.mobile-header .navbar-collapse {
  margin-top: 16px;
}

.mobile-header .accordion-button:focus {
  box-shadow: none;
}

.mobile-header .accordion-body {
  color: var(--white);
}

.mobile-header .nav-link {
  font-family: var(--lato);
  font-size: 14px;
  font-weight: 400;
  color: var(--white);
}

.contact-mobile-container {
  width: 100%;
  height: auto;
  margin-top: 16px;
}

.contact-mobile-container .contact-btn {
  background-color: var(--yellow);
  width: 100%;
  min-height: 37px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: var(--lato);
  font-size: 14px;
  font-weight: 700;
  color: var(--gray-dark);
  text-transform: uppercase;
  text-decoration: none;
  text-align: center;
}

/* Footer */
.footer-info {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

.footer-info .footer-item-half {
  margin: 10px 0;
  display: flex;
  align-items: center;
  padding: 0 24px;
  border-right: 1px solid var(--white);
}

.footer-info .footer-item-half span:first-child {
  font-family: var(--lato);
  font-size: 16px;
  font-weight: 700;
  color: var(--yellow-second);
}

.footer-info .footer-item-half .phone {
  font-family: var(--lato);
  font-size: 16px;
  font-weight: 500;
  color: var(--white);
}

.footer-info .footer-item-half a {
  margin-left: 8px;
  font-family: var(--lato);
  font-size: 16px;
  font-weight: 700;
  color: var(--white);
}

.diploma {
  display: flex;
  align-items: center;
  padding: 20px 102px;
  min-height: 400px;
}

.diploma__content {
  display: flex;
  width: 100%;
}

.diploma__image {
  flex: 1;
}

.diploma__image img {
  object-fit: cover;
  width: 100%;
  max-width: 100%;
  height: 100%;
  min-width: 300px;
  min-height: 260px;
}

.diploma__info {
  width: 100%;
  flex: 1;
  padding-left: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.diploma__title {
  font-family: var(--merri);
  font-size: 44px;
  font-weight: 700;
  line-height: 120%;
  color: var(--gray-dark);
  margin-bottom: 24px;
}

.diploma__description {
  font-family: var(--merri);
  font-size: 18px;
  font-weight: 400;
  line-height: 120%;
  text-align: left;
  color: var(--gray-dark);
  margin-bottom: 24px;
}

.diploma__actions {
  display: flex;
  gap: 8px;
}

.diploma__actions .hero__button {
  width: 100%;
  min-width: 250px;
}

.input-container {
  position: relative;
}

.input-container .form-label {
  font-family: var(--lato);
  font-size: 12px;
  font-weight: 400;
  line-height: 120%;
  position: absolute;
  left: 15px;
  top: -6px;
  padding: 0 6px;
  background-color: white;
  color: #555858;
}

.input-container .form-control,
.input-container .form-select {
  padding: 0px 20px;
  min-height: 56px;
  width: 100%;
  border: 1px solid #929595;
  border-radius: 4px, 4px, 0px, 0px;
  font-family: var(--lato);
  font-size: 14px;
  font-weight: 400;
  line-height: 120%;
  text-align: left;
  color: var(--gray-dark);
}

.input-container .form-control::placeholder {
  font-family: var(--lato);
  font-size: 14px;
  font-weight: 400;
  line-height: 120%;
  text-align: left;
}

.form-check.checkboxes {
  display: flex;
  align-items: center;
  padding: 0;
}

.form-check.checkboxes .form-check-input {
  margin: 0;
  width: 18px;
  height: 18px;
  border: 1px solid black;
}

.form-check-label {
  display: block;
  font-family: var(--lato);
  font-size: 16px;
  font-weight: 400;
  line-height: 120%;
  text-align: left;
  padding-right: 15px;
}

.nav-list-mobile {
  padding: 20px 10px;
  border-bottom: 1px solid rgba(248, 248, 248, 1);
}

.active-nav {
  font-weight: bold !important;
  text-decoration: underline !important;
}

.faqs {
  padding: 65px 102px;
}

.faqs-wrapper {
  width: 100%;
  max-width: 765px;
  height: auto;
  margin-top: 120px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.faqs-container {
  width: 100%;
  height: auto;
}

.faqs__title {
  font-family: var(--merri);
  font-size: 44px;
  font-weight: 700;
  line-height: 120%;
  color: rgba(18, 18, 18, 1);
  margin-bottom: 10px;
}

.faqs__text {
  font-family: var(--lato);
  font-size: 18px;
  font-weight: 400;
  color: rgba(18, 18, 18, 1);
  margin-bottom: 40px;
}

.faqs__text a {
  font-weight: bold;
  color: black;
}

.faqs__accordion-button {
  font-family: var(--lato);
  font-size: 18px;
  font-weight: 700;
  line-height: 120%;
  padding: 10px 0;
  justify-content: space-between;
  min-height: 68px;
}

.faqs__accordion-button::after {
  display: none;
}

.faqs__accordion-button.collapsed img {
  transform: rotate(180deg);
  transition: all 0.5s ease;
}

.faqs__accordion-button:not(.collapsed) img {
  transition: all 0.5s ease;
  transform: rotate(0deg);
}

.faqs__accordion-body {
  font-family: var(--lato);
  font-size: 16px;
  font-weight: 400;
  line-height: 120%;
  color: rgba(18, 18, 18, 1);
  padding: 15px 0;
}

.faqs__accordion-item {
  border-top: 1px solid rgba(234, 234, 234, 1);
  border-bottom: 1px solid rgba(234, 234, 234, 1);
}

.msg_box {
  max-width: 716px;
  display: flex;
  padding: 16px;
  gap: 8px;

  min-height: 118px;
  border-radius: 8px;
  box-shadow: 0px 8px 16px 0px rgba(15, 28, 20, 0.2);
}

.msg_box.green {
  background-color: rgba(239, 247, 235, 1);
}

.msg_box.red {
  background-color: rgba(252, 237, 233, 1);
}

.msg_box .info {
  display: flex;
  align-items: center;
}

.msg_box .icon {
  min-width: 24px;
  min-height: 24px;
}

.msg_box .content {
  display: flex;
  flex-direction: column;
  align-items: start;
}

.msg_box .title {
  font-family: var(--lato);
  font-size: 16px;
  font-weight: 700;
  line-height: 120%;
  text-align: left;
  margin-bottom: 8px;
}

.button-cta {
  margin-left: 8px;
}

.button-cta p {
  font-family: var(--lato);
  font-size: 14px;
  font-style: italic;
  font-weight: 700;
  line-height: 120%;
  text-align: left;
  text-transform: uppercase;
  text-decoration: underline;
}

/* Personas */

.slider-hero {
  padding-top: 80px;
  width: 100%;
  min-height: 774px;
  position: relative;
}

.bg-hero-img {
  top: 0;
  left: 0;
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 2;
}

.carousel.slide {
  width: 100%;
  min-height: inherit;
  position: relative;
  z-index: 3;
}

.carousel-inner {
  width: 100%;
  min-height: inherit;
}

.carousel-item {
  width: 100%;
  min-height: inherit;
  padding: 0 102px;
}

.carousel.slide::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right,
      var(--black) 0%,
      var(--black-80) 25%,
      var(--black-60) 50%,
      var(--black-40) 75%,
      var(--black-20) 100%);
  z-index: 3;
}

.carousel-item .hero-content {
  width: 100%;
  max-width: 575px;
  min-height: inherit;
  display: flex !important;
  flex-direction: column;
  justify-content: center;
  position: relative;
  z-index: 4;
}

.carousel-control-next,
.carousel-control-prev {
  width: 10%;
}

.carousel-indicators {
  z-index: 4;
}

.carousel-indicators [data-bs-target] {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  opacity: 1;
  background-color: rgba(231, 231, 231, 1);
  transition: all 0.5s ease;
}

.carousel-indicators .active {
  opacity: 1;
  background-color: rgba(241, 182, 52, 1);
  transition: all 0.5s ease;
}

.carousel-control-next,
.carousel-control-prev {
  z-index: 4;
}

.swiper-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 32px;
}

.pagination-buttons {
  display: flex;
  align-items: center;
  gap: 48px;
}

.swiperTestimoniesV2 {
  min-height: auto;
}

.swiperTestimoniesV2 .swiper-button-next,
.swiperTestimoniesV2 .swiper-button-prev {
  position: static;
  width: 50px;
  height: 50px;
  margin: 0;
}

.swiperTestimoniesV2 .swiper-button-next svg,
.swiperTestimoniesV2 .swiper-button-prev svg {
  width: 100%;
  height: 100%;
}

.swiperTestimoniesV2 .swiper-button-next {
  transform: rotate(180deg);
}

.swiperTestimoniesV2 .slider-item {
  min-height: auto;
  align-items: start;
}

.slider-item-body {
  display: flex;
  align-items: start;
  justify-content: space-between;
}

.slider-item-body .slider-item-img {
  min-width: 72px !important;
  width: 72px !important;
  height: 72px !important;
}

.slider-item-person {
  padding-right: 20px;
}

.slider-item-body .slider-item-role,
.slider-item-body .slider-item-title,
.slider-item-quote {
  text-align: start;
}

.slider-item-quote {
  margin-bottom: 16px;
}

.m-w-950 {
  width: 100%;
  max-width: 950px;
}

.sticky-ad {
  display: none;
  position: fixed;
  bottom: 0;
  width: 100%;
  z-index: 1000;
}

.sticky-ad.show-sticky {
  display: block;
}

.sticky-desk {
  width: 100%;
  background-color: rgba(18, 18, 18, 1);
  padding: 40px;
  min-height: 152px;
}

.sticky-mobile {
  width: 100%;
  height: auto;
}

.sticky-mobile .hero__button {
  width: 100%;
  min-width: 100%;
  height: auto;
  min-height: 62px;
  border-radius: 0;
}

.ad-btns {
  display: flex;
  align-items: center;
  gap: 24px;
}

.ad-content {
  width: 100%;
  max-width: 271px;
  height: auto;
}

.ad-content .price {
  font-family: var(--lato);
  font-size: 36px;
  font-weight: 700;
  letter-spacing: 0.16px;
  text-align: left;
  color: rgba(255, 255, 255, 1);
}

.ad-content .info-quotes {
  font-family: var(--lato);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.16px;
  text-align: left;
  color: rgba(255, 255, 255, 1);
}

.ad-btn {
  max-width: fit-content;
  min-width: 211px;
  width: fit-content;
  min-height: 40px;
  font-family: var(--lato);
  font-size: 14px;
  font-weight: 700;
  text-align: left;
  padding: 11px 16px;
}

/* Deleted CSS */

.value-proposition__text-container.global {
  display: flex;
  flex-direction: column;
  max-width: 100%;
  margin: 0;
  position: relative;
}

.value-proposition__text-container.global .info-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 32px;
}

/* Areas de interes */
.areas-container {
  display: grid;
  grid-template-columns: repeat(4, minmax(220px, 1fr));
  gap: 10px;
  overflow-x: auto;
}

.area-box {
  display: flex;
  align-items: center;
  padding: 24px;
  background-color: black;
  color: white;
  font-family: var(--merri);
  font-size: 18px;
  font-weight: 600;
  text-decoration: none;
  min-width: 200px;
  height: 72px;
  opacity: 1;
  transition: all 0.5s ease;
}

.area-box:hover,
.area-box:focus {
  background-color: rgba(142, 152, 168, 1);
  transition: all 0.5s ease;
  border: 1px solid transparent;
}

.area-box svg {
  width: 24px;
  height: 24px;
  margin-right: 16px;
}

.area-text {
  font-family: var(--merri);
  font-size: 13px;
  font-weight: 900;
  text-align: left;

  flex-grow: 1;
  display: flex;
  align-items: center;
}

/* Programs Container */
.programs-container {
  display: grid;
  grid-template-columns: repeat(3, minmax(280px, 1fr));
  gap: 16px;
}

.programs-container.filter {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 16px;
}

/* Estilos cuando hay un único elemento, alineado al principio */
.programs-container.filter .program-card:only-child {
  max-width: 280px;
  /* Limita el ancho del único elemento */
  margin: 0;
  /* Alinea al principio (sin centrar) */
}

.program-card {
  display: flex;
  flex-direction: column;
  background-color: white;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  text-decoration: none;
  color: black;
  min-height: 250px;
  overflow: hidden;
}

.program-image {
  width: 100%;
  height: 205px;
  object-fit: cover;
}

.program-bar {
  display: flex;
  align-items: center;
  background-color: #9B50C0;
  /* Ejemplo de color morado */
  height: 32px;
  padding-left: 8px;
}

.program-bar svg {
  width: 24px;
  height: 24px;
}

.program-body {
  padding: 20px;
  flex-grow: 1;
}

.category {
  font-family: var(--lato);
  font-size: 16px;
  font-weight: 700;
  text-align: left;
  margin-bottom: 13px;
}

.program-title {
  font-family: var(--merri);
  font-size: 18px;
  font-weight: 900;
  line-height: 140%;
  text-align: left;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  margin-bottom: 13px;
}

.additional-info {
  font-size: 14px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.date-info,
.location-info {
  display: flex;
  align-items: center;
}

.date-info svg,
.location-info svg {
  margin-right: 8px;
}

.program-footer {
  margin-top: auto;
  text-align: right;
  padding-right: 20px;
  padding-bottom: 20px;
}

.see-more {
  font-family: var(--lato);
  font-size: 14px;
  font-style: italic;
  font-weight: 700;
  text-align: left;
  text-decoration: underline;
  text-transform: uppercase;
}

/* SectionWhy */
.banner-choose-us {
  position: relative;
  width: 100%;
}

.bg-mask-img {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  /* Asegura que la imagen esté detrás del contenido */
}

.bg-mask-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.banner-choose-us .methodologie-content {
  padding: 40px;
  position: relative;
  z-index: 1;
  /* Asegura que el contenido esté encima de la imagen */
}

/* Noticias */
.news-container {
  display: flex;
  overflow-x: auto;
  max-height: 450px;
  gap: 20px;
  margin-bottom: 80px;
}

.news-container__card {
  flex: 1 1 calc((1236px - 40px) / 3);
  /* Flexibilidad para caber en 1236px */
  min-width: 290px;
  min-height: 350px;
  background: #fff;
  border: 1px solid transparent;
  border-radius: 8px;
  overflow: hidden;
}

.news-container__link {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  height: 100%;
}

.news-container__image {
  width: 100%;
  max-height: 197px;
  object-fit: cover;
}

.news-container__info {
  padding: 16px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}

.news-container__meta {
  display: flex;
  align-items: center;
  margin-bottom: 8px;
}

.news-container__icon {
  margin-right: 8px;
}

.news-container__date {
  font-family: var(--lato);
  font-size: 16px;
  font-weight: 400;
  text-align: left;
  color: rgba(85, 88, 88, 1);
}

.news-container__title {
  font-family: var(--merri);
  font-size: 18px;
  font-weight: 400;
  text-align: left;
  margin: 16px 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.news-container__cta {
  font-family: var(--lato);
  font-size: 14px;
  font-style: italic;
  font-weight: 700;
  text-align: left;
  display: flex;
  align-items: center;
  margin-top: auto;
  text-decoration: underline;
  text-transform: uppercase;
}

.news-container__read-more {
  margin-right: 8px;
}

.news-container__arrow {
  fill: currentColor;
}

/* Vista Programas  */
.mini-hero {
  width: 100%;
  height: auto;
  min-height: 407px;
  max-height: 407px;
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 107px;
}

.mini-hero h1 {
  font-family: var(--merri);
  font-size: 44px;
  font-weight: 700;
  text-align: center;
  color: rgba(255, 255, 255, 1);
}

.mini-hero img {
  width: 100%;
  object-fit: cover;
  object-position: 0 -107px;
  filter: brightness(0.5);
  transform: scale(1.5);
  height: auto;
  min-height: 300px;
  max-height: 407px;
}

.mini-hero-content {
  position: absolute;
}

.breadcrumbs-container {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
}

.breadcrumbs-container.mobile {
  display: none;
}

.breadcrumbs-container.mobile a {
  color: rgba(18, 18, 18, 1);
}

.breadcrumbs-container.mobile path {
  fill: black;
}

.breadcrumb__link {
  text-decoration: none;
  color: white;
  padding: 5px 10px;
  border-radius: 4px;
}

.breadcrumb__link:hover {
  color: white;
}

.breadcrumb__separator {
  margin: 0 5px;
  color: white;
}

.breadcrumb__link--active {
  color: white;
}

.filter-section {
  min-width: 264px;
  max-width: 264px;
  border: 1px solid transparent;
  margin-right: 35px;
}

.program-filter-container {
  display: flex;
  margin-bottom: 80px;
}

.mini-filter-container {
  width: 100%;
  min-height: 48px;
  border: 1px solid transparent;
  margin-bottom: 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.programs-wrapper {
  width: 100%;
}

.search-container {
  position: relative;
  display: inline-block;
}

.custom-search-input {
  width: 100%;
  padding: 10px 12px 10px 40px;
  /* Ajusta el padding para que haya espacio para el icono */
  font-size: 16px;
  border: 1px solid #ccc;
  border-radius: 4px;
  outline: none;
  box-sizing: border-box;
}

.search-icon {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  /* Tamaño de la lupa */
  height: 20px;
  fill: none;
  /* El SVG usa 'stroke', así que no rellenes */
  stroke: #888;
  /* Cambia este color para el color del ícono */
  pointer-events: none;
  /* Esto asegura que el ícono no interfiera con la funcionalidad del input */
}

.pagination .page-item.active .page-link {
  background-color: #f9a825;
  /* Color de fondo activo */
  border-color: #f9a825;
  color: #fff;
}

.pagination .page-item .page-link:hover {
  background-color: #f0f0f0;
}

.pagination .page-item.disabled .page-link {
  color: #d3d3d3;
  pointer-events: none;
}

.pagination .page-item {
  margin: 0 5px;
}

.pagination .page-item .page-link {
  border: none;
  /* Sin bordes visibles */
}

.filter-title {
  font-family: var(--lato);
  font-size: 18px;
  font-weight: 400;
  text-align: left;
}

.search-container {
  width: 100%;
}

.search-container input {
  font-family: var(--lato);
  font-size: 14px;
  font-weight: 400;
  line-height: 21px;
  text-align: left;
  color: rgba(146, 149, 149, 1);
}

.programs-accordion .accordion-item {
  box-shadow: none !important;
  border: 0 !important;
  margin-bottom: 24px;
}

.programs-accordion .accordion-button {
  font-family: var(--lato);
  font-size: 18px;
  font-weight: 400;
  text-align: left;
  color: rgba(18, 18, 18, 1);
  padding: 0;
  min-height: 27px;
  background-color: transparent;
  box-shadow: none !important;
  border: 0 !important;
}

.programs-accordion .accordion-body {
  padding: 16px 0;
  border-bottom: 1px solid rgba(231, 231, 231, 1);
}

.programs-accordion .accordion-body .form-check {
  width: 100%;
  display: flex;
  align-items: center;
  min-height: 48px;
  padding: 12px 15px;
}

.programs-accordion .accordion-body .form-check-label {
  font-family: var(--lato);
  font-size: 16px;
  font-weight: 400;
  text-align: left;
  color: rgba(18, 18, 18, 1);
  cursor: pointer;
}

.programs-accordion .accordion-body .form-check-input {
  margin: 0;
  width: 24px;
  height: 24px;
  margin-right: 25px !important;
  box-shadow: none !important;
  border: 2px solid rgba(146, 149, 149, 1);
  cursor: pointer;
}

.programs-accordion .accordion-body .form-check-input:checked {
  background-color: black;
  border-color: black;
  border: 2px solid rgba(18, 18, 18, 1);
}

.programs-accordion .accordion-body .form-check-input[type="radio"]:checked {
  background-color: black;
  border-color: white;
  border: 2px solid rgba(18, 18, 18, 1);
}

.filter-btn {
  font-family: var(--lato);
  font-size: 14px;
  font-weight: 700;
  text-align: left;
  border-radius: 100px;
  border: 2px solid rgba(18, 18, 18, 1);
  background-color: white;
  text-transform: uppercase;
  padding: 10px 24px;
}

.filter-btn-mobile {
  width: 100%;
  font-family: var(--lato);
  font-size: 14px;
  font-weight: 700;
  text-align: left;
  border-radius: 100px;
  border: 2px solid transparent;
  background-color: rgba(255, 184, 0, 1);
  text-transform: uppercase;
  padding: 10px 24px;
  text-align: center;
}

.select-component {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-right: 8px;
}

.select-component .form-label {
  font-family: var(--lato);
  font-size: 18px;
  font-weight: 400;
  text-align: left;
  color: rgba(18, 18, 18, 1);
  margin: 0;
}

.select-component .form-select {
  width: 165px;
  min-height: 49px;
  border: 1px solid rgba(146, 149, 149, 1);
  font-family: var(--lato);
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0.5px;
  text-align: left;
  color: rgba(85, 88, 88, 1);
  border-radius: 4px;
}

.format-btn-container {
  display: flex;
  align-items: center;
  gap: 8px;
}

.format-btn-container .svg-icon {
  width: 48px;
  height: 48px;
  background-color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.format-btn-container .svg-icon.selected {
  background-color: rgba(231, 231, 231, 1);
}

.page-link {
  min-width: 24px;
  width: fit-content;
  height: auto;
  min-height: 24px;
  max-height: 24px;
  font-family: var(--lato);
  font-size: 12px;
  font-weight: 400;
  text-align: center;
  color: rgba(18, 18, 18, 1) !important;
  border-radius: 50%;
  background-color: rgba(248, 248, 248, 1) !important;
  display: flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  padding: 4px 0;
  text-align: center;
  justify-content: center;
}

.page-link.custom {
  background-color: transparent !important;
}

.rotate-left {
  transform: rotate(-180deg);
}

.pagination .page-item.active .page-link {
  background-color: rgba(255, 184, 0, 1) !important;
}

.page-item.disabled .page-link {
  color: rgba(189, 189, 189, 1) !important;
}

.page-item.disabled .page-link svg path {
  fill: rgba(189, 189, 189, 1);
}

.contact-section {
  padding: 58px 102px;
}

.section-title {
  font-family: var(--merri);
  font-size: 28px;
  font-weight: 700;
  text-align: left;
  color: rgba(18, 18, 18, 1);
  margin-bottom: 32px;
  max-width: 500px;
}

.section-subtitle {
  font-family: var(--merri);
  font-size: 18px;
  font-weight: 700;
  text-align: left;
  color: rgba(18, 18, 18, 1);
  margin-bottom: 16px;
}

.normal-text {
  font-family: var(--lato);
  font-size: 18px;
  font-weight: 400;
  text-align: left;
  color: rgba(18, 18, 18, 1);
  margin-bottom: 24px;
}

.normal-text.email {
  text-decoration: underline;
}

.content-container ul li {
  font-family: var(--lato);
  font-size: 16px;
  font-weight: 400;
  text-align: left;
  color: rgba(18, 18, 18, 1);
}

.content-container a {
  display: block;
  font-family: var(--lato);
  font-size: 18px;
  font-weight: 400;
  text-align: left;
  color: rgba(18, 18, 18, 1);
  margin-bottom: 16px;
}

.info-contact {
  font-family: var(--lato);
  font-size: 12px;
  font-weight: 400;
  text-align: left;
  color: rgba(0, 0, 0, 1);
  margin-bottom: 16px;
}

.news-container-v2 {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.news-container__card.fixed {
  min-width: auto;
}

.news-detail-section {
  padding: 58px 102px;
}

.detail-title {
  font-family: var(--merri);
  font-size: 35px;
  font-weight: 700;
  text-align: left;
  color: rgba(18, 18, 18, 1);
  padding: 0;
  margin-bottom: 32px;
}

.detail-img {
  margin-bottom: 32px;
  padding: 0;
}

.detail-abstract-title {
  font-family: var(--merri);
  font-size: 22px;
  font-weight: 700;
  text-align: left;
  color: rgba(18, 18, 18, 1);
  padding: 0%;
}

.detail-text {
  font-family: var(--lato);
  font-size: 16px;
  font-weight: 400;
  text-align: left;
  color: rgba(18, 18, 18, 1);
}

.detail-quote {
  font-family: var(--merri);
  font-size: 22px;
  font-weight: 700;
  text-align: left;
  color: rgba(18, 18, 18, 1);
}

.news-title {
  font-family: var(--merri);
  font-size: 22px;
  font-weight: 700;
  text-align: left;
  color: rgba(18, 18, 18, 1);
}

/* menu  filtro mobile */
/* General layout for menu */
/* General layout for menu */
.menu {
  position: fixed;
  top: 0;
  right: -80vw;
  width: 80vw;
  height: 100vh;
  /* Ocupa toda la altura del dispositivo */
  background-color: rgba(26, 26, 26, 1);
  z-index: 1000;
  transition: right 0.3s ease;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  /* Para evitar overflow innecesario */
}

.menu__overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.5);
  /* Capa semitransparente */
  z-index: 999;
  /* Asegúrate de que esté debajo del menú pero encima del contenido */
  display: none;
  /* Inicialmente oculto */
}

.menu.open .menu__overlay {
  display: block;
  /* Muestra el overlay cuando el menú esté abierto */
}

.menu__container {
  display: flex;
  flex-direction: column;
  height: 100%;
  z-index: 1000;
  /* Más alto que el overlay para que esté sobre él */
  overflow-y: auto;
  /* Permitir scroll en caso de que haya mucho contenido */
  padding: 16px;
  background-color: rgba(26, 26, 26, 1);
  /* Puedes ajustar el color */
}

.menu__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  background-color: rgba(26, 26, 26, 1);
  /* Puedes ajustar el color */
}

.menu__title {
  color: rgba(255, 255, 255, 1);
  font-family: var(--merri);
  font-size: 16px;
  font-weight: 700;
  text-align: left;
  text-transform: uppercase;
}

.menu__close {
  font-size: 1.5rem;
  background: none;
  border: none;
  cursor: pointer;
}

.menu__search {
  margin-top: 20px;
}

.menu__categories {
  flex-grow: 1;
  /* Ocupa todo el espacio disponible en el centro */
  margin: 20px 0;
  padding: 0;
  list-style: none;
  overflow-y: auto;
  /* Scroll interno para las categorías */
}

.menu__category {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 32px 0 16px;
  border-bottom: 1px solid #fff;
  cursor: pointer;
}

.menu__category-name {
  font-family: var(--lato);
  font-size: 16px;
  font-weight: 400;
  text-align: left;
  color: rgba(255, 255, 255, 1);
}

.menu__category--last {
  border-bottom: none;
}

.menu__footer {
  background-color: rgba(26, 26, 26, 1);
  /* Color para el footer */
  position: sticky;
  bottom: 0;
  /* Se mantiene siempre visible */
}

.menu__btn {
  padding: 10px;
  font-size: 1rem;
  cursor: pointer;
}

.menu__btn--clear {
  background: #ddd;
  margin-bottom: 10px;
}

.menu__btn--apply {
  background: yellow;
}

/* Submenu */
.submenu {
  position: fixed;
  top: 0;
  right: -80vw;
  width: 80vw;
  height: 100vh;
  /* Ocupa toda la altura del dispositivo */
  background-color: #fff;
  z-index: 1001;
  transition: right 0.3s ease;
  display: flex;
  flex-direction: column;
}

.submenu__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  background-color: rgba(26, 26, 26, 1);
}

.submenu__title {
  font-family: var(--merri);
  font-size: 16px;
  font-weight: 700;
  text-align: left;
  color: rgba(255, 255, 255, 1);
  padding-top: 10px;
}

.submenu__back,
.submenu__close {
  font-size: 1.5rem;
  background: none;
  border: none;
  cursor: pointer;
}

.submenu__content {
  display: flex;
  flex-grow: 1;
  overflow-y: auto;
  padding: 20px;
  background-color: rgba(26, 26, 26, 1);
  flex-direction: column;
}

.submenu__footer {
  padding: 10px;
  background-color: rgba(26, 26, 26, 1);
  position: sticky;
  bottom: 0;
}

.submenu__footer .hero__button--yellow,
.menu__footer .hero__button--yellow {
  min-width: 100%;
}

.menu__footer .hero__button {
  width: 100%;
  max-width: 100%;
}

.submenu__btn {
  width: 100%;
  padding: 10px;
  background: yellow;
  border: none;
  cursor: pointer;
}

.submenu__checkbox {
  font-family: var(--lato);
  font-size: 14px;
  font-weight: 400;
  line-height: 21px;
  text-align: left;
  color: rgba(255, 255, 255, 1);
  display: flex;
  align-items: center;
  min-height: 48px;
}

.submenu__checkbox input {
  width: 18px;
  height: 18px;
  margin-right: 20px;
}

.submenu__content .form-check-input[type="checkbox"]:checked {
  background-image: url("../assets/personas/black-check.png");
  background-size: contain;
  /* Ajusta el tamaño de la imagen */
  background-repeat: no-repeat;
  /* Evita que la imagen se repita */
  background-position: center;
  /* Centra la imagen dentro del checkbox */
}

.submenu__content .form-check-input:checked[type="radio"] {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='-5 -5 10 10'%3E%3Ccircle r='3' fill='%23ffffff' stroke='%23000000' stroke-width='1.5'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.submenu__content .form-check-input:checked {
  background-color: white;
  box-shadow: none;
  border: 3px solid white;
}

.submenu__content .form-check-input:checked[type="radio"] {
  background-color: black;
  box-shadow: none;
  border: 3px solid white;
}

.filters-applied {
  margin-top: 20px;
}

.filters-applied__container {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.filter-box {
  display: flex;
  align-items: center;
  background-color: white;
  border-radius: 4px;
  padding: 6px 12px;
  min-height: 32px;
  border: 1px solid #ddd;
}

.filter-box__text {
  font-family: var(--lato);
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
  text-align: left;
  color: rgba(18, 18, 18, 1);
  margin-right: 14px;
}

.filter-box__remove {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  margin: 0;
  display: flex;
  align-items: center;
}

.filter-box__remove svg {
  width: 15px;
  height: 15px;
}

.banner__landing {
  width: 100%;
  min-height: 435px;
  position: relative;
  margin-bottom: 20px;
  margin-top: 20px;
  overflow: hidden;
}

.banner__landing img {
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
  height: 100%;
  object-fit: cover;
}

.banner__content {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  min-height: inherit;
  padding: 48px 120px;
}

.banner__content .title {
  border-radius: 8px;
  padding: 8px 16px;
  width: fit-content;
  height: fit-content;
  font-family: var(--merri);
  font-size: 44px;
  font-weight: 700;
  line-height: 120%;
  color: white;
}

.banner__content .subtitle {
  font-family: var(--merri);
  font-size: 22px;
  font-weight: 400;
  line-height: 120%;
  color: white;
  margin-bottom: 16px;
}

.banner__landing.top-left .banner__content {
  justify-content: start;
  align-items: start;
}


.banner__landing.top-center .banner__content {
  justify-content: center;
  align-items: start;
}

.banner__landing.top-center .banner__content p {
  text-align: center;
}

.banner__landing.top-right .banner__content {
  justify-content: end;
  align-items: start;
}

.banner__landing.top-right .banner__content p {
  text-align: end;
}

.banner__landing.center-left .banner__content {
  justify-content: start;
  align-items: center;
}

.banner__landing.center-center .banner__content {
  justify-content: center;
  align-items: center;
}

.banner__landing.center-center .banner__content p {
  text-align: center;
}

.banner__landing.center-right .banner__content {
  justify-content: end;
  align-items: center;
}

.banner__landing.center-right .banner__content p {
  text-align: end;
}

.banner__landing.bot-left .banner__content {
  justify-content: start;
  align-items: end;
}

.banner__landing.bot-center .banner__content {
  justify-content: center;
  align-items: end;
}

.banner__landing.bot-center .banner__content p {
  text-align: center;
}

.banner__landing.bot-right .banner__content {
  justify-content: end;
  align-items: end;
}

.banner__landing.bot-right .banner__content p {
  text-align: end;
}

/* Contenedor principal */
.course-card {
  background-color: #1e1e1e;
  /* Color oscuro aproximado */
  border-radius: 16px;
  padding: 8px 16px;
  color: #ffffff;
  display: flex;
  justify-content: center;
  margin-bottom: 36px;
  width: 100%;
  max-width: 995px;
}

/* Wrapper con distribución flexible */
.course-card__wrapper {
  width: 100%;
  max-width: 1440px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
}

/* Contenedor izquierdo */
.course-card__left {
  width: 100%;
  flex: 1;
}

.course-card__title {
  width: 100%;
  font-family: var(--lato);
  font-size: 18px;
  font-weight: 700;
  line-height: 120%;
  text-align: left;
  color: white;
}

/* Contenedor derecho */
.course-card__right {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex: 1;
  justify-content: flex-end;
}

.course-card__meta {
  display: flex;
  gap: 1.5rem;
  font-size: 0.875rem;
  color: #bdbdbd;
}

.course-card__type,
.course-card__duration {
  white-space: nowrap;
  font-family: var(--lato);
  font-size: 16px;
  font-weight: 400;
  line-height: 120%;
  text-align: left;
  color: white;
}

/* Botón CTA */
.course-card__cta {
  display: flex;
  align-items: center;
}

.course-card__button {
  background-color: #f5a623;
  color: #1e1e1e;
  font-family: var(--lato);
  font-size: 14px;
  font-weight: 700;
  text-align: left;
  border: none;
  border-radius: 30px;
  padding: 11px 16px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  text-decoration: none;
}

.course-card__button:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.course-card__icon {
  font-size: 0.75rem;
}

/* Nuevas clases */
.course__card {
  background-color: rgba(255, 255, 255, 1);
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.25);
  border-radius: 16px;
  padding: 40px;
  color: #ffffff;
  margin-bottom: 20px;
  margin-top: 20px;
  width: 100%;
  max-width: 995px;
}

.course__card .category__card {
  border-radius: 8px;
  font-family: var(--merri);
  font-size: 35px;
  font-weight: 400;
  text-align: center;
  max-width: fit-content;
  padding: 8px 20px;
  margin-bottom: 16px;
}

.course__card .category__card.orange {
  background-color: rgba(218, 108, 44, 1);
}
.course__card .category__card.purple {
  background-color: rgba(216, 98, 188, 1);
}

.course__title p {
  font-family: var(--merri);
  font-size: 35px;
  font-weight: 400;
  line-height: 44px;
  text-align: left;
  color: rgba(0, 0, 0, 1);
}

.course__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.header__left {
  width: 100%;
  max-width: 880px;
}

.img__card {
  border-radius: 50%;
  width: 200px;
  height: 200px;
  overflow: hidden;
  filter: brightness(0.6);
  margin-top: 20px;
}
.img__card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.course__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  position: relative;
  z-index: 2;
  background-color: rgba(255, 255, 255, 1);
  border-radius: 16px;
  padding: 20px 0px;
}
.button-custom {
  font-family: var(--lato);
  font-size: 14px;
  font-weight: 700;
  text-align: left;
  min-width: 232px;
  border: 2px solid rgba(18, 18, 18, 1);
  max-width: 100%;
}

/* nuevas clases - end */

@media (max-width: 1200px) {
  .banner__content {
    padding: 48px 60px;
  }
  .banner__content .title {
    font-size: 36px;
  }
}
@media (max-width: 992px) {
  .banner__content {
    padding: 40px;
  }
   /* clases nuevas */
  .course__footer {
    flex-wrap: wrap;
  }
  .course__header {
    flex-wrap: wrap;
  }
   /* clases nuevas */
}
@media (max-width: 768px) {
   /* clases nuevas */
  .course__card {
    padding: 20px;
  }
  .course__title p {
    font-size: 25px;
    line-height: 120%;
    max-width: 100%;
  }
  .button-custom {
    min-width: 100%;
  }

  .course__header {
    flex-direction: column-reverse;
  }
  .header__right {
    margin-bottom: 16px;
  }
  .course__card .category__card {
    font-size: 25px;
    margin-bottom: 25px;
  }
  .course__footer {
    padding: 0;
  }

  .course__footer .icon-text-box .text-box .text-box-title {
    font-size: 22px;
  }

  /* clases nuevas */
  .info-section.landing {
    flex-wrap: wrap;
  }
  .banner__content .subtitle {
    font-size: 13px;
  }
  .banner__content {
    padding: 40px 20px;
  }
  .banner__content .title {
    font-size: 20px;
  }
  .course-card__wrapper {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .course-card__right {
    width: 100%;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
  }

  .course-card__title {
    font-size: 18px;
    text-align: center;
  }
}