.about-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 80px 150px;
  background: linear-gradient(135deg, #ffffff, #f2f2f2);
  border-radius: 20px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
  font-family: 'Segoe UI', sans-serif;
  flex-wrap: wrap;
  gap: 2rem;
}

.about-content {
  flex: 1 1 500px;
  animation: slideInLeft 1s ease;
}

.about-content h1 {
  font-size: 2.5rem;
  color: #f83333;
  margin-bottom: 1rem;
  position: relative;
}

.about-content h1::after {
  content: "";
  width: 60px;
  height: 4px;
  background-color: #ff6f00;
  position: absolute;
  bottom: -8px;
  left: 0;
  border-radius: 5px;
}

.about-content p {
  font-size: 1.1rem;
  color: #555;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.about-content ul {
  list-style: none;
  padding: 0;
}

.about-content ul li {
  margin-bottom: 12px;
  padding-left: 28px;
  position: relative;
  font-size: 1rem;
  color: #333;
}

.about-content ul li::before {
  content: "\f058";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  color: #ff6f00;
  position: absolute;
  left: 0;
  top: 0;
}

/* Imagen */
.about-section img {
  flex: 1 1 280px;
  max-width: 500px;
  transition: transform 0.4s ease;
  animation: slideInRight 1s ease;
}

.about-section img:hover {
  transform: scale(1.05) rotate(1deg);
}

/* Animaciones */
@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Responsive */
@media (max-width: 768px) {
  .about-section {
    flex-direction: column;
    text-align: center;
    padding: 40px 20px;
  }

  .about-content h1::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .about-section img {
    margin-top: 20px;
  }
}
