/* =========================================================================
   PX Tecnologia — camada de estilo sobre o Bootstrap 5.
   Os valores abaixo foram extraidos do kit global e das folhas geradas pelo
   Elementor no site original (post-772 / post-285 / post-785 / post-774) e
   conferidos com estilos computados da pagina em producao.
   ========================================================================= */

:root {
  /* paleta do kit global (elementor-kit-772) */
  --pxt-primaria: #376eff;
  --pxt-secundaria: #2ff8e5;
  --pxt-texto: #2b2b2b;
  --pxt-acento: #99f8a7;
  --pxt-cinza-barra: #434141;
  --pxt-cinza-equipe: #1f1f20;
  --pxt-verde-whatsapp: #3cda77;

  --pxt-fonte: "Roboto", Sans-serif;
  --pxt-container: 1140px;
}

/* ---------- base ---------- */

html {
  scroll-behavior: smooth;
  /* compensa o header fixo ao navegar por ancoras */
  scroll-padding-top: 90px;
}

body {
  margin: 0;
  background-color: var(--pxt-texto);
  color: #333;
  font-family: var(--pxt-fonte);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}

img {
  max-width: 100%;
  height: auto;
}

.pxt-skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 999;
  padding: 12px 24px;
  background: #eee;
  color: #333;
}

.pxt-skip-link:focus {
  left: 5px;
  top: 5px;
}

.pxt-sr {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* titulos dos widgets: o Elementor zera margens e usa line-height 1 */
.pxt-titulo,
.pxt-servico__nome,
.pxt-membro__nome,
.pxt-link-card__estado,
.pxt-contato__setor,
.pxt-contato__fone,
.pxt-hero__titulo,
.pxt-form__titulo {
  margin: 0;
  padding: 0;
  line-height: 1;
  font-family: var(--pxt-fonte);
}

.pxt-icone {
  width: 1em;
  height: 1em;
  fill: currentColor;
  vertical-align: -0.125em;
}

/* ---------- utilitarios de breakpoint (espelham os do Elementor) ---------- */

@media (max-width: 767px) {
  .pxt-oculto-mobile { display: none !important; }
}

@media (min-width: 768px) and (max-width: 1024px) {
  .pxt-oculto-tablet { display: none !important; }
}

@media (min-width: 1025px) {
  .pxt-oculto-desktop { display: none !important; }
}

/* =========================================================================
   HEADER
   ========================================================================= */

.pxt-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  display: flex;
  justify-content: center;
  padding: 10px;
}

.pxt-header__bar {
  width: 90%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 0;
  padding: 0.5rem 1rem 0.5rem 2rem;
  background-color: var(--pxt-cinza-barra);
  border-radius: 2rem;
}

.pxt-header__logo {
  display: block;
  flex: 0 1 auto;
  line-height: 0;
}

.pxt-header__logo:not(.pxt-header__logo--full) img {
  max-width: 20%;
}

.pxt-header__logo--full {
  width: 15%;
  max-width: 15%;
}

.pxt-header__logo--full img {
  width: 100%;
  max-width: 100%;
}

.pxt-nav {
  width: 58%;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  flex-wrap: nowrap;
  align-self: center;
}

.pxt-nav__lista {
  display: flex;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
}

.pxt-nav__lista li {
  /* 1.5rem/2 de cada lado, como o widget de menu do Elementor */
  margin-inline: 12px;
}

.pxt-nav__lista li:first-child {
  margin-inline-start: 0;
}

.pxt-nav__lista li:last-child {
  margin-inline-end: 0;
}

.pxt-nav__item {
  position: relative;
  display: flex;
  align-items: center;
  padding: 13px 0;
  font-size: 0.8rem;
  font-weight: 400;
  line-height: 20px;
  color: #fff;
  text-decoration: none;
  white-space: nowrap;
}

/* ponteiro "underline" com animacao fade, igual ao widget de menu do Elementor */
.pxt-nav__item::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background-color: var(--pxt-primaria);
  opacity: 0;
  transition: opacity 0.3s;
}

.pxt-nav__item:hover,
.pxt-nav__item:focus,
.pxt-nav__item.is-ativo {
  color: var(--pxt-primaria);
}

.pxt-nav__item:hover::after,
.pxt-nav__item:focus::after,
.pxt-nav__item.is-ativo::after {
  opacity: 1;
}

