.section-facts {
    display:flex;
}
.section-fact {
    flex:1;
    text-align:center;
    padding:15px;
}
.section-fact h3 {
    color:#B28756;
    font-size:45px;
}
.section-fact-line {
    width:20px;
    border-bottom:2px solid #B28756;
    margin:auto;
}
.section-fact h4 {
    margin-top:20px;
    text-transform: uppercase;
    font-size:18px;
}
.section-fact p {
    margin-top:10px;
    font-size:13px;
    color:#999;
}

.section-facts {
    display: flex;
}

.section-fact {
    flex: 1;
    text-align: center;
    padding: 15px;
}

.section-fact h3 {
    color: #B28756;
    font-size: 45px;
}

.section-fact-line {
    width: 20px;
    border-bottom: 2px solid #B28756;
    margin: auto;
}

.section-fact h4 {
    margin-top: 20px;
    text-transform: uppercase;
    font-size: 18px;
}

.section-fact p {
    margin-top: 10px;
    font-size: 13px;
    color: #999;
}

/* -------- RESPONSIVIDADE -------- */

@media (max-width: 768px) {
  .section-facts {
    flex-wrap: wrap;
  }

  .section-fact {
    flex: 0 0 50%;
    padding: 10px;
  }

  .section-fact h3 {
    font-size: 38px;
  }

  .section-fact h4 {
    font-size: 16px;
  }

  .section-fact p {
    font-size: 12px;
  }
}

@media (max-width: 480px) {
  .section-fact {
    flex: 0 0 100%;
  }

  .section-fact h3 {
    font-size: 30px;
  }

  .section-fact h4 {
    font-size: 14px;
  }

  .section-fact p {
    font-size: 11px;
  }
}
