/* ===== FORMULÁRIO DE MATRÍCULA (include global) ===== */

.form-matricula {
  width: 100%;
  background: var(--color-gray-lighter, #f2f2f2);
  padding: 0;
}

.form-matricula-header {
  text-align: center;
  padding: 56px 24px 32px;
  background: #ffffff;
  border-top: 1px solid #e9e9e9;
}

.form-matricula-eyebrow {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-secondary, #F27B13);
  margin-bottom: 10px;
  position: relative;
  padding: 0 20px;
}

.form-matricula-eyebrow::before,
.form-matricula-eyebrow::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 12px;
  height: 2px;
  background: var(--color-secondary, #F27B13);
  border-radius: 2px;
}
.form-matricula-eyebrow::before { right: 100%; margin-right: -16px; }
.form-matricula-eyebrow::after  { left:  100%; margin-left:  -16px; }

.form-matricula-title {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 400;
  color: var(--color-text, #1a1a2e);
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.form-matricula-title strong {
  font-weight: 700;
  color: var(--color-primary, #3588BC);
}

.form-matricula-inner {
  width: 100%;
  max-width: 860px;
  margin: 0 auto;
  padding: 0 32px 0px;
  height: 350px;
  overflow: hidden;
  box-sizing: border-box;
}

.form-matricula-inner iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: none;
}

@media (max-width: 768px) {
  .form-matricula-inner {
    height: 400px;
    padding: 0 16px 40px;
  }
}
