.d-none {
    display: none;
}

.error {
    color: red;
    font-weight: 700;
    font-size: 1.5rem;
}

.guinda{
    color: #611232;
}

.dorado{
    color: #a57f2c;
}


/* Estilos para el modulo de coordinadoras */

.title-coordi {
    margin: 30px auto;
    max-width: 500px;
    font-size: 40px;
    text-align: center;
    color: #5E0202;
}

.back-button {
    display: flex;
    justify-content: end;
    align-items: center;
    gap: 3;
}

.back-button a {
    margin-top: 10px;
    text-decoration: none;
    font-weight: 400;
}

.bg-gray{
    background-color: #EBEBEB;
}

.p-5 {
    padding: 30px;
}

.center-items {
    display: flex;
    align-items: center;
    gap: 3px;
}

.evidencia {
    display: flex;
    justify-content: space-evenly;
    flex-wrap: wrap;
    margin-bottom: 30px;
    gap: 10px;
}

.evidencia-item {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: #ccc;
    width: 130px;
    height: 100px;
    border-radius: 10%;
    font-size: 12px;
    padding: 10;
    cursor: pointer;
    text-decoration: none;
    color: #414141;
}

.evidencia-item:hover {
  background-color: #a9a8a8;
  text-decoration: none;
  color: #414141;
}

.text-item {
    margin-top: 5px;
    text-align: center; 
    font-weight: 700;
}


.stat-container {
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
    padding: 1.5rem 2rem;
    background-color: transparent;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    border-radius: 8px;
    margin-bottom: 20px;
}

.stat-container-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px; 
  place-items: center;
  background-color: transparent;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  border-radius: 8px;
  margin-bottom: 20px;
}

@media (max-width: 900px) {
  .stat-container-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Ajuste a 1 columna en pantallas pequeñas */
@media (max-width: 600px) {
  .stat-container-grid {
    grid-template-columns: 1fr;
  }
}

.stat {
    padding: 1.5rem 2rem;
    width: 220px;
    text-align: center;
    user-select: none;
}

.stat-value svg {
    width: 1.2em;
    height: 1.2em;
    fill: #3498db; 
}


.stat-value {
      display: inline-flex;
      align-items: start;
      font-size: 2.5rem;
      font-weight: 700;
      color: #5E0202;
      margin-bottom: 0.3rem;
      gap: 0.5rem; 
}

.stat-title {
    font-size: 1.9 rem;
    font-weight: 600;
    font-family: "Patria","noso Sans", "Helvetica", "Arial", sans-serif;
    color: #34495e;
    margin-bottom: 0.5rem;
    letter-spacing: 0.06em;
}


.stat-desc {
    font-size: 1.3rem;
    color: #6b7575;
    font-weight: 600;
}

.stat-detail {
    display: flex;
    font-size: 15px;
    font-weight: bold;
    justify-content: space-evenly;
}

.stat-detail div {
    display: flex;
    flex-direction: column;
}

.formatos {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}
