.section-title-about {
  text-align: center;
  font-size: 2.2rem;
  margin-bottom: 3rem;
  margin-top: 3rem;
  color: var(--primary-color);
  position: relative;
  letter-spacing: 0.5px;
}

.section-title-about::after {
  content: "";
  width: 60px;
  height: 3px;
  background: var(--accent-color);
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
}

.about {
  background-color: #fff;
  width: 100%;
  height: 113vh;
}

.about-container-about {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: stretch;
  justify-content: center;
}

.about-image-about {
  width: 100%;
  height: 100%;
}

.about-image-about img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Media Queries para responsividade */
@media (min-width: 768px) {
  .about {
    height: 113vh; /* Mantém altura original em tablets */
  }

  .about-container-about {
    flex-direction: row; /* Volta para linha em tablets+ */
    align-items: stretch;
  }

  .about-image-about {
    height: 100%; /* Volta altura total */
  }

}

@media (min-width: 1024px) {
  .about {
    height: 113vh; /* Mantém altura em desktop */
  }
}

/* Responsividade para a nova estrutura de texto */
@media (max-width: 768px) {
  .services-grid div[style*="grid-template-columns"] {
    grid-template-columns: 1fr !important;
    gap: 1rem !important;
  }
  
  .services-grid div[style*="padding: 1.5rem"] {
    padding: 1rem !important;
    text-align: center !important;
  }
  
  .services-grid h4 {
    font-size: 1.1rem !important;
  }
  
  .services-grid p {
    font-size: 0.9rem !important;
  }
}

@media (max-width: 576px) {
  .services-grid p {
    font-size: 0.95rem !important;
    padding: 0 10px;
  }
  
  .services-grid h3 {
    font-size: 1.2rem !important;
    margin: 2rem 0 1rem !important;
  }
  
  .services-grid div[style*="padding: 1.5rem"] {
    margin: 0 10px !important;
  }
}

