/* Página Sobre */
.sobre-page {
  padding: 40px;
}

.sobre-hero {
  text-align: center;
  padding: 60px 0;
  margin-bottom: 60px;
}

.sobre-hero h1 {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--primary-color);
}

.sobre-tagline {
  font-size: 20px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--text-light);
  font-weight: 300;
}

.sobre-content {
  max-width: 900px;
  margin: 0 auto;
}

.sobre-text {
  margin-bottom: 60px;
}

.sobre-text h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 24px;
  color: var(--primary-color);
}

.sobre-text p {
  font-size: 16px;
  line-height: 1.8;
  color: var(--text-light);
  margin-bottom: 20px;
}

.sobre-values {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-bottom: 60px;
}

.value-item {
  padding: 30px;
  background: white;
  border-radius: 12px;
  box-shadow: var(--shadow-sm);
  text-align: center;
}

.value-item h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--primary-color);
}

.value-item p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-light);
}

.sobre-mission {
  margin-bottom: 60px;
  padding: 40px;
  background: white;
  border-radius: 12px;
  box-shadow: var(--shadow-sm);
}

.sobre-mission h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 24px;
  color: var(--primary-color);
}

.sobre-mission p {
  font-size: 16px;
  line-height: 1.8;
  color: var(--text-light);
}

.sobre-contact {
  padding: 40px;
  background: var(--primary-color);
  color: white;
  border-radius: 12px;
  text-align: center;
}

.sobre-contact h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 16px;
  color: white;
}

.sobre-contact > p {
  font-size: 16px;
  margin-bottom: 32px;
  opacity: 0.9;
}

.contact-info {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.contact-item {
  font-size: 16px;
}

.contact-item strong {
  display: block;
  margin-bottom: 8px;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  opacity: 0.8;
}

@media (max-width: 768px) {
  .sobre-hero h1 {
    font-size: 36px;
  }

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

  .contact-info {
    flex-direction: column;
    gap: 24px;
  }
}







