.about-text {
    max-width: 850px;
    margin: 0 auto 60px;
    text-align: center;
}
.about-text p {
    max-width: 850px;
    margin: 0 auto 60px;
}
.about-text h2 {
    font-size: 60px;
    color: var(--primary-color);
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 12px;
    text-align: center;
}
.about-text h2::after {
    content: "";
    width: 205px;
    height: 4px;
    background: var(--secondary-color);
    position: absolute;
    left: 330px;
    bottom: 0;
}
.about-text h3 {
    font-size: 15px;
    color: #555;
    margin-bottom: 25px;
    position: relative;
    text-align: center;
    margin-top: 25px;
}
.about-text p {
    font-size: 16px;
    line-height: 1.8;
    color: #444;
    margin-bottom: 15px;
}
.grid-lista {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 25px;
    margin-top: 25px;
}
.grid-lista a {
  position: relative;
  padding-left: 65px;
  font-weight: bold;
  border-radius: 10px;
  background-color: #e96d0a0f;
  width: auto;
  height: 40px;
  line-height: 40px;
  text-align: justify;
  color: var(--primary-color) !important;
}
.grid-lista a::before {
  content: "✔";
  position: absolute;
  left: 48px;
  color: var(--secondary-color);
  font-weight: bold;
}
.about-boxes {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 60px;
}
.about-box {
    padding: 35px 25px;
    border-radius: 14px;
    text-align: center;
    border: 1px solid #eee;
    transition: all 0.35s ease;
    box-shadow: 10px 10px 10px 10px rgba(63, 97, 160, 0.671);
}
.about-box:hover {
    transform: translateY(-8px);
}
.about-box i {
    font-size: 44px;
    color: var(--secondary-color);
    margin-bottom: 18px;
}
.about-box h3 {
    font-size: 21px;
    color: var(--primary-color);
    margin-bottom: 12px;
}
.about-box p {
    font-size: 15px;
    color: #666;
}
.cta {
    background: var(--cinza);
    text-align: center;
    padding: 60px 20px;
}
.cta h2 {
    font-size: 32px;
    color: var(--primary-color);
    margin-bottom: 15px;
}
.btn-cta, .btn-slide {
    background: var(--secondary-color);
    color: #fff;
    padding: 14px 30px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 4px;
}
.btn-cta:hover, .btn-slide:hover{
    background: var(--primary-color);
    color: #fff;
}
@media (max-width: 768px) {

    .grid-lista {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }

    .grid-lista a {
        height: auto;
        line-height: normal;
        padding-left: 50px;
        font-size: 15px;
    }

    .grid-lista a::before {
        left: 30px;
    }
}
