/* ────────────────────────────────────────────────
   TWO-COLUMN MAIN LAYOUT
   Left: all text content  |  Right: CEO photo
──────────────────────────────────────────────── */
.sobre-main-layout {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 60px;
  align-items: start;
  max-width: 1200px;
  margin: 0 auto;
  padding: 120px 90px 80px;
}

/* ── Left column ── */
.sobre-left-col {
  display: flex;
  flex-direction: column;
}

/* ── Right column ── */
.sobre-right-col {
  position: sticky;
  top: 100px;
}

.sobre-photo-figure {
  margin: 0;
}

.sobre-photo-img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.sobre-photo-caption {
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 26px;
  color: #000;
  margin: 12px 0 0;
}

/* ────────────────────────────────────────────────
   LEFT COLUMN CONTENT
──────────────────────────────────────────────── */

/* Title — 1119:5568 */
.sobre-hero-title {
  font-family: "Montserrat", sans-serif;
  font-size: 56px;
  font-weight: 800;
  line-height: 66px;
  color: #660099;
  margin: 0 0 32px;
}

/* Body text — shared */
.sobre-body-text {
  font-family: "Montserrat", sans-serif;
  font-size: 18px;
  font-weight: 500;
  line-height: 24px;
  color: #69645c;
  margin: 0 0 24px;
}

/* Impacto text — extra top spacing to separate from link */
.sobre-impacto-text {
  margin-top: 32px;
}

/* Highlighted bold text within impacto — 1119:5574 */
.sobre-highlight {
  font-family: "Montserrat", sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 32px;
  color: #4e2771;
}

/* Link — 1119:5625 */
.sobre-link {
  display: inline-block;
  font-family: "Montserrat", sans-serif;
  font-size: 18px;
  font-weight: 500;
  line-height: 24px;
  color: #660099;
  text-decoration: underline;
}

.sobre-link:hover {
  color: #4e2771;
}

/* Section heading — shared (H3) */
.sobre-section-heading {
  font-family: "Montserrat", sans-serif;
  font-size: 30px;
  font-weight: 800;
  line-height: 45px;
  letter-spacing: -0.75px;
  color: #5d2684;
  margin: 0 0 12px;
}

/* ── Tecnologia block — 1300:2383, 2390, 2385 + 1325:2601 + 1559:2538 ── */
.sobre-tecnologia-block {
  margin-top: 48px;
}

.sobre-awards-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: center;
  margin-top: 24px;
}

.sobre-award-logo {
  height: 56px;
  width: auto;
  object-fit: contain;
  mix-blend-mode: multiply;
}

/* ── Plataforma block — 1615:2810, 2812, 2820, 2821, 2827, 2828, 2834 ── */
.sobre-plataforma-block {
  margin-top: 48px;
}

.sobre-plataforma-intro {
  font-family: "Montserrat", sans-serif;
  font-size: 18px;
  font-weight: 500;
  line-height: 24px;
  color: #5c5c5c;
  margin: 0 0 24px;
}

/* Accordion */
.sobre-accordion {
  list-style: none;
  margin: 0;
  padding: 0;
  border-top: 1px solid #e0d8eb;
}

.sobre-accordion-item {
  border-bottom: 1px solid #e0d8eb;
}

.sobre-accordion-header {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  background: none;
  border: none;
  padding: 20px 0;
  cursor: pointer;
  font-family: "Montserrat", sans-serif;
  font-size: 22px;
  font-weight: 500;
  line-height: 28px;
  color: #660099;
  text-align: left;
}

.sobre-accordion-header:hover {
  color: #4e2771;
}

.sobre-accordion-chevron {
  flex-shrink: 0;
  width: 10px;
  height: 10px;
  border-right: 2px solid #660099;
  border-bottom: 2px solid #660099;
  transform: rotate(-45deg);
  transition: transform 0.25s ease;
  margin-right: 4px;
}

.sobre-accordion-item.is-open .sobre-accordion-chevron {
  transform: rotate(45deg);
}

.sobre-accordion-body {
  display: none;
  padding: 0 0 20px;
}

.sobre-accordion-item.is-open .sobre-accordion-body {
  display: block;
}

