html {
  font-family: 'Montserrat', sans-serif;
}

.content-title {
  width: 100%;
  text-align: center;
  color: white;
}

.container-modal {
  background-color: #f0f8ff;
  width: 900px;
  max-width: 96vw;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0px 10px 15px -3px rgba(0, 0, 0, 0.3);
  margin: 0 auto;
}

.tab-buttons {
  display: flex;
  gap: 8px;
}

.tab-btn {
  width: 100%;
  border: none;
  color: #ffffff;
  background-color: #f0f8ff;
  border-radius: 8px 18px 0px 0px;
  font-weight: 500;
  padding: 12px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.tab-btn-mod1.active,
.tab-btn-mod1:hover {
  background-color: #2e89a9;
}

/* .tab-btn-mod2.active,
.tab-btn-mod2:hover {
  background-color: #ff8f12;
} */

.tab-btn:not(.active):not(:hover) {
  color: #2e89a9;
}

.tab-contents {
  width: 100%;
}

.content {
  display: none;
}

.content.show {
  display: flex;
  gap: 14px;
  border-radius: 0px 0px 8px 8px;
  padding: 16px;
  flex-wrap: wrap;
}

.content-mod1.show {
  background-color: #2e89a9;
  color: #fff;
}

.content-mod2.show {
  background-color: #ff8f12;
  color: #fff;
}

.filas-modal {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.columna-modal {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-width: 240px;
}

.boton-enlace {
  background: #fff;
  color: #2e89a9;
  border: 2px solid #2e89a9;
  border-radius: 6px;
  font-weight: bold;
  padding: 8px 20px;
  text-decoration: none;
  transition: 0.2s;
}

.boton-enlace:hover {
  background: #2e89a9;
  color: #fff;
}

/* Responsive: Tablets y móviles */
@media (max-width: 700px) {
  .container-modal {
    width: 100%;
    max-width: 100vw;
    padding: 10px;
  }
  .filas-modal {
    flex-direction: column;
    gap: 16px;
  }
  .content.show {
    padding: 8px;
    gap: 8px;
  }
  .columna-modal {
    min-width: unset;
  }
}
