/* Seção Sobre */
.about-section {
  padding: 80px 0;
  background: linear-gradient(to bottom, #ffffff 0%, #f8fafc 100%);
}

.features-container {
  max-width: 1200px;
  margin: 0 auto 60px;
  padding: 0 20px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

/* Cards de Destaque */
.feature-card {
  background: white;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  text-align: center;
  transition: transform 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
}

.feature-icon {
  font-size: 2.5rem;
  color: #722f6c;
  margin-bottom: 20px;
}

.feature-card h3 {
  color: #722f6c;
  font-size: 1.5rem;
  margin-bottom: 15px;
}

.feature-card p {
  font-size: 1rem;
  line-height: 1.6;
  color: #555;
}

/* Conteúdo Principal */
.about-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 60px;
}

.about-text {
  flex: 1 1 500px;
}

.about-text h2 {
  color: #722f6c;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 25px;
  line-height: 1.3;
}

.about-text p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #444;
  margin-bottom: 25px;
}

.about-text strong {
  color: #722f6c;
}

.about-image {
  flex: 1 1 400px;
  position: relative;
}

.about-image img {
  max-width: 100%;
  border-radius: 12px;
  box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.experience-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: #722f6c;
  color: white;
  padding: 15px 25px;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.experience-badge div:first-child {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1;
}

.experience-badge div:last-child {
  font-size: 1rem;
}

/* Responsivo */
@media (max-width: 768px) {
  .about-content {
    flex-direction: column;
    gap: 40px;
  }
  
  .experience-badge {
    bottom: -15px;
    right: 15px;
  }
}