.sobre-plataforma-body-text {
  font-family: "Montserrat", sans-serif;
  font-size: 18px;
  font-weight: 500;
  line-height: 24px;
  color: #5c5c5c;
  margin: 0;
}

/* ────────────────────────────────────────────────
   FULL-WIDTH: SHARED
──────────────────────────────────────────────── */
.sobre-content-inner {
  max-width: 900px;
  margin: 0 auto;
}

/* ────────────────────────────────────────────────
   FULL-WIDTH: PORQUE EXISTIMOS — 1581:2936
──────────────────────────────────────────────── */
.sobre-porque {
  padding: 80px 90px;
  background: #fff;
}

.sobre-porque-title {
  font-family: "Montserrat", sans-serif;
  font-size: 38px;
  font-weight: 800;
  line-height: 50px;
  color: #660099;
  text-align: center;
  margin: 0 0 24px;
}

.sobre-porque-subtitle {
  font-family: "Montserrat", sans-serif;
  font-size: 22px;
  font-weight: 500;
  line-height: 28px;
  color: #1e1e1e;
  text-align: center;
  margin: 0 0 48px;
}

.sobre-porque-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 32px;
  align-items: center;
  margin-bottom: 40px;
}

.sobre-porque-tagline {
  font-family: "Montserrat", sans-serif;
  font-size: 30px;
  font-weight: 800;
  line-height: 45px;
  letter-spacing: -0.75px;
  color: #9a4d1c;
  margin: 0;
}

.sobre-porque-boxes {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.sobre-porque-box {
  background: #660099;
  padding: 40px 28px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sobre-porque-box p {
  font-family: "Montserrat", sans-serif;
  font-size: 22px;
  font-weight: 500;
  line-height: 28px;
  color: #fff;
  text-align: center;
  margin: 0;
}

.sobre-porque-footer {
  font-family: "Montserrat", sans-serif;
  font-size: 30px;
  font-weight: 800;
  line-height: 45px;
  letter-spacing: -0.75px;
  color: #660099;
  text-align: center;
  margin: 0;
}

/* ────────────────────────────────────────────────
   FULL-WIDTH: CTA — 1124:5655 + 1124:5656
──────────────────────────────────────────────── */
.sobre-cta-block {
  padding: 64px 90px;
  background: #f9f7f4;
}

.sobre-leia-mais {
  font-family: "Montserrat", sans-serif;
  font-size: 21px;
  font-weight: 600;
  line-height: 30px;
  letter-spacing: -0.525px;
  color: #660099;
  opacity: 0.7;
  margin: 0 0 16px;
}

.sobre-central-pro-text {
  font-family: "Montserrat", sans-serif;
  font-size: 18px;
  font-weight: 500;
  line-height: 24px;
  color: #000;
  opacity: 0.7;
  margin: 0;
}

.sobre-central-pro-link {
  color: #660099;
  text-decoration: underline;
}

.sobre-central-pro-link:hover {
  color: #4e2771;
}

/* ────────────────────────────────────────────────
   RESPONSIVE
──────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .sobre-main-layout {
    padding: 100px 60px 60px;
    gap: 40px;
  }

  .sobre-porque,
  .sobre-cta-block {
    padding-left: 60px;
    padding-right: 60px;
  }
}

@media (max-width: 768px) {
  .sobre-main-layout {
    grid-template-columns: 1fr;
    padding: 100px 24px 48px;
    gap: 40px;
  }

  /* Photo moves above text on mobile */
  .sobre-right-col {
    order: -1;
    position: static;
  }

  .sobre-hero-title {
    font-size: clamp(2rem, 10vw, 3.5rem);
    margin-bottom: 24px;
  }

  .sobre-highlight {
    font-size: 18px;
  }

  .sobre-accordion-header {
    font-size: 18px;
  }

  .sobre-porque,
  .sobre-cta-block {
    padding: 60px 24px;
  }

  .sobre-porque-title {
    font-size: 28px;
    line-height: 38px;
  }

  .sobre-porque-subtitle {
    font-size: 18px;
  }

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

  .sobre-porque-tagline {
    font-size: 24px;
    line-height: 36px;
  }

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

  .sobre-porque-footer {
    font-size: 24px;
    line-height: 36px;
  }

  .sobre-awards-grid {
    gap: 20px;
  }
}
