/* src/css/components/sobre.css */
.sobre-section {
  position: relative;
  background-color: transparent;
  padding: 12rem 2rem; /* Luxurious negative space */
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

/* Mathematical SVG section divider curves */
.section-divider-top {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  line-height: 0;
  z-index: 5;
}

.section-divider-top svg {
  display: block;
  width: 100%;
  height: clamp(40px, 6vw, 100px);
  fill: var(--color-bg-solid);
  transform: rotate(180deg);
}

.sobre-container {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1000px;
  display: flex;
  justify-content: center;
}

.sobre-quote-wrapper {
  display: flex;
  align-items: stretch;
  gap: 3rem;
  max-width: 900px;
}

/* Curved vertical decorative line on the left */
.sobre-vertical-curve {
  flex-shrink: 0;
  width: 16px;
  display: flex;
  align-items: center;
}

.sobre-vertical-curve svg {
  height: 100%;
  width: 100%;
  stroke: var(--color-gold-matte);
  stroke-width: 2;
  fill: none;
  stroke-linecap: round;
}

.sobre-quote-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.sobre-label {
  font-family: var(--font-sans);
  font-size: 0.85rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--color-gold-matte);
  margin-bottom: 1.5rem;
}

.sobre-text {
  font-family: var(--font-sans);
  font-size: var(--fluid-txt-quote);
  font-weight: 300;
  line-height: 1.7;
  color: var(--color-text-primary);
  letter-spacing: -0.01em;
}

/* Emphasized punctuation in gold */
.sobre-text span.gold-highlight {
  color: var(--color-gold-matte);
  font-family: var(--font-display);
  font-weight: 400;
}

@media (max-width: 768px) {
  .sobre-section {
    padding: 8rem 1.5rem;
  }

  .sobre-quote-wrapper {
    gap: 1.5rem;
  }

  .sobre-vertical-curve {
    width: 10px;
  }
}
