/* ============================================================================
   SECTION 02 — CONCEITO  (Figma node 169:6463 "02-conceito")
   A green intro block (two columns) followed by a full-bleed aerial figure.
   ========================================================================== */

.conceito { display: flex; flex-direction: column; }

/* -------------------------------------------------------- INTRO (green) --- */
.conceito__intro {
  background-color: var(--color-surface-inverse);
  color: var(--color-text-on-inverse);
  padding-block: var(--section-pad-y);
}

.conceito__grid {
  display: flex;
  align-items: flex-end;          /* columns share a baseline at the bottom */
  gap: min(6.75rem, 7.5vw);       /* ~108px at 1440, shrinks on narrower desktops */
}

.conceito__grid > .section-header {
  flex: 0 1 465px;
}

.conceito__lead {
  flex: 1 1 0;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-9);            /* 36px */
}

.conceito__text {
  font-size: var(--text-b2-size);
  line-height: var(--text-b2-lh);
  letter-spacing: var(--text-b2-tr);
  color: var(--color-text-on-inverse-muted);
}

/* ---------------------------------------------------- FIGURE (full-bleed) -- */
.conceito__figure {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  margin: 0;
  background-color: var(--monarca-scrim);
}
.conceito__figure-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
}
.conceito__figure-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(270deg, rgba(0, 0, 0, 0) 40%, rgba(0, 0, 0, 0.4) 77%),
    linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2));
}

.conceito__figure-body {
  position: relative;
  z-index: 2;
  min-height: 620px;
  padding-block: var(--space-15);     /* 60px */
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.conceito__figure-quote {
  max-width: 460px;
  font-family: var(--font-serif);
  font-size: var(--text-h2-size);
  line-height: var(--text-h2-lh);
  letter-spacing: var(--text-h2-tr);
  color: var(--color-text-on-inverse);
}

.conceito__figure-caption {
  position: absolute;
  z-index: 3;
  bottom: var(--space-15);
  right: max(var(--gutter), (100% - var(--container-max)) / 2);
  max-width: calc(100% - var(--gutter) * 2);
}

/* ================================================================ TABLET === */
@media (max-width: 1024px) {
  .conceito__grid {
    flex-direction: column;
    align-items: stretch;
    gap: var(--space-10);
  }
  .conceito__grid > .section-header { flex: none; max-width: 34rem; }
  .conceito__lead { flex: none; }

  .conceito__figure-body { min-height: 460px; }
  .conceito__figure-quote { font-size: 2.5rem; max-width: 22ch; }   /* 40px */
}

/* ================================================================ MOBILE === */
@media (max-width: 640px) {
  .conceito__lead { gap: var(--space-7); }
  .claims {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--space-5);
  }

  /* Quote spans the full width here, so darken the whole frame instead of
     only its left edge. */
  .conceito__figure-overlay {
    background: linear-gradient(rgba(0, 0, 0, 0.42), rgba(0, 0, 0, 0.55));
  }
  .conceito__figure-body {
    min-height: 440px;
    padding-block: var(--space-12) calc(var(--space-12) + 3rem);  /* clearance for caption */
  }
  .conceito__figure-quote { font-size: 2rem; max-width: none; }   /* 32px */
  .conceito__figure-caption {
    right: var(--gutter);
    left: var(--gutter);
    bottom: var(--space-8);
    max-width: none;
  }
}
