/* Quem Somos section - image left, text right */
.org-about {
  background: var(--gradient-soft);
}

.org-about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 66px;
  align-items: center;
}

.org-about-image img {
  width: 100%;
  border-radius: var(--radius-lg);
  object-fit: cover;
  min-height: 311px;
}

.org-about-text {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-lg);
}

.org-about-text p {
  font-size: var(--fs-base);
  color: var(--color-text-secondary);
  line-height: 23px;
}

.org-stats {
  display: flex;
  gap: var(--spacing-lg);
  margin-top: var(--spacing-lg);
}

.org-stat-card {
  background: var(--color-white);
  border-radius: var(--radius-md);
  padding: var(--spacing-lg) var(--spacing-md);
  text-align: center;
  transition: all var(--transition-base);
  flex: 1;
}

.org-stat-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.org-stat-card .stat-number {
  display: block;
  font-family: var(--font-heading);
  font-size: 40px;
  font-weight: var(--fw-bold);
  font-style: italic;
  color: var(--color-primary);
  line-height: 58px;
  margin-bottom: var(--spacing-sm);
  letter-spacing: -1.8px;
}

.org-stat-card .stat-label {
  display: block;
  font-size: var(--fs-xl);
  font-weight: var(--fw-regular);
  color: var(--color-primary);
  opacity: 0.7;
  letter-spacing: -0.2px;
  line-height: 32px;
}

/* CCAB Profile Section */
.org-profile {
  background: var(--color-white);
  text-align: center;
}

.org-profile .section-title {
  font-size: var(--fs-4xl);
  font-style: italic;
  color: var(--color-primary);
  line-height: 1.2;
}

.org-profile .section-title::after {
  width: 48px;
  height: 2px;
  background: var(--color-highlight);
  border-radius: 0;
}

.org-profile-description {
  text-align: center;
  max-width: 624px;
  margin: 0 auto var(--spacing-xxl);
  font-size: var(--fs-base);
  color: var(--color-text-secondary);
  line-height: 23px;
}

.org-logo-center {
  max-width: 434px;
  margin: 0 auto;
}

.org-logo-center img {
  width: 100%;
  height: auto;
}

.org-website-cta {
  display: flex;
  justify-content: center;
  margin-top: var(--spacing-xl);
}

.org-website-cta .btn {
  padding: 14px var(--spacing-xl);
  font-size: var(--fs-base);
  font-weight: var(--fw-bold);
  font-style: italic;
  text-transform: uppercase;
  letter-spacing: 1.28px;
}

@media (max-width: 768px) {
  .org-about-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .org-about-text {
    gap: 16px;
  }

  .org-about-text p {
    font-size: 14px;
    line-height: 23px;
  }

  .org-about-image img {
    min-height: 220px;
  }

  .org-stats {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 8px;
  }

  .org-stat-card {
    flex: 1 1 calc(50% - 6px);
    min-width: 140px;
    padding: 16px 8px;
    border-radius: 8px;
  }

  .org-stat-card .stat-number {
    font-size: 32px;
    line-height: 1.25;
    letter-spacing: -1.8px;
    margin-bottom: 4px;
  }

  .org-stat-card .stat-label {
    font-size: 14px;
    line-height: 18px;
  }

  .org-profile {
    padding: 24px !important;
  }

  .org-profile .section-title {
    font-size: 32px;
    line-height: 1.25;
    margin-bottom: 12px;
  }

  .org-profile-description {
    font-size: 14px;
    line-height: 23px;
    margin-bottom: 24px;
  }

  .org-logo-center {
    max-width: 260px;
  }

  .org-website-cta {
    margin-top: 16px;
  }

  .org-website-cta .btn {
    padding: 12px 20px;
    font-size: 14px;
  }
}