.pxt-header__acao {
  align-self: center;
}

.pxt-burger {
  padding: 0;
  border: 0;
  background: none;
  color: var(--pxt-secundaria);
  /* 50px e o tamanho padrao do widget de icone do Elementor */
  font-size: 50px;
  line-height: 0;
  align-self: center;
  order: -99999;
}

/* botoes ------------------------------------------------------------------ */

.pxt-botao {
  display: inline-block;
  padding: 12px 24px;
  font-family: var(--pxt-fonte);
  font-size: 15px;
  line-height: 15px;
  text-align: center;
  text-decoration: none;
  border: 0;
  border-radius: 3px;
  cursor: pointer;
}

.pxt-botao--painel {
  background-color: var(--pxt-texto);
  color: var(--pxt-secundaria);
  font-weight: 400;
  border-radius: 2rem;
}

.pxt-botao--whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background-color: var(--pxt-verde-whatsapp);
  color: #fff;
  font-weight: 800;
}

.pxt-botao--enviar {
  width: 100%;
  min-height: 40px;
  padding: 0 24px;
  background-color: var(--pxt-secundaria);
  color: var(--pxt-cinza-barra);
  font-weight: 800;
  border-radius: 0.5rem;
}

.pxt-botao--enviar:hover {
  color: #fff;
}

/* menu mobile (offcanvas) -------------------------------------------------- */

.pxt-menu-mobile.offcanvas {
  width: 50vw;
  background-color: var(--pxt-texto);
  box-shadow: 2px 8px 23px 3px rgba(0, 0, 0, 0.2);
}

