/* Home Mercado Pro Clubs
   Camada visual isolada para evitar colisões com páginas internas. */

:root {
  --mpc-green: #19e777;
  --mpc-green-hover: #45ef91;
  --mpc-green-dark: #0b6b37;
  --mpc-bg: #050c09;
  --mpc-bg-soft: #07110d;
  --mpc-panel: #0b1711;
  --mpc-panel-raised: #0e1d16;
  --mpc-line: rgba(178, 219, 192, 0.16);
  --mpc-line-green: rgba(25, 231, 119, 0.42);
  --mpc-text: #f4f8f5;
  --mpc-muted: #9caf9f;
  --mpc-shadow: 0 28px 80px rgba(0, 0, 0, 0.4);
  --mpc-container: 1180px;
}

.pagina-inicial {
  background: var(--mpc-bg);
  background-image: none;
}

.pagina-inicial .main-header {
  min-height: 76px;
  height: 76px;
  margin: 0;
  padding: 0 clamp(20px, 5vw, 76px);
  border-bottom: 1px solid rgba(25, 231, 119, 0.13);
  background: rgba(4, 11, 8, 0.92);
  box-shadow: none;
  backdrop-filter: blur(18px);
}

.pagina-inicial .main-header > .logo,
.pagina-inicial .main-header > .menu-carrossel,
.pagina-inicial .main-header > .login-header {
  top: 0;
}

@media (min-width: 1241px) {
  .pagina-inicial .main-header > .menu-carrossel {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
}

@media (max-width: 768px) {
  .pagina-inicial .main-header {
    grid-template-columns: minmax(82px, 1fr) auto;
    grid-template-areas: "logo auth";
  }

  .pagina-inicial .main-header > .header-menu-toggle,
  .pagina-inicial .main-header > .menu-carrossel {
    display: none !important;
  }
}

.pagina-inicial .main-header > .logo img.logo {
  width: clamp(126px, 11vw, 154px);
}

.pagina-inicial .lista-links {
  gap: clamp(4px, 0.7vw, 11px);
}

.pagina-inicial .lista-links a {
  padding: 9px 10px;
  color: #bdcac1;
  border: 1px solid transparent;
  border-radius: 9px;
  font-size: clamp(0.66rem, 0.78vw, 0.76rem);
}

.pagina-inicial .lista-links a:hover,
.pagina-inicial .lista-links a:focus-visible {
  color: var(--mpc-green);
  background: rgba(25, 231, 119, 0.07);
  border-color: rgba(25, 231, 119, 0.2);
  transform: none;
}

.mpc-home {
  overflow: hidden;
  color: var(--mpc-text);
  background: var(--mpc-bg);
}

.mpc-home * {
  box-sizing: border-box;
}

.mpc-home__container {
  position: relative;
  z-index: 1;
  width: min(var(--mpc-container), calc(100% - 48px));
  margin-inline: auto;
}

.mpc-home h1,
.mpc-home h2,
.mpc-home h3,
.mpc-home p {
  margin-top: 0;
}

.mpc-home h1,
.mpc-home h2 {
  font-family: "Montserrat", Arial, sans-serif;
  font-weight: 850;
  text-transform: uppercase;
}

.mpc-home em {
  color: var(--mpc-green);
  font-style: italic;
}

.mpc-home__eyebrow,
.mpc-home__card-kicker {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 17px;
  color: var(--mpc-green);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.17em;
  line-height: 1.4;
}

.mpc-home__eyebrow > span,
.mpc-home__privacy > span {
  flex: 0 0 auto;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--mpc-green);
  box-shadow: 0 0 16px rgba(25, 231, 119, 0.8);
}

.mpc-home__hero {
  position: relative;
  isolation: isolate;
  min-height: 690px;
  padding: clamp(72px, 8vw, 112px) 0 34px;
  overflow: hidden;
  border-bottom: 1px solid rgba(25, 231, 119, 0.16);
  background:
    linear-gradient(90deg, rgba(3, 9, 6, 0.98) 0%, rgba(3, 9, 6, 0.94) 43%, rgba(3, 9, 6, 0.42) 72%, rgba(3, 9, 6, 0.3) 100%),
    linear-gradient(0deg, rgba(3, 9, 6, 0.52), rgba(3, 9, 6, 0.08)),
    url("../IMG/home-scenes/hero-estadio.webp") center right / cover no-repeat;
}

