.elementor-6325 .elementor-element.elementor-element-3e9cd8f{--display:flex;}/* Start custom CSS for text-editor, class: .elementor-element-bda20b2 *//* Estilos generales */
.acerca-de-nosotros {
  background: linear-gradient(135deg, #aa8add 0%, #f4b6e5 100%);  /* Fondo con degradado */
  padding: 80px 0;
  font-family: 'Roboto', sans-serif;
}

.contenedor-acerca {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  color: #fff;
}

.titulo {
  text-align: center;
  font-size: 48px;
  color: #fff;
  margin-bottom: 40px;
  text-transform: uppercase;
  font-weight: bold;
  letter-spacing: 3px;
  text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.3);
}

.contenido-acerca {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 60px;
}

.columna-izquierda, .columna-derecha {
  width: 48%;
  background-color: rgba(74, 244, 239);  /* Fondo translúcido */
  padding: 20px;
  border-radius: 10px;
}

h2 {
  color: #aa8add;
  font-size: 32px;
  margin-bottom: 25px;
  text-transform: capitalize;
  font-weight: bold;
}

p {
  font-size: 18px;
  line-height: 1.8;
  margin-bottom: 30px;
  text-align: justify;
  color: #e1e1e1;  /* Color más suave para el texto */
}

.valores ul {
  list-style-type: none;
  padding: 0;
}

.valores li {
  background-color: #fff;
  color: #333;
  padding: 25px;
  margin-bottom: 30px;
  border-left: 5px solid #aa8add;
  border-radius: 8px;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.valores li:hover {
  background-color: #aa8add;
  color: #fff;
  transform: translateY(-10px);
}

.valores li strong {
  font-weight: bold;
}

.valores li:last-child {
  margin-bottom: 0;
}

/* Media Queries */
@media (max-width: 768px) {
  .contenido-acerca {
    flex-direction: column;
  }

  .columna-izquierda, .columna-derecha {
    width: 100%;
  }

  .titulo {
    font-size: 36px;
  }

  h2 {
    font-size: 28px;
  }

  p {
    font-size: 16px;
  }
}/* End custom CSS */