.title1 {
        font-size: 30px;
        margin-bottom: 30px;
    }

.title2 {
        font-size: 20px;
        margin-bottom: 30px;
    }  
    
.title3 {
        margin-bottom: 60px;
    }    


.numeraria {
    padding: 6rem 0;
    text-align: center;
  }

  .numeraria__title {
    margin-bottom: 2rem;
  }

  .numeraria__subtitle {
    margin-bottom: 4rem;
    font-size: 1.2rem;
    color: var(--text);
    line-height: 1.6;
  }

  .numbers {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin: 2rem auto 0;
    justify-items: center;
  }
  

  .numbers__icon{
    
    width: 40px;
    height: auto;
    margin-bottom: 0.5rem;
     order: 1; /* va primero aunque esté al final en HTML */
    flex-shrink: 0;
    
  }

  .numbers__item {

    width: 100%;
    max-width: 280px; 
    height: 120px;
    background-color: #ffff;
    color: #E20077;
    border: 2px solid #006990;  
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 1rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s;
  }
   
  /*prueba de nuevo css*/
.numbers__item {
  display: flex;
  flex-direction: column; /* Móvil: ícono arriba */
  align-items: center;
  text-align: center;
}

.numbers__icon {
  width: 40px;
  margin-bottom: 0.5rem;
}

.numbers__icon__1{
    width: 40px;
    margin-bottom: -6.5rem;
}

.numbers__icon img {
  width: 100%;
  height: auto;
  display: block;
}

  .numbers_txt{
    color:  #5E6A71;
    font-weight: bold;
  }

  .numbers__item:hover {
    transform: scale(1.05);
  }

  .numbers__count {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 0.5rem;
  }

  .numbers_txt {
    font-size: 14px;
    line-height: 1.2;
    text-wrap: balance;
    text-align: center;
  }

  @media (min-width: 768px) {
    .numbers {
      grid-template-columns: repeat(4, 1fr);
      gap: 2.5rem 3rem;
      margin-bottom: 20px;
    }

    .numbers__item {
      max-width: 100%;
      width: 100%;
      height: 142px;
    }

    .numbers__count {
      font-size: 30px;
    }

    .numbers_txt {
      font-size: 16px;
    }

    
  }

  @media (max-width: 400px) {
    .numbers__item {
      max-width: 100%;
      height: 100%;
    }

    .numbers__count {
      font-size: 20px;
    }

    .numbers_txt {
      font-size: 12px;
    }
/*
    .numbers__icon{
      width: 28px;
    }
      */
  }