/* =========================================================================
   Etéra Work — Section 9: / implantação
   Figma: node 6322:1123 · componente de abas: node 6240:2375 (3 variantes)
   ========================================================================= */

.implantacao {
  padding-block: 64px;
  background-color: var(--gray-100);
  overflow: hidden;
}

.implantacao__inner {
  display: flex;
  flex-direction: column;
  gap: 32px;
  align-items: center;
}

.implantacao__eyebrow {
  color: rgb(0 35 40 / 70%);
  text-align: center;
  text-transform: uppercase;
}

.implantacao__heading {
  width: 100%;
  color: var(--brand-color-primary-tint-1);
  text-align: center;
  text-transform: uppercase;
}

/* -------------------------------------------------------------------------
   Abas — empilhadas no mobile, lado a lado a partir de 1366px
   ------------------------------------------------------------------------- */

.implantacao__tabs {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.implantacao__tab {
  display: flex;
  flex: 1 0 0;
  align-items: center;
  justify-content: center;
  min-width: 0;

  /* 12px descontando os 2px do traço, que no Figma é interno: fecha em 44px. */
  padding-block: 11px;
  border-bottom: var(--border-width-md) solid var(--gray-400);
  color: var(--gray-400);
  text-align: center;
  text-transform: uppercase;
  transition: color 200ms ease, border-color 200ms ease;
}

.implantacao__tab[aria-selected="true"] {
  border-bottom-color: var(--brand-color-primary);
  color: var(--brand-color-primary);
}

/* -------------------------------------------------------------------------
   Painéis
   ------------------------------------------------------------------------- */

.implantacao__panel[hidden] {
  display: none;
}

.implantacao__panel {
  display: flex;
  flex-direction: column;
  gap: 32px;
  width: 100%;
}

.implantacao__media {
  width: 100%;
}

/* -------------------------------------------------------------------------
   Legenda
   ------------------------------------------------------------------------- */

.implantacao__legend {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
  color: var(--brand-color-primary-tint-1);
}

.implantacao__legend-title {
  font-weight: var(--font-weight-medium);
}

.implantacao__legend ol {
  padding-left: 1.5em;
  list-style: decimal;
}

/* =========================================================================
   LG — Notebook (min-width: 1366px)
   ========================================================================= */

@media (min-width: 1366px) {
  .implantacao__tabs {
    flex-direction: row;
    align-items: stretch;
    justify-content: center;
  }

  .implantacao__legend {
    flex-direction: row;
    gap: 24px;
    align-items: flex-start;
  }

  .implantacao__legend > * {
    flex: 1 0 0;
    min-width: 0;
  }
}
