/* ==========================================================================
   MERCADO PUBLICO page styles
   ========================================================================== */

/* ---------- Hero ---------- */
.mp-hero {
  position: relative;
  background: linear-gradient(148deg, #f9f9f9 0%, #eee 100%);
  padding: 94px 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mp-hero .container {
  display: flex;
  gap: 64px;
  align-items: center;
}

.mp-hero__text {
  flex: 0 0 auto;
  max-width: 560px;
}

.mp-hero__tag {
  display: inline-block;
  background: #e5e2de;
  color: #656461;
  font-size: 14px;
  letter-spacing: 1.4px;
  padding: 4px 12px;
  margin-bottom: 16px;
}

.mp-hero__title {
  font-family: 'Montserrat', sans-serif;
  font-size: 64px;
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -1.28px;
  color: #1a1c1c;
  margin-bottom: 16px;
}

.mp-hero__actions {
  display: flex;
  gap: 16px;
  margin-top: 32px;
}

.mp-hero__actions .btn-primary {
  padding: 17px 64px;
  font-size: 14px;
  letter-spacing: 1.4px;
  text-align: center;
}

.mp-hero__actions .btn-outline-orange {
  background: transparent;
  border: 2px solid var(--orange);
  color: var(--orange);
  padding: 16px 46px;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 1.4px;
  text-align: center;
}

.mp-hero__actions .btn-outline-orange:hover {
  background: var(--orange);
  color: #fff;
}

.mp-hero__img {
  flex: 0 0 564px;
}

.mp-hero__img img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  box-shadow: 0 25px 43.75px -12px rgba(0, 0, 0, .25);
}

/* ---------- Value Proposition Cards ---------- */
.mp-values {
  background: #f9f9f9;
  border-top: 1px solid #e2e2e2;
  border-bottom: 1px solid #e2e2e2;
  padding: 48px 0;
}

.mp-values__grid {
  display: grid;
  grid-template-columns: repeat(4, 270px);
  justify-content: space-between;
}

.mp-value-card {
  background: #fff;
  border: 1px solid #e2e2e2;
  padding: 32px;
}

.mp-value-card svg {
  color: var(--orange);
  margin-bottom: 16px;
}

.mp-value-card h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 24px;
  font-weight: 400;
  line-height: 1.3;
  color: #1a1c1c;
  margin-bottom: 7px;
}

.mp-value-card p {
  font-size: 16px;
  line-height: 1.25;
  color: #5f5e5c;
}

/* ---------- Timeline / Process ---------- */
.mp-process {
  background: #2f3131;
  padding: 48px 0;
}

.mp-process__header {
  text-align: center;
  margin-bottom: 64px;
}

.mp-process__header h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: 40px;
  font-weight: 400;
  line-height: 1.2;
  color: #fff;
  margin-bottom: 15px;
}

.mp-process__header p {
  font-size: 18px;
  line-height: 1.6;
  color: #e2e2e2;
  max-width: 672px;
  margin: 0 auto;
}

.mp-process__steps {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 264px);
  justify-content: space-between;
  margin-bottom: 48px;
}

.mp-process__steps::before {
  content: '';
  position: absolute;
  top: 48px;
  left: 0;
  right: 0;
  height: 1px;
  background: rgba(168, 50, 0, .3);
}

.mp-step {
  text-align: center;
  position: relative;
}

.mp-step__icon {
  width: 80px;
  height: 80px;
  border-radius: 12px;
  background: var(--orange);
  margin: 0 auto 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 4px solid #2f3131;
  position: relative;
  z-index: 1;
}

.mp-step__icon span {
  font-size: 28px;
  font-weight: 700;
  color: #fff;
}

.mp-step h4 {
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 1.4px;
  color: #fff;
  margin-bottom: 8px;
}

.mp-step p {
  font-size: 16px;
  line-height: 1.5;
  color: #e2e2e2;
}

.mp-process__cta {
  text-align: center;
}