.mpc-home__hero-grid {
  position: absolute;
  inset: 0;
  z-index: -2;
  opacity: 0.6;
  background-image:
    linear-gradient(rgba(88, 155, 111, 0.075) 1px, transparent 1px),
    linear-gradient(90deg, rgba(88, 155, 111, 0.075) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(to right, #000 0%, rgba(0, 0, 0, 0.72) 55%, transparent 92%);
}

.mpc-home__hero-orbit {
  position: absolute;
  z-index: -1;
  border: 1px solid rgba(73, 219, 129, 0.1);
  border-radius: 50%;
  pointer-events: none;
}

.mpc-home__hero-orbit--outer {
  top: 28px;
  right: 3%;
  width: 620px;
  height: 620px;
}

.mpc-home__hero-orbit--inner {
  top: 148px;
  right: calc(3% + 120px);
  width: 380px;
  height: 380px;
}

.mpc-home__hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(330px, 0.82fr);
  align-items: center;
  gap: clamp(46px, 7vw, 92px);
}

.mpc-home__hero-copy {
  max-width: 650px;
}

.mpc-home__hero h1 {
  margin-bottom: 24px;
  color: var(--mpc-text);
  font-size: clamp(3.25rem, 4vw, 4.65rem);
  line-height: 0.94;
  letter-spacing: -0.035em;
  text-wrap: balance;
}

.mpc-home__hero h1 > span {
  display: block;
}

.mpc-home__hero-description {
  max-width: 590px;
  margin-bottom: 0;
  color: #bccac1;
  font-size: clamp(0.96rem, 1.25vw, 1.08rem);
  line-height: 1.7;
}

.mpc-home__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 11px;
  margin-top: 30px;
}

