.p-5-s21{
	padding: 3rem;
}


body{
	font-family: "Poppins", sans-serif;
}

a{
	text-decoration: none;
}
a:hover{
	text-decoration: none;
}
.btn-teal:hover{
	background: #000;
}

.btn-teal{
	background: #000;
}
.badge {
  display: inline-block;
  padding: 0.25em 0.4em;
  font-size: 75%;
  font-weight: 700;
  line-height: 1;
  text-align: center;
  white-space: nowrap;
  vertical-align: baseline;
  border-radius: 0.25rem;
}
.badge:empty {
  display: none;
}
.btn .badge {
  position: relative;
  top: -1px;
}
.badge-pill {
  padding-right: 0.6em;
  padding-left: 0.6em;
  border-radius: 10rem;
}
.badge-primary {
  color: #fff;
  background-color: #2f1951;
}
.badge-primary[href]:focus, .badge-primary[href]:hover {
  color: #fff;
  text-decoration: none;
  background-color: #0062cc;
}
.badge-secondary {
  color: #fff;
  background-color: #868e96;
}
.badge-secondary[href]:focus, .badge-secondary[href]:hover {
  color: #fff;
  text-decoration: none;
  background-color: #6c757d;
}
.badge-success {
  color: #fff;
  background-color: #28a745;
}
.badge-success[href]:focus, .badge-success[href]:hover {
  color: #fff;
  text-decoration: none;
  background-color: #1e7e34;
}
.badge-info {
  color: #fff;
  background-color: #17a2b8;
}
.badge-info[href]:focus, .badge-info[href]:hover {
  color: #fff;
  text-decoration: none;
  background-color: #117a8b;
}
.badge-warning {
  color: #111;
  background-color: #ffc107;
}
.badge-warning[href]:focus, .badge-warning[href]:hover {
  color: #111;
  text-decoration: none;
  background-color: #d39e00;
}
.badge-danger {
  color: #fff;
  background-color: #dc3545;
}
.badge-danger[href]:focus, .badge-danger[href]:hover {
  color: #fff;
  text-decoration: none;
  background-color: #bd2130;
}
.badge-light {
  color: #111;
  background-color: #f8f9fa;
}
.badge-light[href]:focus, .badge-light[href]:hover {
  color: #111;
  text-decoration: none;
  background-color: #dae0e5;
}
.badge-dark {
  color: #fff;
  background-color: #343a40;
}
.badge-dark[href]:focus, .badge-dark[href]:hover {
  color: #fff;
  text-decoration: none;
  background-color: #1d2124;
}

.btn-link{
	color: #000;
	text-decoration: none;
}

.modal-open {
  overflow: hidden;
}
.modal {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1050;
  display: none;
  overflow: hidden;
  outline: 0;
}
.modal.fade .modal-dialog {
  transition: -webkit-transform 0.3s ease-out;
  transition: transform 0.3s ease-out;
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(0, -25%);
          transform: translate(0, -25%);
}
.modal.show .modal-dialog {
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
}
.modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.modal-dialog {
  position: relative;
  width: auto;
  margin: 10px;
  pointer-events: none;
}
.modal-content {
  position: relative;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  pointer-events: auto;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 0.3rem;
  outline: 0;
}
.modal-backdrop {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1040;
  background-color: #000;
}
.modal-backdrop.fade {
  opacity: 0;
}
.modal-backdrop.show {
  opacity: 0.5;
}
.modal-header {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: start;
      align-items: flex-start;
  -ms-flex-pack: justify;
      justify-content: space-between;
  padding: 15px;
  border-bottom: 1px solid #e9ecef;
  border-top-left-radius: 0.3rem;
  border-top-right-radius: 0.3rem;
}
.modal-header .close {
  padding: 15px;
  margin: -15px -15px -15px auto;
}
.modal-title {
  margin-bottom: 0;
  line-height: 1.5;
}
.modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
      flex: 1 1 auto;
  padding: 15px;
}
.modal-footer {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: end;
      justify-content: flex-end;
  padding: 15px;
  border-top: 1px solid #e9ecef;
}
.modal-footer > :not(:first-child) {
  margin-left: .25rem;
}
.modal-footer > :not(:last-child) {
  margin-right: .25rem;
}
.modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .modal-dialog {
    max-width: 500px;
    margin: 30px auto;
  }
  .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .modal-lg {
    max-width: 800px;
  }
}

.hover-shadow:hover {
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
    transform: translateY(-3px);
    transition: all 0.2s ease-in-out;
}

@keyframes pulseSuccess {
  0% {
      transform: scale(1);
      box-shadow: 0 0 0 0 rgba(40, 167, 69, 0.7);
  }
  50% {
      transform: scale(1.02);
      box-shadow: 0 0 0 10px rgba(40, 167, 69, 0);
  }
  100% {
      transform: scale(1);
      box-shadow: 0 0 0 0 rgba(40, 167, 69, 0);
  }
}

