/* About Page Container */
.about-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1.5rem 1rem;
}

/* Hero Section */
.about-hero {
  text-align: center;
  padding: 3rem 1rem;
  background: linear-gradient(135deg, #000000 0%, #333333 100%);
  color: white;
  border-radius: var(--rounded-xl);
  margin-bottom: 2rem;
  box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
}

.about-hero-content {
  max-width: 800px;
  margin: 0 auto;
}

.about-hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.about-hero-subtitle {
  font-size: 1.25rem;
  opacity: 0.9;
}

/* About Sections */
.about-section {
  padding: 2.5rem 1.5rem;
  margin-bottom: 1.5rem;
  background: var(--color-surface);
  border-radius: var(--rounded-xl);
  box-shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.about-section:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
}

.about-section-alt {
  background: linear-gradient(135deg, var(--color-surface) 0%, var(--color-surface-alt) 100%);
}

.about-section-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.about-section-icon {
  color: #000000;
  margin-bottom: 1.25rem;
  background: var(--color-surface-alt);
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.about-section-title {
  font-size: 2.25rem;
  font-weight: 700;
  color: #000000;
  margin-bottom: 1.25rem;
}

.about-section-text {
  font-size: 1.125rem;
  color: var(--color-text-muted);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

/* Values Section */
.about-values {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
  position: relative;
}

.about-value-card {
  background: var(--color-surface);
  padding: 2rem;
  border-radius: var(--rounded-lg);
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid var(--color-border);
  position: relative;
  overflow: hidden;
}

/* Estilo específico para el tercer card */
.about-value-card:nth-child(3) {
  grid-column: 1 / -1;
  max-width: 400px;
  margin: 0 auto;
}

.about-value-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #000000 0%, #333333 100%);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.about-value-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
}

.about-value-card:hover::before {
  transform: scaleX(1);
}

.about-value-icon {
  color: #000000;
  margin-bottom: 1rem;
  background: var(--color-surface-alt);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}

.about-value-card h3 {
  font-size: 1.375rem;
  font-weight: 600;
  color: #000000;
  margin-bottom: 0.75rem;
}

.about-value-card p {
  color: var(--color-text-muted);
  line-height: 1.6;
}

/* CTA Section */
.about-cta {
  background: linear-gradient(135deg, #000000 0%, #333333 100%);
  color: white;
  padding: 3rem 1.5rem;
  border-radius: var(--rounded-xl);
  text-align: center;
  margin-top: 2rem;
  box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
}

.about-cta-content {
  max-width: 600px;
  margin: 0 auto;
}

.about-cta-title {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.about-cta-text {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

/* Responsive Design */
@media (max-width: 768px) {
  .about-hero-title {
    font-size: 2.75rem;
  }

  .about-section-title {
    font-size: 2rem;
  }

  .about-values {
    grid-template-columns: 1fr;
  }

  .about-value-card:nth-child(3) {
    max-width: none;
  }

  .about-cta-title {
    font-size: 2rem;
  }

  .about-section {
    padding: 2rem 1rem;
  }
}

@media (min-width: 1024px) {
  .about-container {
    padding: 2rem;
  }

  .about-hero {
    padding: 4rem 2rem;
  }

  .about-section {
    padding: 3rem 2rem;
  }
} 