@charset "UTF-8";
/* Estructura Base */
.vm-tabs-wrapper {
  width: 100%;
  margin-top: 1rem;
  font-family: inherit;
}

.vm-tabs-content {
  background: white;
  padding: 1rem;
  border-radius: 16px;
  margin-top: 12px;
  box-shadow: 1px 1px 60px rgba(44, 44, 44, 0.2);
}

/* Cabecera de Pestañas */
.vm-tabs-header {
  display: flex;
  flex-wrap: wrap;
  background: white;
  margin-bottom: 1.5rem;
  gap: 10px;
  -webkit-box-shadow: 0px 0px 30px 5px rgba(32, 59, 113, 0.2);
  box-shadow: 0px 0px 30px 5px rgba(32, 59, 113, 0.2);
  padding: 6px;
  border-radius: 5em;
  position: sticky;
  top: 7rem;
}

.vm-tab-btn {
  background: none;
  border: none;
  padding: 10px 20px;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 600;
  color: #000;
  border-bottom: 3px solid transparent;
  transition: all 0.3s ease;
}
.vm-tab-btn:hover {
  background: rgba(0, 0, 0, 0.1);
  color: #000;
}
.vm-tab-btn.active {
  background: black;
  color: white;
}

/* Contenido */
.vm-tab-panel {
  display: none;
  animation: fadeIn 0.4s ease;
  padding: 0rem 0.3rem;
}
.vm-tab-panel h4 {
  color: var(--primary-color) !important;
}
.vm-tab-panel a {
  color: var(--primary-color) !important;
  font-weight: bold;
}
.vm-tab-panel p, .vm-tab-panel ul {
  font-size: 11pt !important;
  line-height: 1.7 !important;
}
.vm-tab-panel ul {
  margin-left: 1.4rem !important;
}
.vm-tab-panel.active {
  display: block;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(5px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* Responsive */
@media (max-width: 768px) {
  .vm-tabs-header {
    overflow-x: auto;
    flex-wrap: nowrap;
    white-space: nowrap;
  }
}