.mpc-home__button {
  display: inline-flex;
  min-height: 50px;
  padding: 0 21px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border: 1px solid transparent;
  border-radius: 10px;
  color: var(--mpc-text);
  font: 850 0.73rem/1 "Montserrat", sans-serif;
  letter-spacing: 0.035em;
  text-decoration: none;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.mpc-home__button:hover {
  transform: translateY(-2px);
}

.mpc-home__button--primary {
  color: #052311;
  background: var(--mpc-green);
  border-color: var(--mpc-green);
  box-shadow: 0 12px 32px rgba(25, 231, 119, 0.18);
}

.mpc-home__button--primary:hover {
  color: #031b0d;
  background: var(--mpc-green-hover);
  border-color: var(--mpc-green-hover);
  box-shadow: 0 16px 38px rgba(25, 231, 119, 0.25);
}

.mpc-home__button--secondary {
  color: #edf5ef;
  background: rgba(13, 25, 19, 0.86);
  border-color: rgba(173, 204, 184, 0.28);
}

.mpc-home__button--secondary:hover {
  color: #fff;
  background: rgba(25, 231, 119, 0.08);
  border-color: rgba(25, 231, 119, 0.55);
}

.mpc-home__assurances {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 21px;
  margin: 25px 0 0;
  padding: 0;
  color: #aab8af;
  font-size: 0.75rem;
  font-weight: 700;
  list-style: none;
}

.mpc-home__assurances li {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.mpc-home__assurances li > span {
  color: var(--mpc-green);
}

.mpc-home__journey-card {
  position: relative;
  width: 100%;
  padding: clamp(24px, 3vw, 31px);
  border: 1px solid rgba(171, 211, 185, 0.2);
  border-radius: 20px;
  background: linear-gradient(150deg, rgba(12, 27, 19, 0.96), rgba(6, 14, 10, 0.94));
  box-shadow: var(--mpc-shadow);
  backdrop-filter: blur(16px);
}

.mpc-home__journey-card::before {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(circle at 0 0, rgba(25, 231, 119, 0.08), transparent 36%);
  content: "";
  pointer-events: none;
}

.mpc-home__card-kicker {
  position: relative;
  margin-bottom: 10px;
  font-size: 0.6rem;
}

.mpc-home__journey-card h2 {
  position: relative;
  margin-bottom: 21px;
  color: #fff;
  font-size: clamp(1.7rem, 2.5vw, 2.2rem);
  line-height: 0.94;
  letter-spacing: -0.025em;
}

.mpc-home__journey-options {
  position: relative;
  display: grid;
  gap: 9px;
}

.mpc-home__journey-options a {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr) auto;
  min-height: 70px;
  padding: 13px 14px;
  align-items: center;
  gap: 12px;
  color: #fff;
  border: 1px solid rgba(173, 204, 184, 0.19);
  border-radius: 11px;
  background: rgba(14, 28, 20, 0.72);
  text-decoration: none;
  transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.mpc-home__journey-options a:first-child {
  border-color: rgba(25, 231, 119, 0.64);
  background: rgba(25, 231, 119, 0.07);
}

.mpc-home__journey-options a:hover {
  border-color: var(--mpc-green);
  background: rgba(25, 231, 119, 0.1);
  transform: translateX(3px);
}

.mpc-home__journey-options b {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  color: var(--mpc-green);
  border: 1px solid rgba(25, 231, 119, 0.4);
  border-radius: 50%;
  font-size: 0.61rem;
}

.mpc-home__journey-options a > span {
  display: grid;
  gap: 4px;
}

.mpc-home__journey-options strong {
  font-size: 0.78rem;
}

.mpc-home__journey-options small {
  color: #8fa096;
  font-size: 0.62rem;
}

.mpc-home__journey-options i {
  color: var(--mpc-green);
  font-style: normal;
}

.mpc-home__privacy {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 7px;
  margin: 17px 0 0;
  color: #83958a;
  font-size: 0.61rem;
}

.mpc-home__privacy > span {
  width: 6px;
  height: 6px;
}

.mpc-home__metrics {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  width: min(650px, 100%);
  margin-top: 48px;
  border: 1px solid rgba(173, 204, 184, 0.13);
  border-radius: 13px;
  background: rgba(4, 12, 8, 0.66);
}

.mpc-home__metrics article {
  min-height: 76px;
  padding: 14px 18px;
  border-right: 1px solid rgba(173, 204, 184, 0.13);
}

.mpc-home__metrics article:last-child {
  border-right: 0;
}

.mpc-home__metrics strong,
.mpc-home__metrics span {
  display: block;
}

.mpc-home__metrics strong {
  color: #fff;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 1.32rem;
  font-weight: 850;
  line-height: 1.1;
}

.mpc-home__metrics span {
  margin-top: 7px;
  color: #83978b;
  font-size: 0.54rem;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.mpc-home__metrics-status {
  width: min(650px, 100%);
  margin: 8px 0 0;
  color: #73857a;
  font-size: 0.62rem;
}

.mpc-home__feature-strip {
  padding: 25px 0;
  border-bottom: 1px solid rgba(25, 231, 119, 0.11);
  background: #07100d;
}

.mpc-home__feature-strip .mpc-home__container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.mpc-home__feature-strip p {
  margin: 0;
  color: #b7c5bc;
  font-size: 0.61rem;
  font-weight: 850;
  letter-spacing: 0.11em;
}

.mpc-home__feature-strip div[aria-hidden] {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: clamp(17px, 3vw, 45px);
  color: #66796e;
  font-size: 0.97rem;
  font-weight: 900;
  letter-spacing: 0.05em;
}

.mpc-home__benefits {
  padding: 42px 0 20px;
  background: #07100d;
}

.mpc-home__benefit-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.mpc-home__benefit-card {
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr);
  align-items: start;
  gap: 16px;
  min-height: 150px;
  padding: 23px;
  border: 1px solid var(--mpc-line);
  border-radius: 14px;
  background: linear-gradient(145deg, rgba(14, 26, 19, 0.98), rgba(8, 16, 12, 0.98));
}

.mpc-home__benefit-card > span {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border-radius: 13px;
  background: rgba(25, 231, 119, 0.1);
}

.mpc-home__benefit-card img {
  object-fit: contain;
  filter: brightness(0) saturate(100%) invert(74%) sepia(91%) saturate(908%) hue-rotate(83deg) brightness(94%) contrast(90%);
}

.mpc-home__benefit-card h2 {
  margin-bottom: 8px;
  color: #fff;
  font-family: "Montserrat", sans-serif;
  font-size: 0.94rem;
  line-height: 1.3;
  text-transform: none;
}

.mpc-home__benefit-card p {
  margin-bottom: 0;
  color: var(--mpc-muted);
  font-size: 0.75rem;
  line-height: 1.6;
}

.mpc-home__section {
  padding: clamp(78px, 8vw, 108px) 0;
}

.mpc-home__how,
.mpc-home__guides,
.mpc-home__community {
  background: var(--mpc-bg-soft);
}

.mpc-home__how {
  background:
    linear-gradient(90deg, rgba(5, 13, 9, 0.98) 0%, rgba(5, 13, 9, 0.94) 51%, rgba(5, 13, 9, 0.72) 100%),
    url("../IMG/home-scenes/jornada-vestiario.webp") center right / cover no-repeat;
}

.mpc-home__section-header {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.55fr);
  align-items: end;
  gap: 44px;
  margin-bottom: 42px;
}

.mpc-home__section-header--row {
  grid-template-columns: minmax(0, 1fr) auto;
}

.mpc-home__section-header h2,
.mpc-home__feedback-card h2,
.mpc-home__share-card h2,
.mpc-home__final-cta h2 {
  max-width: 760px;
  margin-bottom: 0;
  color: #fff;
  font-size: clamp(2.45rem, 4vw, 3.65rem);
  line-height: 1.02;
  letter-spacing: -0.028em;
}

.mpc-home__section-header > p {
  margin-bottom: 0;
  color: var(--mpc-muted);
  font-size: 0.88rem;
  line-height: 1.7;
}

.mpc-home__tabs {
  display: inline-flex;
  gap: 5px;
  margin-bottom: 17px;
  padding: 5px;
  border: 1px solid var(--mpc-line);
  border-radius: 12px;
  background: #07100c;
}

.mpc-home__tabs button {
  min-height: 42px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: 8px;
  color: #9caf9f;
  background: transparent;
  font: 800 0.72rem "Montserrat", sans-serif;
  cursor: pointer;
}

.mpc-home__tabs button[aria-selected="true"] {
  color: #06220f;
  background: var(--mpc-green);
}

.mpc-home__steps {
  padding: 30px;
  border: 1px solid var(--mpc-line);
  border-radius: 18px;
  background:
    radial-gradient(circle at 100% 0, rgba(25, 231, 119, 0.08), transparent 34%),
    var(--mpc-panel);
}

.mpc-home__steps ol {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin: 0 0 25px;
  padding: 0;
  list-style: none;
}

.mpc-home__steps li {
  display: flex;
  min-height: 174px;
  padding: 22px;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid var(--mpc-line);
  border-radius: 13px;
  background: rgba(6, 15, 10, 0.73);
}

.mpc-home__steps li > span {
  color: var(--mpc-green);
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 1rem;
  font-weight: 800;
}

.mpc-home__steps li div {
  display: grid;
  gap: 8px;
}

.mpc-home__steps strong {
  color: #fff;
  font-size: 0.9rem;
}

.mpc-home__steps small {
  color: var(--mpc-muted);
  font-size: 0.73rem;
  line-height: 1.55;
}

.mpc-home__next-step[hidden] {
  display: none;
}

.mpc-home__next-step {
  padding: 26px 0;
  background: #07110d;
}

.mpc-home__next-step .mpc-home__container {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 24px;
  padding: 26px;
  border: 1px solid var(--mpc-line-green);
  border-radius: 17px;
  background: linear-gradient(135deg, #10241a, #09130e);
}

.mpc-home__next-step h2 {
  margin-bottom: 6px;
  font-size: clamp(1.55rem, 3vw, 2.2rem);
}

.mpc-home__next-step p {
  margin-bottom: 0;
  color: var(--mpc-muted);
}

.mpc-home__progress {
  display: grid;
  grid-column: 1 / -1;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
}

.mpc-home__progress > span {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #7e9085;
  font-size: 0.68rem;
}

.mpc-home__progress b {
  display: grid;
  width: 26px;
  height: 26px;
  place-items: center;
  border: 1px solid var(--mpc-line);
  border-radius: 50%;
}

.mpc-home__progress > span.concluida,
.mpc-home__progress > span.atual {
  color: #dff7e7;
}

.mpc-home__progress > span.concluida b,
.mpc-home__progress > span.atual b {
  color: #05200f;
  border-color: var(--mpc-green);
  background: var(--mpc-green);
}

.mpc-home__market {
  background:
    linear-gradient(90deg, rgba(5, 11, 8, 0.98) 0%, rgba(5, 11, 8, 0.93) 50%, rgba(5, 11, 8, 0.7) 100%),
    linear-gradient(0deg, rgba(5, 11, 8, 0.6), rgba(5, 11, 8, 0.16)),
    url("../IMG/home-scenes/mercado-jogadores.webp") center right / cover no-repeat;
}

.mpc-home__text-link {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: 8px;
  color: var(--mpc-green);
  font-size: 0.69rem;
  font-weight: 850;
  letter-spacing: 0.04em;
  text-decoration: none;
  text-transform: uppercase;
}

.mpc-home__text-link:hover {
  color: var(--mpc-green-hover);
}

.mpc-home__vacancies {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.mpc-home .inicio-vaga-card {
  display: flex;
  min-height: 225px;
  padding: 23px;
  flex-direction: column;
  color: #fff;
  border: 1px solid var(--mpc-line);
  border-radius: 14px;
  background: linear-gradient(145deg, var(--mpc-panel-raised), #08110c);
  text-decoration: none;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.mpc-home .inicio-vaga-card:hover {
  border-color: var(--mpc-line-green);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.25);
  transform: translateY(-4px);
}

.mpc-home .inicio-vaga-card-topo {
  display: flex;
  justify-content: space-between;
  gap: 8px;
}

.mpc-home .inicio-vaga-card-topo b {
  padding: 6px 8px;
  color: #a9f5c6;
  border: 1px solid rgba(25, 231, 119, 0.24);
  border-radius: 6px;
  font-size: 0.55rem;
  text-transform: uppercase;
}

.mpc-home .inicio-vaga-card-topo small {
  color: #73867a;
  font-size: 0.58rem;
}

.mpc-home .inicio-vaga-card > strong {
  margin-top: 28px;
  color: #fff;
  font-size: 1.03rem;
}

.mpc-home .inicio-vaga-card > span:not(.inicio-vaga-card-topo) {
  margin-top: 9px;
  color: var(--mpc-muted);
  font-size: 0.69rem;
  line-height: 1.5;
}

.mpc-home .inicio-vaga-card > em {
  margin-top: auto;
  padding-top: 24px;
  color: var(--mpc-green);
  font-size: 0.62rem;
  font-style: normal;
  font-weight: 900;
}

.mpc-home .inicio-vaga-skeleton {
  min-height: 225px;
  border: 1px solid var(--mpc-line);
  border-radius: 14px;
  background: linear-gradient(100deg, #0b1711 20%, #12271b 40%, #0b1711 60%);
  background-size: 220% 100%;
  animation: mpc-home-skeleton 1.2s linear infinite;
}

.mpc-home .inicio-vagas-vazio {
  display: flex;
  grid-column: 1 / -1;
  min-height: 190px;
  padding: 30px;
  align-items: flex-start;
  justify-content: center;
  flex-direction: column;
  gap: 10px;
  border: 1px dashed var(--mpc-line-green);
  border-radius: 15px;
  background: rgba(11, 23, 17, 0.78);
}

.mpc-home .inicio-vagas-vazio span {
  color: var(--mpc-muted);
}

.mpc-home .inicio-vagas-vazio :is(a, button) {
  min-height: 42px;
  margin-top: 6px;
  padding: 0 16px;
  color: #05220f;
  border: 0;
  border-radius: 8px;
  background: var(--mpc-green);
  font-weight: 850;
  text-decoration: none;
  cursor: pointer;
}

@keyframes mpc-home-skeleton {
  to { background-position: -220% 0; }
}

.mpc-home__tournament {
  padding: 0 0 clamp(78px, 8vw, 108px);
  background: #050b08;
}

.mpc-home__tournament-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  min-height: 340px;
  padding: clamp(34px, 5vw, 52px);
  align-items: center;
  gap: 42px;
  overflow: hidden;
  border: 1px solid rgba(25, 231, 119, 0.34);
  border-radius: 18px;
  background:
    linear-gradient(90deg, rgba(5, 13, 9, 0.98) 0%, rgba(5, 13, 9, 0.92) 48%, rgba(5, 13, 9, 0.26) 78%, rgba(5, 13, 9, 0.16) 100%),
    linear-gradient(0deg, rgba(5, 13, 9, 0.55), rgba(5, 13, 9, 0.05)),
    url("../IMG/home-scenes/torneio-campeoes.webp") center right / cover no-repeat;
  box-shadow: inset 0 0 90px rgba(0, 0, 0, 0.3), 0 25px 70px rgba(0, 0, 0, 0.24);
}

.mpc-home__tournament h2 {
  max-width: 760px;
  margin: 0 0 15px;
  color: #fff;
  font-size: clamp(2.35rem, 3.7vw, 3.5rem);
  line-height: 1.02;
  letter-spacing: -0.028em;
}

.mpc-home__tournament .inicio-torneio-conteudo > p:not(.mpc-home__eyebrow) {
  max-width: 690px;
  margin-bottom: 0;
  color: #b2c3b8;
  font-size: 0.84rem;
  line-height: 1.7;
}

.mpc-home__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 21px 0 24px;
}

.mpc-home__chips span {
  padding: 7px 10px;
  color: #dbe8df;
  border: 1px solid rgba(181, 216, 192, 0.22);
  border-radius: 999px;
  font-size: 0.63rem;
  font-weight: 750;
}

.mpc-home__trophy {
  display: none;
  flex: 0 0 auto;
  width: 180px;
  height: 180px;
  place-items: center;
  border: 1px solid rgba(25, 231, 119, 0.32);
  border-radius: 50%;
  background: rgba(25, 231, 119, 0.07);
  box-shadow: 0 0 70px rgba(25, 231, 119, 0.09);
}

.mpc-home__guides {
  background:
    linear-gradient(90deg, rgba(5, 13, 9, 0.98) 0%, rgba(5, 13, 9, 0.94) 49%, rgba(5, 13, 9, 0.74) 100%),
    url("../IMG/home-scenes/guias-tatica.webp") center right / cover no-repeat;
}

.mpc-home__trophy img {
  width: 126px;
  height: 126px;
  object-fit: contain;
}

.mpc-home__guide-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.mpc-home__guide-card {
  display: flex;
  min-height: 245px;
  padding: 25px;
  flex-direction: column;
  color: #fff;
  border: 1px solid var(--mpc-line);
  border-radius: 14px;
  background: linear-gradient(150deg, #0d1b14, #08110d);
  text-decoration: none;
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.mpc-home__guide-card:hover {
  border-color: var(--mpc-line-green);
  transform: translateY(-4px);
}

.mpc-home__guide-card small {
  color: var(--mpc-green);
  font-size: 0.57rem;
  font-weight: 900;
  letter-spacing: 0.11em;
}

.mpc-home__guide-card h3 {
  margin: 25px 0 11px;
  font-size: 1.02rem;
  line-height: 1.3;
}

.mpc-home__guide-card p {
  margin-bottom: 22px;
  color: var(--mpc-muted);
  font-size: 0.73rem;
  line-height: 1.6;
}

.mpc-home__guide-card > span {
  margin-top: auto;
  color: var(--mpc-green);
  font-size: 0.61rem;
  font-weight: 900;
  text-transform: uppercase;
}

.mpc-home__community {
  padding-top: 0;
  background:
    linear-gradient(90deg, rgba(5, 13, 9, 0.98) 0%, rgba(5, 13, 9, 0.94) 47%, rgba(5, 13, 9, 0.68) 100%),
    url("../IMG/home-scenes/comunidade-torcida.webp") center right / cover no-repeat;
}

.mpc-home__community-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(320px, 0.88fr);
  gap: 18px;
}

.mpc-home__feedback-card,
.mpc-home__share-card {
  padding: clamp(27px, 4vw, 39px);
  border: 1px solid rgba(25, 231, 119, 0.23);
  border-radius: 18px;
  background:
    radial-gradient(circle at 100% 0, rgba(25, 231, 119, 0.08), transparent 35%),
    rgba(9, 23, 18, 0.93);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(8px);
}

.mpc-home__feedback-card h2,
.mpc-home__share-card h2 {
  font-size: clamp(2.15rem, 3vw, 2.9rem);
  line-height: 1.04;
}

.mpc-home__feedback-card > p:not(.mpc-home__eyebrow),
.mpc-home__share-card > p:not(.mpc-home__eyebrow) {
  margin: 15px 0 23px;
  color: var(--mpc-muted);
  font-size: 0.78rem;
  line-height: 1.65;
}

.mpc-home__feedback-form {
  display: grid;
  gap: 9px;
}

.mpc-home__feedback-form label {
  color: #e8f3eb;
  font-size: 0.67rem;
  font-weight: 800;
}

.mpc-home__feedback-form > div {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-top: 7px;
}

.mpc-home__feedback-form > div span {
  color: #74877b;
  font-size: 0.65rem;
}

.mpc-home__feedback-form select,
.mpc-home__feedback-form textarea {
  width: 100%;
  padding: 13px;
  color: #f3f8f4;
  border: 1px solid rgba(181, 216, 192, 0.22);
  border-radius: 10px;
  outline: 0;
  background: #06100c;
  font: inherit;
}

.mpc-home__feedback-form select {
  min-height: 46px;
}

.mpc-home__feedback-form textarea {
  min-height: 112px;
  resize: vertical;
}

.mpc-home__feedback-form :is(select, textarea):focus {
  border-color: var(--mpc-green);
  box-shadow: 0 0 0 3px rgba(25, 231, 119, 0.1);
}

.mpc-home__feedback-form .mpc-home__button {
  width: 100%;
  margin-top: 3px;
}

.mpc-home .inicio-feedback-status {
  min-height: 18px;
  margin: 0;
  color: #84978b;
  font-size: 0.66rem;
  line-height: 1.4;
}

.mpc-home .inicio-feedback-status.sucesso { color: var(--mpc-green); }
.mpc-home .inicio-feedback-status.erro { color: #ff8c8c; }

.mpc-home__share-actions {
  display: grid;
  gap: 9px;
}

.mpc-home__share-actions :is(a, button) {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  min-height: 65px;
  padding: 10px 13px;
  align-items: center;
  gap: 12px;
  color: #fff;
  border: 1px solid var(--mpc-line);
  border-radius: 11px;
  background: #07100c;
  text-align: left;
  text-decoration: none;
  cursor: pointer;
  transition: border-color 0.2s ease, transform 0.2s ease, background 0.2s ease;
}

.mpc-home__share-actions :is(a, button):hover {
  border-color: var(--mpc-line-green);
  background: rgba(25, 231, 119, 0.06);
  transform: translateX(3px);
}

.mpc-home__share-actions img {
  width: 24px;
  height: 24px;
  margin: auto;
  object-fit: contain;
}

.mpc-home__share-actions span {
  display: grid;
  gap: 4px;
}

.mpc-home__share-actions strong {
  font-size: 0.72rem;
}

.mpc-home__share-actions small {
  color: #819489;
  font-size: 0.59rem;
}

.mpc-home__final-cta {
  padding: clamp(76px, 8vw, 104px) 0;
  background: #050b08;
}

.mpc-home__final-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 46px;
  min-height: 300px;
  padding: clamp(36px, 5vw, 58px);
  overflow: hidden;
  border: 1px solid var(--mpc-line-green);
  border-radius: 20px;
  background:
    linear-gradient(90deg, rgba(5, 13, 9, 0.98) 0%, rgba(5, 13, 9, 0.92) 51%, rgba(5, 13, 9, 0.25) 78%, rgba(5, 13, 9, 0.14) 100%),
    linear-gradient(0deg, rgba(5, 13, 9, 0.5), rgba(5, 13, 9, 0.04)),
    url("../IMG/home-scenes/cta-tunel.webp") center right / cover no-repeat;
  box-shadow: inset 0 0 80px rgba(0, 0, 0, 0.28), 0 24px 70px rgba(0, 0, 0, 0.22);
}

.mpc-home__final-cta h2 {
  max-width: 730px;
}

.mpc-home__final-cta p:not(.mpc-home__eyebrow) {
  max-width: 670px;
  margin: 17px 0 0;
  color: var(--mpc-muted);
  font-size: 0.82rem;
  line-height: 1.65;
}

.mpc-home__final-cta .mpc-home__actions {
  display: grid;
  min-width: 235px;
  margin: 0;
}

.mpc-home__trust {
  padding: 0 0 50px;
  background: #050b08;
}

.mpc-home__trust .mpc-home__container {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  overflow: hidden;
  border: 1px solid var(--mpc-line);
  border-radius: 14px;
}

.mpc-home__trust .mpc-home__container > span {
  display: grid;
  gap: 6px;
  min-height: 95px;
  padding: 20px;
  align-content: center;
  border-right: 1px solid var(--mpc-line);
  background: #08110c;
}

.mpc-home__trust .mpc-home__container > span:last-child {
  border-right: 0;
}

.mpc-home__trust strong {
  color: #edf5ef;
  font-size: 0.76rem;
}

.mpc-home__trust small {
  color: #82958a;
  font-size: 0.65rem;
  line-height: 1.45;
}

@media (max-width: 1100px) {
  .mpc-home__hero-layout {
    grid-template-columns: minmax(0, 1fr) minmax(310px, 0.72fr);
    gap: 34px;
  }

  .mpc-home__hero h1 {
    font-size: clamp(3.6rem, 5.5vw, 4.5rem);
  }

  .mpc-home__vacancies {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .pagina-inicial .main-header {
    height: auto;
    min-height: 66px;
    margin-bottom: 0;
  }

  .mpc-home__hero {
    min-height: 0;
    padding-top: 72px;
  }

  .mpc-home__hero-layout,
  .mpc-home__section-header,
  .mpc-home__community-grid,
  .mpc-home__final-layout {
    grid-template-columns: 1fr;
  }

  .mpc-home__hero-copy {
    max-width: 720px;
  }

  .mpc-home__hero h1 {
    font-size: clamp(3.25rem, 7vw, 4.15rem);
  }

  .mpc-home__journey-card {
    max-width: 650px;
  }

  .mpc-home__metrics {
    margin-top: 34px;
  }

  .mpc-home__benefit-grid,
  .mpc-home__steps ol,
  .mpc-home__guide-grid {
    grid-template-columns: 1fr;
  }

  .mpc-home__benefit-card {
    min-height: 0;
  }

  .mpc-home__section-header {
    align-items: start;
    gap: 18px;
  }

  .mpc-home__section-header--row .mpc-home__text-link {
    justify-self: start;
  }

  .mpc-home__steps li {
    min-height: 140px;
  }

  .mpc-home__trophy {
    width: 132px;
    height: 132px;
  }

  .mpc-home__trophy img {
    width: 92px;
    height: 92px;
  }

  .mpc-home__final-cta .mpc-home__actions {
    display: flex;
  }
}

@media (max-width: 680px) {
  .mpc-home__container {
    width: min(100% - 32px, var(--mpc-container));
  }

  .mpc-home__hero {
    padding: 58px 0 28px;
  }

  .mpc-home__hero-orbit {
    opacity: 0.45;
  }

  .mpc-home__hero h1 {
    font-size: clamp(2.65rem, 11.5vw, 3.05rem);
    line-height: 0.96;
  }

  .mpc-home__hero-description {
    font-size: 0.91rem;
  }

  .mpc-home__actions,
  .mpc-home__actions > * {
    width: 100%;
  }

  .mpc-home__assurances {
    display: grid;
    grid-template-columns: 1fr;
    gap: 9px;
  }

  .mpc-home__journey-card {
    padding: 22px 18px;
  }

  .mpc-home__metrics {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .mpc-home__metrics article:nth-child(2) {
    border-right: 0;
  }

  .mpc-home__metrics article:nth-child(-n + 2) {
    border-bottom: 1px solid rgba(173, 204, 184, 0.13);
  }

  .mpc-home__feature-strip .mpc-home__container {
    display: block;
  }

  .mpc-home__feature-strip div[aria-hidden] {
    justify-content: flex-start;
    margin-top: 14px;
    gap: 11px 20px;
    font-size: 0.82rem;
  }

  .mpc-home__benefits {
    padding-top: 28px;
  }

  .mpc-home__section {
    padding: 72px 0;
  }

  .mpc-home__section-header h2,
  .mpc-home__feedback-card h2,
  .mpc-home__share-card h2,
  .mpc-home__final-cta h2 {
    font-size: clamp(2.2rem, 10vw, 2.8rem);
    line-height: 1.05;
  }

  .mpc-home__tabs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    width: 100%;
  }

  .mpc-home__tabs button {
    padding-inline: 10px;
  }

  .mpc-home__steps {
    padding: 20px 16px;
  }

  .mpc-home__next-step .mpc-home__container {
    grid-template-columns: 1fr;
    padding: 21px;
  }

  .mpc-home__next-step .mpc-home__button {
    width: 100%;
  }

  .mpc-home__progress {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .mpc-home__vacancies {
    grid-template-columns: 1fr;
  }

  .mpc-home__tournament {
    padding-bottom: 72px;
  }

  .mpc-home__tournament-layout {
    grid-template-columns: 1fr;
    padding: 26px 20px;
  }

  .mpc-home__tournament h2 {
    font-size: clamp(2.15rem, 9.5vw, 2.75rem);
  }

  .mpc-home__trophy {
    display: none;
  }

  .mpc-home__feedback-card,
  .mpc-home__share-card {
    padding: 25px 19px;
  }

  .mpc-home__final-layout {
    padding: 29px 21px;
  }

  .mpc-home__final-cta .mpc-home__actions {
    display: grid;
    width: 100%;
  }

  .mpc-home__trust .mpc-home__container {
    grid-template-columns: 1fr;
  }

  .mpc-home__trust .mpc-home__container > span {
    min-height: 82px;
    border-right: 0;
    border-bottom: 1px solid var(--mpc-line);
  }

  .mpc-home__trust .mpc-home__container > span:last-child {
    border-bottom: 0;
  }
}

@media (max-width: 420px) {
  .mpc-home__hero h1 {
    font-size: clamp(2.5rem, 11vw, 2.9rem);
  }

  .mpc-home__benefit-card {
    grid-template-columns: 42px minmax(0, 1fr);
    padding: 19px 16px;
  }

  .mpc-home__benefit-card > span {
    width: 42px;
    height: 42px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .mpc-home *,
  .mpc-home *::before,
  .mpc-home *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