/* o popup original usa um degrade no lugar do fundo escuro padrao */
.offcanvas-backdrop.show {
  opacity: 1;
  background: linear-gradient(180deg, #2b2b2b80 0%, #2b2b2b00 100%);
}

.pxt-menu-mobile__topo {
  display: flex;
  justify-content: flex-end;
  padding: 1rem;
}

.pxt-menu-mobile__fechar {
  padding: 0;
  border: 0;
  background: none;
  color: #fff;
  font-size: 2rem;
  line-height: 0;
}

.pxt-menu-mobile__fechar .pxt-icone {
  width: 2rem;
  height: 2rem;
}

.pxt-menu-mobile__nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.pxt-menu-mobile__nav a {
  display: block;
  padding: 13px 2rem;
  font-family: var(--pxt-fonte);
  font-weight: 800;
  color: #fff;
  text-decoration: none;
}

.pxt-menu-mobile__nav a.is-ativo {
  color: var(--pxt-primaria);
}

/* =========================================================================
   HERO
   ========================================================================= */

.pxt-hero {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  width: 100%;
  padding: 0;
  overflow: auto;
  background-image: url("../img/hero/hero-1.png");
  background-position: 0 -50vh;
  background-repeat: no-repeat;
  background-size: cover;
}

.pxt-hero__interno {
  width: 70%;
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  align-items: center;
  flex-wrap: nowrap;
  padding-top: 12%;
}

.pxt-hero__texto {
  flex: 1 1 auto;
  min-width: 0;
  align-self: stretch;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-left: 10%;
}

.pxt-hero__tagline {
  margin: 0;
  font-size: 1.8rem;
  font-weight: 300;
  color: #fff;
}

.pxt-hero__tagline strong {
  font-weight: 700;
}

.pxt-hero__titulo {
  font-size: 6rem;
  font-weight: 800;
  color: var(--pxt-primaria);
}

.pxt-hero__arte {
  flex: 0 0 47.4%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-self: center;
}

.pxt-hero__foguete {
  width: 100%;
  -webkit-mask-image: url("../img/mask/rocket.png");
  mask-image: url("../img/mask/rocket.png");
  -webkit-mask-size: 138%;
  mask-size: 138%;
  -webkit-mask-position: center center;
  mask-position: center center;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
}

.pxt-hero-mobile {
  display: flex;
  flex-direction: column;
  max-width: var(--pxt-container);
  margin-inline: auto;
}

.pxt-hero-mobile {
  mix-blend-mode: color-dodge;
}

.pxt-hero-mobile__foguete {
  opacity: 0.9;
  position: relative;
  z-index: -1;
}

/* =========================================================================
   QUEM SOMOS
   ========================================================================= */

.pxt-quem-somos {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.pxt-quem-somos__cartao {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  min-height: 60vh;
  padding: 4rem 2rem;
  background-color: #fff;
}

.pxt-quem-somos__texto {
  width: 50%;
  max-width: 50%;
  align-self: center;
  text-align: center;
  font-size: 1rem;
  font-weight: 300;
  color: #333;
}

.pxt-quem-somos__texto p {
  margin: 0 0 0.9rem;
}

.pxt-quem-somos__texto p:last-child {
  margin-bottom: 0;
}

.pxt-titulo {
  font-size: 2rem;
  font-weight: 900;
  text-align: center;
}

.pxt-titulo--escuro {
  color: var(--pxt-texto);
}

.pxt-titulo--ciano {
  color: var(--pxt-secundaria);
}

/* =========================================================================
   SERVIÇOS
   ========================================================================= */

.pxt-servicos {
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  align-items: center;
  min-height: 100vh;
  width: 100%;
  margin-bottom: 2%;
  /* o container "boxed" do Elementor aplica 10px de recuo interno */
  padding: 10px;
}

.pxt-servicos__titulo {
  padding: 2rem 0;
  align-self: center;
}

.pxt-servicos__grid {
  width: 70%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 8% 4%;
  min-height: 70vh;
  padding: 10px;
}

.pxt-servico {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  border-radius: 1.5rem;
  background-color: var(--pxt-secundaria);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  min-height: 30vh;
  text-decoration: none;
}

.pxt-servico--infra { background-image: url("../img/servicos/infra.png"); }
.pxt-servico--software { background-image: url("../img/servicos/software.png"); }
.pxt-servico--dev { background-image: url("../img/servicos/dev.png"); }
.pxt-servico--server { background-image: url("../img/servicos/server.png"); }

.pxt-servico__faixa {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 10px;
  background-color: var(--pxt-secundaria);
  border-radius: 0 0 1.5rem 1.5rem;
}

.pxt-servico--infra .pxt-servico__faixa {
  border-radius: 0 0 1.25rem 1.25rem;
}

.pxt-servico__nome {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--pxt-cinza-barra);
  text-align: center;
}

/* =========================================================================
   EQUIPE
   ========================================================================= */

.pxt-equipe {
  display: flex;
  flex-direction: column;
  align-items: center;
  /* no original era 80vh, altura de 3 fileiras de membros; com 2 fileiras
     isso deixaria uma faixa vazia no fim da secao */
  min-height: auto;
  padding-bottom: 2rem;
  width: 100%;
  background-color: var(--pxt-cinza-equipe);
}

.pxt-equipe__titulo {
  /* 10px do container + 20px de um container vazio que existe no original */
  padding: 2rem 10px;
  margin-block: 10px 30px;
}

.pxt-equipe__rolagem {
  display: flex;
  width: 90%;
  overflow: hidden;
  overflow-x: auto;
  margin-bottom: 1rem;
  padding-bottom: 1rem;
}

.pxt-equipe__grid {
  width: 100%;
  flex: 0 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 2%;
  justify-items: center;
  align-items: center;
  padding-bottom: 2%;
}

.pxt-membro {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  align-self: flex-start;
  margin: 0;
  padding: 10px;
  text-align: center;
}

.pxt-membro img {
  /* no original a miniatura de 150px e exibida a 80% -> 120px em todos os breakpoints */
  width: 120px;
  height: 120px;
  border-style: none;
  -webkit-mask-image: url("../img/mask/circle.svg");
  mask-image: url("../img/mask/circle.svg");
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-position: center center;
  mask-position: center center;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
}

.pxt-membro__nome {
  font-size: 1.25rem;
  font-weight: 900;
  color: var(--pxt-secundaria);
}

.pxt-membro__cargo {
  margin: 0;
  font-weight: 300;
  color: #fff;
}

/* no original apenas o primeiro cargo mantem o espacamento padrao do paragrafo */
.pxt-membro:first-child .pxt-membro__cargo {
  margin-bottom: 0.9rem;
}

/* =========================================================================
   LINKS ÚTEIS + CONTATOS
   ========================================================================= */

.pxt-links {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  min-height: 50vh;
  margin-bottom: 4rem;
  max-width: var(--pxt-container);
  margin-inline: auto;
  padding: 10px 0;
}

.pxt-links .pxt-titulo,
.pxt-links__grid {
  /* containers "full" do Elementor trazem 10px de recuo padrao */
  padding: 10px;
}

.pxt-links__grid {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 1.5rem;
  align-items: stretch;
}

.pxt-link-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 10px;
  border-radius: 1.5rem;
  text-decoration: none;
}