.mp-process__cta .btn {
  background: #fff;
  color: #2f3131;
  padding: 20px 40px;
  font-size: 14px;
  letter-spacing: 1.4px;
}

.mp-process__cta .btn:hover {
  background: var(--gray-100);
}

/* ---------- Provider Info / Table ---------- */
.mp-provider {
  padding: 48px 0;
}

.mp-provider .container {
  display: flex;
  gap: 24px;
}

.mp-provider__text {
  flex: 0 0 376px;
}

.mp-provider__text h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: 40px;
  font-weight: 400;
  line-height: 1.2;
  color: #1a1c1c;
  margin-bottom: 16px;
}

.mp-provider__text>p {
  font-size: 16px;
  line-height: 1.5;
  color: #5f5e5c;
  margin-bottom: 32px;
}

.mp-provider__download {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  border: 2px solid #2f3131;
  padding: 16px 32px;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: .7px;
  color: var(--ink);
}

.mp-provider__download svg {
  color: var(--orange);
  flex: none;
}

.mp-provider__download:hover {
  background: var(--ink);
  color: #fff;
}

.mp-provider__download:hover svg {
  color: #fff;
}

.mp-provider__table {
  flex: 1;
  border: 1px solid #e2e2e2;
}

.mp-provider__table table {
  width: 100%;
  border-collapse: collapse;
}

.mp-provider__table th,
.mp-provider__table td {
  padding: 16px;
  font-size: 16px;
  color: #1a1c1c;
  text-align: left;
  border-bottom: 1px solid #e2e2e2;
}

.mp-provider__table tr:last-child th,
.mp-provider__table tr:last-child td {
  border-bottom: none;
}

.mp-provider__table th {
  width: 250px;
  background: var(--gray-100);
  font-weight: 400;
}

/* ---------- FAQ ---------- */
.mp-faq {
  background: var(--gray-100);
  padding: 48px 0;
}

.mp-faq__title {
  font-family: 'Montserrat', sans-serif;
  font-size: 40px;
  font-weight: 400;
  line-height: 1.2;
  color: #1a1c1c;
  text-align: center;
  margin-bottom: 48px;
}

.mp-faq__list {
  max-width: 768px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.mp-faq-item {
  background: #fff;
  border: 1px solid #e2e2e2;
}

.mp-faq-item summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  padding: 24px;
  font-size: 14px;
  letter-spacing: .7px;
  color: #1a1c1c;
}

.mp-faq-item summary::-webkit-details-marker {
  display: none;
}

.mp-faq-item summary::marker {
  content: '';
}

.mp-faq-item summary svg {
  flex: none;
  color: var(--orange);
}

.mp-faq-item[open] summary svg {
  transform: rotate(180deg);
}

/* ---------- Final CTA ---------- */
.mp-final-cta {
  background: var(--orange);
  padding: 48px 0;
  text-align: center;
}

.mp-final-cta h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: 40px;
  font-weight: 400;
  line-height: 1.2;
  color: #fff;
  margin-bottom: 23px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.mp-final-cta p {
  font-size: 18px;
  line-height: 1.6;
  color: #fff;
  opacity: .9;
  max-width: 672px;
  margin: 0 auto 40px;
}

.mp-final-cta__actions {
  display: flex;
  gap: 16px;
  justify-content: center;
}

.mp-final-cta__actions .btn-white {
  background: #fff;
  color: #2f3131;
  padding: 25px 40px;
  font-size: 14px;
  letter-spacing: 1.4px;
}

.mp-final-cta__actions .btn-white:hover {
  background: var(--gray-100);
}

.mp-final-cta__actions .btn-outline-white {
  background: transparent;
  border: 2px solid #fff;
  color: #fff;
  padding: 23px 40px;
  font-size: 14px;
  letter-spacing: 1.4px;
}

.mp-final-cta__actions .btn-outline-white:hover {
  background: rgba(255, 255, 255, .1);
}