@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

/* ================================
   FUENTES Y CONFIGURACIÓN GLOBAL
================================ */
body, input, button, select {
  font-family: 'Poppins', sans-serif;
  color: #2d3748;
  margin: 0;
  padding: 0;
}

.contenedor-global {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 10px 15px;
}

/* ================================
   TARJETAS DE PROYECTOS
================================ */
.mt-card {
  background: #ffffff;
  border-radius: 12px; 
  padding: 20px;
  margin: 20px auto;
  width: 100%;
  box-shadow: 0 4px 15px rgba(134, 21, 66, 0.1);
  position: relative;
  border: 1px solid #e6e2e8;
  transition: all 0.3s ease;
  overflow: hidden;
  z-index: 3;
}

.mt-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(134, 21, 66, 0.2);
}

.mt-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 6px; 
  height: 100%;
  background: linear-gradient(180deg, #861542, #a83267);
  border-radius: 12px 0 0 12px;
}

/* ================================
   TITULARES
================================ */
.mt-nombre-proyecto {
  font-size: 21px;
  font-weight: 700;
  text-align: left;
  margin-bottom: 15px;
  color:#000;
  text-transform: uppercase;
  text-align: center;
}

.mt-nombre-tarea {
  font-size: 16px;
  font-weight: 600;
  color: #000;
  margin-bottom: 0;
  text-transform: uppercase;
}

/* ================================
   INFO DE TARJETA
================================ */
.mt-info {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 15px;
  
}

.mt-info-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  color: #000;
  justify-content: center;
}


.mt-info-icon {
  font-size: 1.5rem;
  color: #861542;
}

/* ================================
   LISTA DE TAREAS
================================ */
.mt-tareas-lista {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.mt-item-en-proceso {
  background: #fff;
  border-radius: 10px;
  padding: 12px 15px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  transition: all 0.2s ease;
  border: 1px solid #f0e6eb;
}

.mt-item-en-proceso:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 18px rgba(134,21,66,0.12);
  border-color: #861542;
}

/* ================================
   HEADER DE TAREA
================================ */
.mt-header {
  display: flex;
  align-items: center;
  gap: 10px;
}

.mt-icono-estado {
  font-size: 1.6rem;
}

/* ================================
   FOOTER DE TAREA
================================ */
.mt-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.mt-estatus {
  padding: 6px 12px;
  border-radius: 18px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  background: #fde8f0;
  color: #861542;
}

.mt-fecha {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 600;
  color: #861542;
  background: #fdf0f5;
  padding: 5px 10px;
  border-radius: 10px;
}

.mt-fecha-icon {
  font-size: 1rem;
  color: #861542;
}

/* ================================
   BOTONES
================================ */
.mt-btn-modificar-tarea {
  padding: 8px 16px;
  background: #861542;
  color: white;
  border-radius: 8px;
  font-weight: 500;
  font-size: 13px;
  display: flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  transition: all 0.2s ease;
  border: none;
}

.mt-btn-modificar-tarea:hover {
  background: linear-gradient(90deg, #861542, #a83267);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(134,21,66,0.3);
}

/* ================================
   BUSCADOR
================================ */


/* ================================
   ANIMACIONES
================================ */
@keyframes pulse {
  0%,100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

@keyframes bounce {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-3px); }
}

/* ================================
   RESPONSIVE
================================ */
@media (max-width: 768px) {
  .mt-card { padding: 15px; }
  .mt-nombre-proyecto { font-size: 18px; }
  .barra-busqueda-global-input { font-size: 13px; }
  .mt-tareas-lista { gap: 10px; }
  .mt-footer { gap: 8px; }
  .mt-btn-modificar-tarea { padding: 6px 12px; font-size: 12px; }
}