/* apenas o primeiro cartao define a altura da linha, como no original */
.pxt-link-card--azul {
  padding: 3rem;
}

.pxt-link-card--azul { background-color: var(--pxt-primaria); }
.pxt-link-card--ciano { background-color: var(--pxt-secundaria); }
.pxt-link-card--verde { background-color: var(--pxt-acento); }

.pxt-link-card__titulo {
  margin: 0;
  padding: 0;
  text-align: center;
  font-size: 1.5rem;
  font-weight: 900;
  line-height: 1.5rem;
  color: var(--pxt-texto);
}

.pxt-link-card__estado {
  font-size: 24px;
  font-weight: 400;
  color: #1f1f1f;
  text-align: center;
}

/* cartoes de telefone ------------------------------------------------------ */

.pxt-contatos {
  width: 100%;
  padding: 10px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.pxt-contato {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px;
  width: 100%;
  margin-inline: auto;
  padding: 10px;
  background-color: var(--pxt-texto);
  border-radius: 20px;
}

.pxt-contato__icone {
  width: 46.667%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border: 2px solid var(--pxt-texto);
  border-radius: 50%;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.5);
}

.pxt-contato__setor {
  width: 89.415%;
  text-align: center;
  font-size: 22px;
  font-weight: 400;
  color: var(--pxt-secundaria);
}

.pxt-contato__fone {
  width: 89.415%;
  text-align: center;
  font-size: 22px;
  font-weight: 700;
  color: #fff;
}

@media (min-width: 768px) {
  .pxt-contato {
    width: 71.951%;
  }
}

/* =========================================================================
   CONECTE-SE (formulário)
   ========================================================================= */

.pxt-form {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  padding: 10px;
  background-color: var(--pxt-primaria);
}

.pxt-form__interno {
  width: 100%;
  max-width: 70vw;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  column-gap: 4%;
}

.pxt-form__arte {
  /* reproduz a largura que a imagem assume no original
     (296px @768, 414px @1440, 466px @1920) */
  flex: 0 0 auto;
  width: calc(17.559vw + 161.15px);
  line-height: 0;
}

.pxt-form__arte img {
  width: 100%;
}

.pxt-form__conteudo {
  flex: 1 1 auto;
  min-width: 0;
  padding-inline: 10px;
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
}

.pxt-form__titulo {
  padding-bottom: 1rem;
  text-align: center;
  font-size: 2rem;
  font-weight: 900;
  color: var(--pxt-secundaria);
}

.pxt-form__chamada {
  padding-bottom: 1rem;
  text-align: center;
  font-weight: 300;
  color: #fff;
}

.pxt-form__chamada p {
  margin: 0 0 0.9rem;
}

.pxt-formulario {
  display: flex;
  flex-wrap: wrap;
  margin-inline: -0.25rem;
  margin-bottom: -1rem;
}

.pxt-campo {
  width: 100%;
  padding-inline: 0.25rem;
  margin-bottom: 1rem;
}

.pxt-campo input:not([type="checkbox"]),
.pxt-campo textarea {
  width: 100%;
  min-height: 40px;
  padding: 8px 16px;
  background-color: transparent;
  border: 1px solid #fff;
  border-radius: 0.5rem;
  color: #fff;
  font-family: var(--pxt-fonte);
  font-size: 15px;
  font-weight: 700;
  line-height: 21px;
}

.pxt-campo textarea {
  min-height: 100px;
  resize: vertical;
}

.pxt-campo input::placeholder,
.pxt-campo textarea::placeholder {
  color: #fff;
  opacity: 0.7;
}

.pxt-campo input:focus,
.pxt-campo textarea:focus {
  outline: none;
  border-color: var(--pxt-secundaria);
}

.pxt-campo--aceite {
  display: flex;
  align-items: flex-start;
  gap: 6px;
  color: #fff;
  font-size: 15px;
  font-weight: 700;
}

