    .card-educacao-container {
        order:1
    }
    .card-assistencia-container {
        order: 3;
    }
    .numeros-educacao {
        order: 2;
    }
    .numeros-assistencia {
        order: 4;
    }
.section-numeros {
    margin: 0 auto;
    background-color: #0096DE;
}   
.section-numeros .card {
    background-color: #fff;
    border-radius: 8px;
    min-height: 218px;
}
.section-numeros .card h3 {
    border-bottom: none;
    font-family: 'Manrope';
    margin-top: 30px;
    font-size: 24px;
    color: #0096DE;
    font-weight: 700;
    text-align: left;
}
.section-numeros .card p {
    color: #000;
    font-family: 'Manrope';
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    padding-top: 20px;
}
.container-numeros {
    padding: 0 0 40px 0;
}
.container-count {
  background-color: #1F325B;
  border-radius: 8px;
  width: 100%;
  margin-top: 30px;
  display: flex;
  flex-direction: row;
  gap: 50px;
  align-items: center; /* ← centraliza os .count-item verticalmente */
  justify-content: center;
  padding: 70px 0;
}

.count-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
}

.count-numero {
  color: #0096DE;
  font-family: 'Manrope';
  font-weight: 800;
  font-size: 41px;
  position: relative;
  padding-left: 23px; /* espaço para o "+" */
  line-height: 1; /* ← essencial para altura previsível */
}

.count-numero::before {
  content: '+';
  position: absolute;
  left: 0;
  top: 50%;               /* ← centraliza verticalmente no .count-numero */
  transform: translateY(-50%);
  color: #0096DE;
  font-weight: bold;
  font-family: 'Manrope';
  font-size: 41px;
  line-height: 1;
}

.count-texto {
  color: #FFFFFF;
  font-family: 'Manrope';
  font-weight: 800;
  font-size: 16px;
  text-transform: uppercase;
  margin-top: 15px; /* espaço entre número e texto */
  line-height: 1;
}

.count-texto::before {
    content: '';
    display: block;
    width: 30px;
    height: 2px;
    background-color: #fff;
    margin-bottom: 10px;
    position: absolute;
    bottom: 11px;
    left: 50%;
    transform: translate(-50%, 0);    
}
.section-numeros div .card {
    background-repeat: no-repeat;
    background-position: center left;
    width: 100%;
}
.section-numeros div .card-bg {
    width: 87px;
    background-position: center left;
    background-size: contain;
    background-repeat: no-repeat;
}
.section-numeros div .card-content {
    width: 100%;
    padding-left: 21px;
    padding-right: 20px;
    max-width: max-content;
}
.section-numeros div .card-educacao .card-bg  {
    background-image: url('../images/bg-card-1.svg');
}
.section-numeros div .card-assistencia .card-bg  {
    background-image: url('../images/bg-card-2.svg');
}
/* .section-numeros div .card:nth-child(1) {
    background-image: url('../images/bg-card-1.svg');
}
.section-numeros div .card:nth-child(2)  {
    background-image: url('../images/bg-card-2.svg');
}
.section-numeros div .card:nth-child(3)  {
    background-image: url('../images/bg-card-2.svg');
} */

@media (min-width: 990px) {
    .desknone {
        display:none;
    }
}

@media (max-width: 990px) {
    .container-count {
        background-color: #1F325B;
        border-radius: 8px;
        width: 100%;
        margin: 0;
        display: flex;
        flex-direction: column;
        gap: 50px;
        align-items: center; /* ← centraliza os .count-item verticalmente */
        justify-content: center;
        padding: 30px 0;
    }
    .card p{
        padding-bottom: 20px;
        text-align: left !important;
    }
    .card {
        margin: 0;
    }
    .card h3 {
        padding-top: 20px;
    }
    .section-numeros .card {
        display: flex;
    }
    .section-numeros .card h3 {
        margin-top: 5px;
        text-align: left;
    }
    .mobilenone {
        display:none;
    }
}

@media (min-width: 991px) and (max-width: 1399px) {
    .card-educacao-container, .card-assistencia-container, .click-assistencia, .click-educacao {
        width: 100%;
    }

    .click-assistencia, .click-educacao {
        display: flex;
    }
    .section-numeros div .card {
        display: flex;
    }
    .section-numeros div .card-bg {
        width: 160px;
    }
    .section-numeros .card p {
        font-size: 20px;
        line-height: 30px;
    }
    .section-numeros div .card-content {
        width: 100%;
    }
    .card-assistencia-container {
        margin-top: 25px;
    }
}

@media (min-width: 1400px) {
    .card-educacao-container {
        order:1
    }
    .card-assistencia-container {
        order: 2;
    }
    .numeros-educacao {
        order: 3;
    }
    .numeros-assistencia {
        order: 4;
    }
    .section-numeros div .card {
        width: 412px;
        display: flex;
        min-height: 234px;
    }
    .section-numeros div .card-bg {
        width: 105px;
    }
    .section-numeros div .card-content {
        min-width: 235px;
        padding-left: 30px;
    }
    .container-count {
        margin-top: 5px;
    }
    .cards-container {
        flex-wrap: wrap;
    }

    .card-assistencia:hover, .card-educacao:hover {
        cursor: pointer;
        background-color: #E5E7EB;
    }

    .numeros-educacao {
    opacity: 1;
    pointer-events: auto;
    transition: opacity 0.3s ease;
    }

    .numeros-assistencia {
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    margin-top: -243px;
    }

    /* hover no box 1 */
    .card-assistencia-container:hover ~ .numeros-educacao {
    opacity: 0;
    pointer-events: none;
    }

    .card-assistencia-container:hover ~ .numeros-assistencia {
    opacity: 1;
    pointer-events: auto;
    }
    .numeros-assistencia {
        flex-direction: row;
    }
}