.tb-cont {
  padding: 0 2%;
}
.tb-precio {
  background-color: #fff;
  padding: 40px 10%;
  border-radius: 20px;
  box-shadow: 0px 10px 30px 0px rgba(0, 0, 0, 0.1);
}
.tb-precio ul.list_custom {
  line-height: 18px;
  list-style-type: none !important;
  margin-left: 3%;
  padding-left: 3%;
  text-align: left;
}
.tb-precio ul.list_custom li {
  list-style: none !important;
}
.tb-precio ul.list_custom li i {
  margin-right: 6px;
}
@media only screen and (max-width: 768px) {
  .tb-cont {
    padding: 0;
  }
  .tb-precio {
    border-radius: 15px;
    margin: 3%;
    padding: 30px 3% 20px;
  }
}

.logo-cliente {
  width: 120px;
  height: 120px;
  border: 1px dotted #e6e6e6;
  border-radius: 50%;
}
.mb-0 {
  margin-bottom: 0 !important;
}
.mb-1 {
  margin-bottom: 1rem !important;
}

/* Modal minimalista */
.modal-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 9999;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.modal-overlay.active {
  display: flex;
  opacity: 1;
  align-items: center;
  justify-content: center;
}

.modal-content {
  background-color: white;
  border-radius: 8px;
  width: 90%;
  max-width: 700px;
  max-height: 80vh;
  overflow-y: auto;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  animation: slideUp 0.3s ease;
}

@keyframes slideUp {
  from {
    transform: translateY(30px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.modal-header {
  padding: 25px;
  border-bottom: 1px solid #f0f0f0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.modal-header h3 {
  margin: 0;
  font-size: 20px;
  color: #333;
}

.modal-close {
  background: none;
  border: none;
  font-size: 28px;
  color: #999;
  cursor: pointer;
  padding: 0;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.2s ease;
}

.modal-close:hover {
  color: #333;
}

.modal-body {
  padding: 25px;
  color: #555;
  line-height: 1.6;
  font-size: 14px;
}

.modal-body h3 {
  color: #333;
  margin-top: 20px;
  margin-bottom: 10px;
  font-size: 16px;
}

.modal-body p {
  margin: 0 0 15px 0;
  text-align: justify;
}

.modal-body p:last-child {
  margin-bottom: 0;
}

.modal-body b {
  color: #ffb526;
  font-weight: 600;
}

/* Responsivo */
@media (max-width: 768px) {
  .modal-content {
    width: 95%;
    max-height: 90vh;
  }

  .modal-header {
    padding: 20px;
  }

  .modal-header h2 {
    font-size: 18px;
  }

  .modal-body {
    padding: 20px;
    font-size: 13px;
  }
}