.pxt-campo--aceite input {
  margin-top: 4px;
}

.pxt-campo--aceite a {
  color: #fff;
  text-decoration: none;
}

.pxt-hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.pxt-formulario__aviso {
  width: 100%;
  margin: 0 0 1rem;
  padding-inline: 0.25rem;
  color: #fff;
  font-weight: 700;
}

.pxt-divisor {
  width: 100%;
  margin: 0;
  border: 0;
  border-top: 1px solid var(--pxt-secundaria);
  opacity: 1;
}

.pxt-form__conteudo > .pxt-divisor {
  margin-block: 15px;
}

@media (min-width: 1440px) {
  .pxt-form__arte {
    width: min(calc(10.8333vw + 258px), 768px);
  }
}

/* =========================================================================
   RODAPÉ
   (no site original o rodape do tema fica oculto — mantido aqui apenas
   como marcacao semantica, sem exibicao)
   ========================================================================= */

.pxt-footer {
  display: none;
}

/* =========================================================================
   PÁGINAS INTERNAS (política de privacidade)
   ========================================================================= */

.pxt-pagina {
  max-width: var(--pxt-container);
  margin-inline: auto;
  padding: 10px;
}

.pxt-pagina__cartao {
  margin-top: 5rem;
  padding: 5rem;
  background-color: #fff;
}

.pxt-pagina__titulo {
  margin: 0 0 1rem;
  padding: 0;
  line-height: 1;
  text-align: center;
  font-size: 2rem;
  font-weight: 400;
  color: var(--pxt-primaria);
}

.pxt-pagina__texto {
  font-family: var(--pxt-fonte);
  font-weight: 300;
  color: var(--pxt-texto);
}

.pxt-pagina__texto h3 {
  margin-block: 1.5rem 1rem;
  font-size: 1.75rem;
  font-weight: 500;
  line-height: 1.2;
}

@media (max-width: 767px) {
  .pxt-pagina__cartao {
    padding: 2rem;
  }
}

/* =========================================================================
   ANIMAÇÕES
   ========================================================================= */

@keyframes pxtSlideInLeft {
  from { transform: translate3d(-100%, 0, 0); visibility: visible; }
  to { transform: translate3d(0, 0, 0); }
}

.pxt-anima-slide-left {
  animation-name: pxtSlideInLeft;
  animation-duration: 0.3s;
  animation-fill-mode: both;
}

/* =========================================================================
   TABLET (≤ 1024px)
   ========================================================================= */

