.about-boton-section {
  background: #000;
  color: white;
  padding: 5rem 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-container {
  max-width: 1200px;
  text-align: center;
  width: 100%;
}

.about-title {
  font-size: 2.25rem;
  font-weight: bold;
  background: linear-gradient(to right, #a855f7, #06b6d4);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 3rem;
}

@media (min-width: 768px) {
  .about-title {
    font-size: 3rem;
  }
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  font-size: 1.1rem;
  color: #d4d4d8;
}

@media (min-width: 640px) {
  .about-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.about-card {
  border: 1px solid #a855f7;
  padding: 2rem;
  border-radius: 1.5rem;
  background: linear-gradient(to bottom right, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
  backdrop-filter: blur(8px);
  box-shadow: 0 0 25px 5px rgba(168, 85, 247, 0.7);
  transition: box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}


.about-card:hover {
  box-shadow: 0 0 35px 8px rgba(168, 85, 247, 0.9);
}

.about-card img {
  width: 96px;
  height: 96px;
  object-fit: contain;
  margin: 0 auto 1rem;
}