@keyframes pulseError {
  0% {
      transform: scale(1);
      box-shadow: 0 0 0 0 rgba(220, 53, 69, 0.7);
  }
  50% {
      transform: scale(1.02);
      box-shadow: 0 0 0 10px rgba(220, 53, 69, 0);
  }
  100% {
      transform: scale(1);
      box-shadow: 0 0 0 0 rgba(220, 53, 69, 0);
  }
}

.profile-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}
.profile-card {
  background: white;
  border-radius: 12px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.1);
  margin-bottom: 24px;
  overflow: hidden;
}
.profile-header {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  padding: 32px;
  text-align: center;
}
.profile-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-size: 32px;
  font-weight: bold;
}
.profile-section {
  padding: 24px;
  border-bottom: 1px solid #e5e7eb;
}
.profile-section:last-child {
  border-bottom: none;
}
.section-title {
  font-size: 18px;
  font-weight: 600;
  color: #1f2937;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 16px;
}
.info-item {
  padding: 16px;
  background: #f9fafb;
  border-radius: 8px;
  border-left: 4px solid #3b82f6;
}
.info-label {
  font-size: 12px;
  font-weight: 500;
  color: #6b7280;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 4px;
}
.info-value {
  font-size: 16px;
  font-weight: 600;
  color: #1f2937;
}
.plan-badge {
  display: inline-flex;
  align-items: center;
  padding: 6px 12px;
  background: #10b981;
  color: white;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 500;
}
.btn-shop21 {
  background: #2e1751;
  color: white;
  border: none;
  padding: 12px 24px;
  border-radius: 6px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
}
.btn-shop21:hover {
  background: #2e1751;
  transform: translateY(-1px);
}
.btn-secondary {
  background: #f3f4f6;
  color: #374151;
  border: 1px solid #d1d5db;
  padding: 8px 16px;
  border-radius: 6px;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.2s;
}
.btn-secondary:hover {
  background: #e5e7eb;
}
.btn-danger {
  background: #ef4444;
  color: white;
  border: none;
  padding: 8px 16px;
  border-radius: 6px;
  font-size: 14px;
  cursor: pointer;
}
.form-group {
  margin-bottom: 16px;
}
.form-label {
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: #374151;
  margin-bottom: 6px;
}
.form-input {
  width: 100%;
  padding: 12px;
  border: 1px solid #d1d5db;
  border-radius: 6px;
  font-size: 14px;
  transition: border-color 0.2s;
}
.form-input:focus {
  outline: none;
  border-color: #2e1751;
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}
.collaborator-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px;
  background: #f9fafb;
  border-radius: 8px;
  margin-bottom: 12px;
}
.collaborator-info {
  display: flex;
  align-items: center;
  gap: 12px;
}
.collaborator-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #e5e7eb;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  color: #6b7280;
}
.collaborator-actions {
  display: flex;
  gap: 8px;
}
.status-indicator {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #10b981;
  display: inline-block;
  margin-right: 8px;
}



/* Fondo glaseado general */

.glass-effect {
  background: rgba(255, 255, 255, 0.899);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 -4px 30px rgba(0, 0, 0, 0.2);
  border-radius: 30px 0 0 0;
  color: #000;
}
  .offcanvas.offcanvas-bottom.glass-effect {
      background: rgba(255, 255, 255, 0.562);
      backdrop-filter: blur(16px);
      -webkit-backdrop-filter: blur(16px);
      border-top: 1px solid rgba(255, 255, 255, 0.2);
      box-shadow: 0 -4px 30px rgba(0, 0, 0, 0.2);
      border-radius: 30px 30px 0 0;
      color: #fff;
  }
  .offcanvas-bottom.glass-effect .card {
    background: rgba(255, 255, 255, 0.39);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 15px;
    transition: transform 0.2s ease-in-out, background 0.3s ease;
}

.offcanvas-bottom.glass-effect .card:hover {
    transform: translateY(-4px);
    background: rgba(255, 255, 255, 0.2);
}
.offcanvas-bottom.glass-effect .card a {
  color: #fff;
  text-decoration: none;
}

.offcanvas-bottom.glass-effect .card a:hover {
  text-decoration: underline;
}

/*kanban notas*/

.kanban-board {
  gap: 15px;
}

.kanban-column {
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.nota-card {
  background: white;
  border-radius: 6px;
  padding: 12px;
  margin-bottom: 10px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.1);
  cursor: move;
  transition: all 0.3s ease;
  border-left: 4px solid;
}

.nota-card:hover {
  box-shadow: 0 4px 8px rgba(0,0,0,0.15);
  transform: translateY(-2px);
}

.nota-card.dragging {
  opacity: 0.5;
  transform: rotate(5deg);
}

.kanban-content.drag-over {
  background-color: #e3f2fd !important;
  border: 2px dashed #2196f3 !important;
}

