

/* Responsive */
@media (max-width: 991px) {
  .card-info-glass {
    padding: 1.5rem 1rem;
    min-height: 250px;
  }

  .card-info-icon {
    font-size: 2.5rem;
  }

  .card-info-icon img {
    width: 50px;
    height: 50px;
  }

  .card-info-title {
    font-size: 1.5rem;
  }

  .card-info-text {
    font-size: 0.95rem;
  }

  .gsc-carousel-cards-info .owl-nav,
  .gsc-carousel-cards-info .owl-dots {
    position: static;
    justify-content: center;
    margin-top: 2rem;
  }
}

@media (max-width: 768px) {
  .gsc-carousel-cards-info {
    padding: 1.5rem 0;
  }

  .card-info-glass {
    padding: 1.5rem 1rem;
    min-height: 220px;
    border-radius: 20px;
  }

  .card-info-icon {
    font-size: 2rem;
  }

  .card-info-icon i {
    font-size: 2.5rem;
  }

  .card-info-icon img {
    width: 40px;
    height: 40px;
  }

  .card-info-title {
    font-size: 1.25rem;
  }

  .card-info-text {
    font-size: 0.9rem;
    line-height: 1.5;
  }
}

@media (max-width: 480px) {
  .card-info-glass {
    padding: 1.25rem 0.875rem;
    min-height: 200px;
  }

  .card-info-title {
    font-size: 1.125rem;
  }

  .card-info-text {
    font-size: 0.875rem;
  }
}

/* Mejora visual para fondos oscuros */
.card-info-glass {
  box-shadow:
    0 8px 32px rgba(0, 0, 0, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

/* Variante para fondos claros (agregar clase 'light-bg' al wrapper) */
.gsc-carousel-cards-info.light-bg .owl-dots button.owl-dot {
  background: rgba(0, 0, 0, 0.3) !important;
  border-color: rgba(0, 0, 0, 0.5) !important;
}

.gsc-carousel-cards-info.light-bg .owl-dots button.owl-dot.active {
  background: rgba(0, 0, 0, 0.8) !important;
  border-color: rgba(0, 0, 0, 0.8) !important;
}

.gsc-carousel-cards-info.light-bg .owl-nav button {
  background: rgba(0, 0, 0, 0.1) !important;
  border-color: rgba(0, 0, 0, 0.3) !important;
  color: #000 !important;
}

.gsc-carousel-cards-info.light-bg .owl-nav button:hover {
  background: rgba(0, 0, 0, 0.2) !important;
  border-color: rgba(0, 0, 0, 0.5) !important;
}

.mth-download-card {
  background-color: #E8F5F7;
  border-radius: 20px;
  padding: 30px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: none;
  text-decoration: none;
  color: inherit;
  position: relative;
  overflow: hidden;
}

.mth-download-card:hover {
  text-decoration: none;
}

.mth-download-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: #212626;
  margin: 0;
  position: relative;
  z-index: 2;
}

.mth-download-title:hover {
  color: #056B83;
}

.mth-download-btn {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: #212626;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  flex-shrink: 0;
  text-decoration: none;
  z-index: 2;
}

.mth-download-btn::before {
  content: '';
  position: absolute;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: #034554;
  transform: scale(1);
  transition: transform 0.4s ease;
  z-index: -1;
  right: 0;
  top: 50%;
  transform: translateY(-50%) scale(1);
}

.mth-download-card:hover .mth-download-btn::before {
  transform: translateY(-50%) scale(3.5);
  background-color: #7DD3E8;
}

.mth-download-btn svg {
  position: relative;
  z-index: 1;
}

.mth-download-btn:hover svg {
  transition: transform 0.4s ease;
  transform: scale(1.5);
}

.mth-download-icon {
  width: 28px;
  height: 28px;
  stroke: white;
  stroke-width: 2.5;
  fill: none;
}

.mth-download-icon:hover {
  stroke: #056B83;
  transform: scale(1);
  transition: transform 0.4s ease;
}

@media (max-width: 768px) {
  .mth-download-card {
    padding: 20px 25px;
  }

  .mth-download-title {
    font-size: 1.2rem;
  }

  .mth-download-btn {
    width: 50px;
    height: 50px;
  }

  .mth-download-btn::before {
    width: 50px;
    height: 50px;
  }

  .mth-download-card:hover .mth-download-btn::before {
    transform: translateY(-50%) scale(3);
  }

  .mth-download-icon {
    width: 24px;
    height: 24px;
  }
}


/* Tabs Component */
.mth-tabs-container {
  background-color: #0D5858;
  border-radius: 10px;
  padding: 8px;
  display: flex;
  gap: 8px;
  margin-bottom: 40px;
}

.mth-tab {
  flex: 1;
  padding: 18px 30px;
  border: none;
  border-radius: 10px;
  background-color: transparent;
  color: white;
  font-size: 1.1rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.mth-tab:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.mth-tab.active {
  background-color: #F4F4E8;
  color: #0D5858;
  font-weight: 600;
}

.mth-dynamic-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #1a1a1a;
  text-align: center;
  margin: 0;
  padding: 20px 0 30px;
}

/* Panels */
.mth-tabs-panels {
  width: 100%;
}

.mth-tab-panel {
  width: 100%;
}

/* Grid de archivos */
.mth-download-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

/* Card pequeña */
.mth-download-card {
  background: #E6F2F5;
  border-radius: 22px;
  min-height: 136px;
  padding: 22px 26px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-decoration: none;
  transition: all 0.3s ease;
}

.mth-download-card:hover {
  text-decoration: none;
  transform: translateY(-2px);
}

.mth-download-title {
  color: #1a1a1a;
  font-size: 22px;
  line-height: 1.2;
  font-weight: 500;
  margin: 0;
  padding-right: 16px;
  display: block;
}

.mth-download-btn {
  width: 64px;
  height: 64px;
  min-width: 64px;
  border-radius: 50%;
  background: #0D5858;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mth-download-icon {
  width: 28px;
  height: 28px;
  color: #fff;
}

.mth-tab-empty {
  text-align: center;
  padding: 30px 0;
}

/* Responsive */
@media (max-width: 1199px) {
  .mth-download-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 992px) {
  .mth-tabs-container {
    flex-direction: column;
    border-radius: 25px;
  }

  .mth-tab {
    text-align: center;
    padding: 15px 20px;
  }

  .mth-dynamic-title {
    font-size: 2rem;
  }

  .mth-download-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .mth-tab {
    font-size: 1rem;
    padding: 12px 15px;
  }

  .mth-dynamic-title {
    font-size: 32px;
  }

  .mth-download-grid {
    grid-template-columns: 1fr;
  }

  .mth-download-card {
    min-height: 110px;
    padding: 18px 20px;
  }

  .mth-download-title {
    font-size: 18px;
  }

  .mth-download-btn {
    width: 52px;
    height: 52px;
    min-width: 52px;
  }

  .mth-download-icon {
    width: 22px;
    height: 22px;
  }
}




.btn-slider-home-1 a {
  background-color: #056B83 !important;
  border-radius: 16px !important;
  color: #fff !important;
}


.btn-slider-home-2 a {
  background-color: #fff !important;
  border-radius: 16px !important;
  color: #056B83 !important;
}



.gsc-video-box.style-2 .image .popup-video {

  color: #486284 !important;
  background: #fff !important;
}