@media (max-width: 1024px) {
  .pxt-hero {
    background-position: 0 0;
  }

  .pxt-contatos {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* =========================================================================
   MOBILE (≤ 767px)
   ========================================================================= */

@media (max-width: 767px) {
  html {
    scroll-padding-top: 70px;
  }

  /* o kit global zera o recuo padrao dos containers no mobile
     (--container-default-padding-*: 0px) */
  .pxt-servicos,
  .pxt-servicos__grid,
  .pxt-links,
  .pxt-links .pxt-titulo,
  .pxt-contato,
  .pxt-membro,
  .pxt-form__conteudo {
    padding: 0;
  }

  /* header */
  .pxt-header {
    top: 2%;
    z-index: 15;
    padding: 0;
  }

  .pxt-header__bar {
    width: 72%; /* 90% de 80% do viewport, como no original */
    padding-block: 2%;
    justify-content: space-between;
    align-items: center;
    column-gap: 5%;
    padding: 2% 0 2% 2%;
    border-radius: 100px;
    flex-wrap: nowrap;
  }

  .pxt-burger {
    font-size: 1.5rem;
  }

  .pxt-header__logo {
    width: 15%;
    max-width: 15%;
    padding: 5%;
    order: -99999;
  }

  .pxt-header__logo:not(.pxt-header__logo--full) img {
    width: 100%;
    max-width: 100%;
  }

  .pxt-header__acao {
    flex: 1 0 auto;
  }

  .pxt-botao--painel {
    display: block;
    width: 100%;
    padding: 5%;
    font-size: 12px;
    letter-spacing: 0.5px;
    border-radius: 80px;
  }

  .pxt-menu-mobile.offcanvas {
    width: 50vw;
  }

  /* hero */
  .pxt-hero {
    min-height: 70vh;
    align-items: stretch;
    align-content: flex-end;
    flex-wrap: wrap;
    margin: 0;
    padding: 0;
    background-image: url("../img/hero/hero-1-alt.png");
    background-position: top center;
    background-size: 120% auto;
  }

  .pxt-hero__interno {
    width: 100%;
    align-items: center;
    align-self: center;
  }

  .pxt-hero__texto {
    flex: 1 1 100%;
    min-height: 60vh;
    justify-content: flex-end;
    align-self: center;
    padding: 0;
  }

  .pxt-hero__tagline {
    text-align: center;
    font-size: 1.3rem;
  }

  .pxt-hero__titulo {
    text-align: center;
    font-size: 4rem;
  }

  .pxt-hero-mobile {
    margin: 0;
    padding: 0;
  }

  /* quem somos */
  .pxt-quem-somos {
    min-height: 33vh;
    justify-content: center;
  }

  .pxt-quem-somos__cartao {
    width: 90%;
    align-self: center;
    min-height: 40vh;
    padding: 2rem 0;
    border-radius: 1.5rem;
  }

  .pxt-titulo {
    font-size: 1.25rem;
  }

  .pxt-quem-somos__texto {
    width: 80%;
    max-width: 80%;
    font-size: 0.75rem;
    line-height: 1.25rem;
  }

  /* servicos */
  .pxt-servicos {
    min-height: 100vh;
    justify-content: space-around;
    margin: 0 0 8rem;
  }

  .pxt-servicos__titulo {
    margin: 2rem 0 1.25rem;
    padding: 2rem 0;
  }

  .pxt-servicos__grid {
    width: 100%;
    min-height: 100vh;
    grid-template-columns: repeat(1, 1fr);
    grid-template-rows: repeat(4, 1fr);
    justify-items: center;
  }

  .pxt-servico {
    width: 80%;
    min-height: 8rem;
    justify-content: flex-end;
    align-items: center;
    border-radius: 1.25rem;
  }

  .pxt-servico--infra { background-image: url("../img/servicos/infra-sm.png"); }
  .pxt-servico--software { background-image: url("../img/servicos/software-sm.png"); }
  .pxt-servico--dev { background-image: url("../img/servicos/dev-sm.png"); }
  .pxt-servico--server { background-image: url("../img/servicos/server-sm.png"); }

  .pxt-servico__faixa {
    padding: 0.5rem 0;
    border-radius: 0 0 1.25rem 1.25rem;
  }

  .pxt-servico__nome {
    font-size: 0.75rem;
  }

  /* equipe */
  .pxt-equipe {
    min-height: 0;
    margin: 3.75rem 0 0;
    padding: 0;
  }

  .pxt-equipe__titulo {
    margin: 1.75rem 0;
    padding: 0;
  }

  .pxt-equipe__rolagem {
    padding-bottom: 3rem;
  }

  .pxt-equipe__grid {
    width: 200%;
    min-height: 35vh;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 1fr);
  }

  .pxt-membro__nome {
    font-size: 1rem;
  }

  .pxt-membro__cargo {
    font-size: 0.8rem;
  }

  /* links uteis e contatos */
  .pxt-links {
    align-items: center;
    gap: 0;
    margin-top: 3.75rem;
  }

  .pxt-links .pxt-titulo {
    margin-block: 1.25rem;
  }

  .pxt-links__grid {
    width: 80%;
    min-height: 45vh;
    grid-template-columns: repeat(1, 1fr);
    grid-template-rows: repeat(3, 1fr);
    row-gap: 1.5rem;
    justify-items: center;
    padding: 0;
  }

  .pxt-link-card {
    width: 100%;
    border-radius: 1.25rem;
  }

  .pxt-contatos {
    width: 80%;
    grid-template-columns: repeat(1, 1fr);
    padding: 0;
  }

  .pxt-equipe__rolagem {
    width: 100%;
  }

  /* formulario */
  .pxt-form__interno {
    max-width: 100%;
    flex-wrap: wrap;
    row-gap: 2rem;
  }

  .pxt-form__arte {
    flex: 1 1 100%;
    width: auto;
    text-align: center;
  }

  .pxt-form__arte img {
    width: auto;
    max-width: 100%;
  }

  .pxt-form__conteudo {
    flex: 1 1 100%;
  }
}
