.about-store-section {
  background: linear-gradient(135deg, #f9f9fb 0%, #e6eff8 100%);
  padding: 80px 0;
  position: relative;
}

.about-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.about-text h2 {
  color: #722f6c;
  font-size: 2.5rem;
  margin-bottom: 20px;
  font-weight: 700;
}

.about-text p {
  font-size: 1.1rem;
  color: #444;
  line-height: 1.7;
  margin-bottom: 18px;
}

.whatsapp-button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 20px;
  padding: 14px 24px;
  background-color: #25d366;
  color: white;
  font-weight: 600;
  border-radius: 8px;
  font-size: 1.05rem;
  text-decoration: none;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.whatsapp-button:hover {
  background-color: #1ebe5d;
  transform: translateY(-2px);
}

.about-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.about-card {
  background: #fff;
  padding: 30px 25px;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-card i {
  font-size: 2.2rem;
  color: #722f6c;
  margin-bottom: 15px;
}

.about-card h3 {
  font-size: 1.3rem;
  color: #333;
  margin-bottom: 10px;
  font-weight: 600;
}

.about-card p {
  color: #555;
  font-size: 0.95rem;
  line-height: 1.4;
}

.about-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

/* Responsivo */
@media (max-width: 768px) {
  .about-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .about-text h2 {
    font-size: 2rem;
  }

  .about-cards {
    grid-template-columns: 1fr;
  }

  .whatsapp-button {
    justify-content: center;
  }
}
