/*
 * PALPITACO GROUP
 * Gateway oficial com três produtos.
 *
 * Este arquivo é carregado depois do gateway.css legado
 * e contém somente a composição definitiva de três produtos.
 */

@media (min-width: 921px) {
  .shell {
    width: min(1540px, calc(100% - 48px));
  }

  .products {
    width: 100%;
    margin-top: 0;
    margin-bottom: 18px;
    display: grid;
    grid-template-columns:
      repeat(3, minmax(0, 1fr));
    gap: 22px;
    transform: none;
  }

  .card {
    min-width: 0;
    min-height: 340px;
    padding: 24px 24px 22px;
  }

  .card-header {
    min-height: 106px;
    grid-template-columns:
      88px minmax(0, 1fr);
    gap: 18px;
  }

  .card-logo {
    width: 84px;
    height: 84px;
  }

  .card h3 {
    font-size: clamp(21px, 1.55vw, 29px);
    line-height: 1.05;
  }

  .card .description {
    margin-top: 8px;
    display: block;
    white-space: normal;
    font-size: clamp(14px, 1vw, 17px);
    line-height: 1.35;
  }

  .card .description strong {
    display: inline;
    white-space: normal;
  }

  .features {
    margin-top: 16px;
    padding-top: 15px;
    padding-bottom: 15px;
    gap: 10px;
  }

  .feature b {
    width: 40px;
    height: 40px;
    margin-bottom: 7px;
    border-radius: 12px;
    font-size: 11px;
  }

  .feature strong {
    font-size: 12px;
  }

  .feature span {
    font-size: 10px;
  }

  .button {
    min-height: 54px;
    padding: 0 18px;
    border-radius: 14px;
    font-size: clamp(12px, 0.9vw, 15px);
  }

  .button b {
    font-size: 23px;
  }

  .trust {
    margin-top: 14px;
  }

  .footer {
    margin-top: 12px;
    padding-top: 14px;
    padding-bottom: 14px;
  }

  .copyright {
    margin-top: 9px;
  }
}

@media (min-width: 1500px) {
  .products {
    gap: 26px;
  }

  .card {
    min-height: 360px;
    padding: 27px 28px 24px;
  }

  .card-header {
    min-height: 114px;
    grid-template-columns:
      94px minmax(0, 1fr);
    gap: 20px;
  }

  .card-logo {
    width: 90px;
    height: 90px;
  }

  .features {
    margin-top: 18px;
    padding-top: 17px;
    padding-bottom: 17px;
  }

  .button {
    min-height: 58px;
  }
}

@media (min-width: 921px) and (max-height: 850px) {
  html,
  body {
    height: auto;
    overflow-y: auto;
  }

  .page {
    min-height: 100vh;
    height: auto;
    overflow: visible;
  }

  .shell {
    height: auto;
  }

  .card {
    min-height: 320px;
  }
}

@media (max-width: 920px) {
  .products {
    grid-template-columns: 1fr;
    gap: 24px;
    transform: none;
  }

  .card {
    min-height: auto;
  }
}

.card--milhar-prime {
  border-color: rgba(231, 192, 83, 0.58);
  background:
    radial-gradient(
      circle at 82% 16%,
      rgba(231, 192, 83, 0.08),
      transparent 34%
    ),
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.045),
      rgba(255, 255, 255, 0.014)
    );
}