.nota-titulo {
  font-weight: bold;
  font-size: 14px;
  margin-bottom: 8px;
  color: #333;
}

.nota-contenido {
  font-size: 12px;
  color: #666;
  margin-bottom: 8px;
  line-height: 1.4;
}

.nota-fecha {
  font-size: 11px;
  color: #999;
  margin-bottom: 8px;
}

.nota-acciones {
  display: flex;
  gap: 5px;
}

.nota-acciones .btn {
  padding: 2px 6px;
  font-size: 11px;
}

/* Estilos para SortableJS */
.sortable-ghost {
  opacity: 0.4;
  background: #f8f9fa;
  border: 2px dashed #007bff;
}

.sortable-chosen {
  transform: scale(1.05);
  box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.sortable-drag {
  transform: rotate(5deg);
  opacity: 0.8;
}

/* Mejorar la apariencia del Kanban */
.kanban-board {
  gap: 15px;
}

.kanban-column {
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  background: white;
}

.kanban-content {
  min-height: 500px;
  background-color: #f8f9fa;
  border: 1px solid #dee2e6;
  border-top: none;
  border-radius: 0 0 8px 8px;
  padding: 10px;
}

.nota-card {
  background: white;
  border-radius: 6px;
  padding: 12px;
  margin-bottom: 10px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.1);
  cursor: move;
  transition: all 0.3s ease;
  border-left: 4px solid;
  position: relative;
}

.nota-card:hover {
  box-shadow: 0 4px 8px rgba(0,0,0,0.15);
  transform: translateY(-2px);
}

.nota-titulo {
  font-weight: bold;
  font-size: 14px;
  margin-bottom: 8px;
  color: #333;
  line-height: 1.3;
}

.nota-contenido {
  font-size: 12px;
  color: #666;
  margin-bottom: 8px;
  line-height: 1.4;
}

.nota-fecha {
  font-size: 11px;
  color: #999;
  margin-bottom: 8px;
}

.nota-acciones {
  display: flex;
  gap: 5px;
  justify-content: flex-end;
}

.nota-acciones .btn {
  padding: 4px 8px;
  font-size: 11px;
  border-radius: 4px;
}

/* Animaciones suaves */
.kanban-content {
  transition: background-color 0.3s ease, border-color 0.3s ease;
}

.nota-card {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Responsive */
@media (max-width: 768px) {
  .kanban-board {
      flex-direction: column;
  }
  
  .kanban-content {
      min-height: 300px;
  }
}

/* IA */
@keyframes ai-pulse {
    0% {
        box-shadow: 0 0 10px rgba(102, 126, 234, 0.4);
        transform: translateY(0px) scale(1);
    }
    50% {
        box-shadow: 0 0 25px rgba(118, 75, 162, 0.6), 0 0 35px rgba(102, 126, 234, 0.4);
        transform: translateY(-3px) scale(1.02);
    }
    100% {
        box-shadow: 0 0 10px rgba(102, 126, 234, 0.4);
        transform: translateY(0px) scale(1);
    }
}

@keyframes icon-glow {
    0% {
        filter: drop-shadow(0 0 5px rgba(102, 126, 234, 0.5));
        transform: scale(1);
    }
    100% {
        filter: drop-shadow(0 0 15px rgba(118, 75, 162, 0.8));
        transform: scale(1.1);
    }
}

@keyframes magic-rotate {
    0% {
        transform: rotate(0deg) scale(1);
        filter: drop-shadow(0 0 5px rgba(102, 126, 234, 0.5));
    }
    25% {
        transform: rotate(5deg) scale(1.05);
        filter: drop-shadow(0 0 10px rgba(118, 75, 162, 0.7));
    }
    50% {
        transform: rotate(0deg) scale(1.1);
        filter: drop-shadow(0 0 15px rgba(102, 126, 234, 0.8));
    }
    75% {
        transform: rotate(-5deg) scale(1.05);
        filter: drop-shadow(0 0 10px rgba(118, 75, 162, 0.7));
    }
    100% {
        transform: rotate(0deg) scale(1);
        filter: drop-shadow(0 0 5px rgba(102, 126, 234, 0.5));
    }
}

@keyframes text-shimmer {
    0% {
        opacity: 0.7;
        transform: translateX(0px);
    }
    50% {
        opacity: 1;
        transform: translateX(2px);
        color: #667eea;
    }
    100% {
        opacity: 0.7;
        transform: translateX(0px);
    }
}

.ai-card:hover {
    transform: translateY(-8px) scale(1.05) !important;
    box-shadow: 0 15px 35px rgba(102, 126, 234, 0.5), 0 5px 15px rgba(118, 75, 162, 0.3) !important;
    animation-play-state: paused;
}

.ai-icon:hover {
    animation-duration: 0.5s !important;
}

.ai-badge {
    font-weight: 500;
    letter-spacing: 0.5px;
}