/* ============================================================
   Cta-e component: closing CTA band (title + right-aligned actions).

   .cta-e__title's font-size is a literal clamp(), not var(--fz-h1) —
   same trap as the other empresa headings.
   ============================================================ */

.cta-e {
  padding: var(--pad-y) var(--pad-x);
  background: var(--paper);
  border-top: 1px solid var(--black);
}
.cta-e__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 3.75rem;
  align-items: end;
}
@media (max-width: 900px) {
  .cta-e__inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}
.cta-e__title {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: clamp(3rem, 8vw, 8rem);
  line-height: 0.95;
  letter-spacing: -0.035em;
  max-width: 14ch;
}
.cta-e__title em {
  font-style: italic;
  color: var(--blue);
}
.cta-e__actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}
@media (max-width: 900px) {
  .cta-e__actions {
    justify-content: flex-start;
  }
}
@media (max-width: 560px) {
  .cta-e__actions .btn {
    width: 100%;
    justify-content: center;
    white-space: normal;
    text-align: center;
  }
}
