* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  color: #062e66;
  background: #ffffff;
}

header {
  height: 90px;
  display: flex;
  align-items: center;
  padding: 0 8%;
  border-bottom: 1px solid #eeeeee;
  background: #ffffff;
}

header img {
  width: 220px;
  height: auto;
  display: block;
}

main {
  min-height: calc(100vh - 90px);

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;

  text-align: center;
  padding: 60px 20px;

  background:
    linear-gradient(
      135deg,
      #f7fbff 0%,
      #ffffff 55%,
      #f4fff3 100%
    );
}

main h1 {
  max-width: 850px;
  font-size: 48px;
  line-height: 1.1;
  color: #062e66;
  margin-bottom: 20px;
}

main p {
  max-width: 650px;
  font-size: 20px;
  line-height: 1.6;
  color: #526477;
  margin-bottom: 32px;
}

main button {
  border: 0;
  border-radius: 10px;

  padding: 16px 28px;

  font-size: 17px;
  font-weight: 700;

  color: white;
  background: #0a5bd8;

  cursor: pointer;

  box-shadow: 0 8px 20px rgba(10, 91, 216, 0.20);
}

main button:hover {
  background: #084bb3;
}

@media (max-width: 600px) {
  header {
    height: 75px;
    padding: 0 20px;
  }

  header img {
    width: 180px;
  }

  main {
    min-height: calc(100vh - 75px);
  }

  main h1 {
    font-size: 34px;
  }

  main p {
    font-size: 17px;
  }
}
/* ========================================
   ORÇAMENTO FÁCIL
======================================== */

.pagina-orcamento {
  display: block;
  min-height: calc(100vh - 90px);
  padding: 55px 20px;
}

.pagina-orcamento h1 {
  text-align: center;
  font-size: 42px;
  margin-bottom: 12px;
}

.pagina-orcamento > p {
  text-align: center;
  margin: 0 auto 35px;
}

.pagina-orcamento form {
  width: 100%;
  max-width: 720px;
  margin: 0 auto;

  display: flex;
  flex-direction: column;

  padding: 32px;

  background: #ffffff;
  border: 1px solid #e3eaf2;
  border-radius: 16px;

  box-shadow: 0 10px 30px rgba(6, 46, 102, 0.08);
}

.pagina-orcamento label {
  margin: 0 0 7px;

  font-size: 15px;
  font-weight: 700;

  color: #062e66;
}

.pagina-orcamento input,
.pagina-orcamento textarea {
  width: 100%;

  margin-bottom: 20px;
  padding: 12px 14px;

  font-family: inherit;
  font-size: 16px;

  color: #26384a;
  background: #ffffff;

  border: 1px solid #cbd5e1;
  border-radius: 8px;

  outline: none;
}

.pagina-orcamento textarea {
  resize: vertical;
}

.pagina-orcamento input:focus,
.pagina-orcamento textarea:focus {
  border-color: #0a5bd8;

  box-shadow: 0 0 0 3px rgba(10, 91, 216, 0.10);
}

.pagina-orcamento form button {
  align-self: center;
  min-width: 220px;

  margin-top: 5px;
}
/* ========================================
   ESTRUTURA INTERNA - ORÇAMENTO
======================================== */

.pagina-orcamento form h2 {
  margin: 10px 0 22px;
  padding-bottom: 10px;

  font-size: 23px;
  color: #062e66;

  border-bottom: 1px solid #e3eaf2;
}

.pagina-orcamento form h2:not(:first-child) {
  margin-top: 30px;
}

.pagina-orcamento select {
  width: 100%;
  margin-bottom: 20px;
  padding: 12px 14px;

  font-family: inherit;
  font-size: 16px;

  color: #26384a;
  background: #ffffff;

  border: 1px solid #cbd5e1;
  border-radius: 8px;
}

/* ITENS */

.tabela-itens {
  width: 100%;
  margin-bottom: 15px;
}

.cabecalho-item,
.linha-item {
  display: grid;

  grid-template-columns:
  minmax(200px, 1fr)
  70px
  130px
  110px
  36px;
}

.cabecalho-item {
  margin-bottom: 7px;

  font-size: 13px;
  font-weight: 700;

  color: #526477;
}

.cabecalho-item span:not(:first-child) {
  text-align: center;
}

.linha-item input {
  margin-bottom: 0;
}

.item-total {
  padding: 12px 8px;

  text-align: right;
  font-weight: 700;

  color: #062e66;
}

/* BOTÃO ADICIONAR ITEM */

.pagina-orcamento form .botao-secundario {
  align-self: flex-start;

  min-width: 0;
  margin: 5px 0 25px;
  padding: 11px 18px;

  color: #0a5bd8;
  background: #eef5ff;

  border: 1px solid #b9d3fa;
  box-shadow: none;
}

.pagina-orcamento form .botao-secundario:hover {
  background: #dcecff;
}

/* RESUMO */

.resumo-orcamento {
  margin: 5px 0 15px;
  padding: 20px;

  background: #f7faff;

  border: 1px solid #dce7f5;
  border-radius: 12px;
}

.resumo-orcamento > div {
  display: flex;
  align-items: center;
  justify-content: space-between;

  min-height: 45px;
}

.resumo-orcamento label {
  margin: 0;
}

.resumo-orcamento input {
  width: 150px;
  margin: 0;

  text-align: right;
}

.total-geral {
  margin-top: 12px;
  padding-top: 15px;

  border-top: 2px solid #d6e2f0;

  font-size: 21px;
  color: #062e66;
}

.total-geral strong {
  color: #39a52b;
}

/* CELULAR */

@media (max-width: 700px) {

  .pagina-orcamento {
    padding: 35px 14px;
  }

  .pagina-orcamento form {
    padding: 22px 16px;
  }

  .cabecalho-item {
    display: none;
  }

  .linha-item {
  grid-template-columns: 1fr 80px 40px;
}

  .item-descricao {
    grid-column: 1 / -1;
  }

  .item-total {
    text-align: right;
  }

  .resumo-orcamento input {
    width: 120px;
  }
}
/* BOTÃO REMOVER ITEM */

.pagina-orcamento form .btn-remover-item {
  width: 34px;
  height: 34px;
  min-width: 34px;

  margin: 0;
  padding: 0;

  display: flex;
  align-items: center;
  justify-content: center;

  border: 1px solid #e4bcbc;
  border-radius: 8px;

  background: #fff5f5;
  color: #c62828;

  font-size: 20px;
  font-weight: 700;
  line-height: 1;

  box-shadow: none;
  cursor: pointer;
}

.pagina-orcamento form .btn-remover-item:hover {
  background: #ffe4e4;
  color: #a81818;
}
/* ========================================
   VISUALIZAÇÃO DO ORÇAMENTO
======================================== */

.visualizacao-orcamento {
  width: 100%;
  max-width: 850px;

  margin: 45px auto 0;
}

.documento-orcamento {
  padding: 45px;

  background: #ffffff;

  border: 1px solid #dce3ec;
  border-radius: 12px;

  box-shadow: 0 10px 35px rgba(6, 46, 102, 0.10);

  color: #26384a;
}

.documento-topo {
  display: flex;
  justify-content: space-between;
  align-items: center;

  padding-bottom: 25px;
  margin-bottom: 25px;

  border-bottom: 3px solid #0a5bd8;
}

.documento-topo img {
  width: 220px;
  height: auto;
}

.documento-topo h2 {
  margin: 0 0 8px;

  font-size: 30px;
  color: #062e66;
}

.documento-topo p {
  margin: 0;

  font-size: 14px;
  color: #526477;
}

.documento-bloco {
  margin-bottom: 28px;
}

.documento-bloco h3 {
  margin-bottom: 10px;

  font-size: 17px;
  color: #062e66;
}

.documento-bloco p {
  margin: 4px 0;

  font-size: 15px;
}

.doc-item {
  display: grid;

  grid-template-columns:
    minmax(200px, 1fr)
    70px
    130px
    130px;

  gap: 12px;

  padding: 10px 0;

  border-bottom: 1px solid #e4eaf1;

  font-size: 14px;
}

.doc-item span:not(:first-child),
.doc-item strong {
  text-align: right;
}

.documento-totais {
  margin: 25px 0;

  padding: 20px;

  background: #f7faff;
  border-radius: 10px;
}

.documento-totais p {
  display: flex;
  justify-content: space-between;

  margin: 8px 0;
}

.documento-totais .doc-total {
  margin-top: 15px;
  padding-top: 15px;

  border-top: 2px solid #dce5ef;

  font-size: 20px;
  color: #062e66;
}

.documento-totais .doc-total strong {
  color: #39a52b;
}

.doc-item-cabecalho {
  font-weight: 700;
  color: #062e66;
  border-bottom: 2px solid #d6e2f0;
}

.doc-item-cabecalho span:not(:first-child) {
  text-align: right;
}
/* ========================================
   AÇÕES DO DOCUMENTO
======================================== */

.acoes-documento {
  display: flex;
  justify-content: center;
  gap: 14px;

  margin-top: 24px;
}

.acoes-documento button {
  min-width: 210px;
}

.acoes-documento .botao-secundario {
  color: #0a5bd8;
  background: #eef5ff;

  border: 1px solid #b9d3fa;
  box-shadow: none;
}

/* ========================================
   IMPRESSÃO / PDF
======================================== */

@media print {

  body {
    background: #ffffff;
  }

  body > header,
.pagina-orcamento > h1,
.pagina-orcamento > p,
#formOrcamento,
#formRecibo,
.acoes-documento {
  display: none !important;
}

  .pagina-orcamento {
    min-height: auto;
    padding: 0;
    background: #ffffff;
  }

  .visualizacao-orcamento {
    max-width: none;
    margin: 0;
  }

  .documento-orcamento {
    padding: 20px;

    border: none;
    border-radius: 0;

    box-shadow: none;
  }
    /* Não quebrar uma linha de item entre páginas */
  .doc-item {
    break-inside: avoid;
    page-break-inside: avoid;
  }

  /* Subtotal, desconto e total devem permanecer juntos */
  .documento-totais {
    break-inside: avoid;
    page-break-inside: avoid;
  }

  /* Evitar separar o título das informações do conteúdo */
  .documento-bloco {
    break-inside: avoid;
    page-break-inside: avoid;
  }
    .documento-orcamento {
    padding: 12px 20px;
  }

  .documento-topo {
    padding-bottom: 12px;
    margin-bottom: 12px;
  }

  .documento-topo img {
    width: 180px;
  }

  .documento-bloco {
    margin-bottom: 14px;
  }

  .documento-bloco h3 {
    margin: 6px 0;
  }

  .doc-item {
    padding: 6px 0;
  }

  .documento-totais {
    margin: 12px 0;
    padding: 12px 18px;
  }

  .documento-totais .doc-total {
    margin-top: 8px;
    padding-top: 8px;
  }
}
/* ========================================
   HOME WB TECH
======================================== */

.topo-site {
  height: 90px;

  display: flex;
  align-items: center;
  justify-content: space-between;

  padding: 0 8%;

  background: #ffffff;
  border-bottom: 1px solid #e7edf4;
}

.topo-site img {
  width: 220px;
}

.topo-site nav {
  display: flex;
  gap: 32px;
}

.topo-site nav a {
  text-decoration: none;

  font-size: 15px;
  font-weight: 700;

  color: #062e66;
}

.topo-site nav a:hover {
  color: #0a5bd8;
}

.home {
  display: block;
  min-height: auto;

  padding: 0;

  background: #ffffff;
}

.hero {
  min-height: 580px;

  display: flex;
  align-items: center;
  justify-content: center;

  padding: 80px 20px;

  text-align: center;

  background:
    linear-gradient(
      135deg,
      #f5faff 0%,
      #ffffff 55%,
      #f4fff2 100%
    );
}

.hero-conteudo {
  max-width: 850px;
}

.hero-tag {
  display: inline-block;

  margin-bottom: 18px;
  padding: 7px 14px;

  font-size: 13px;
  font-weight: 800;
  letter-spacing: 1px;

  color: #0a5bd8;
  background: #eaf3ff;

  border-radius: 20px;
}

.hero h1 {
  margin-bottom: 22px;

  font-size: 54px;
  line-height: 1.08;

  color: #062e66;
}

.hero p {
  max-width: 650px;

  margin: 0 auto 32px;

  font-size: 20px;
  line-height: 1.6;

  color: #526477;
}

.botao-principal,
.botao-card {
  display: inline-block;

  text-decoration: none;

  border-radius: 10px;

  font-weight: 700;

  transition: 0.2s;
}

.botao-principal {
  padding: 16px 28px;

  color: #ffffff;
  background: #0a5bd8;

  box-shadow:
    0 8px 20px
    rgba(10, 91, 216, 0.20);
}

.botao-principal:hover {
  background: #084bb3;
}


/* FERRAMENTAS */

.secao-ferramentas {
  padding: 90px 8%;

  background: #ffffff;
}

.titulo-secao {
  max-width: 700px;

  margin: 0 auto 50px;

  text-align: center;
}

.titulo-secao span {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 1px;

  color: #39a52b;
}

.titulo-secao h2 {
  margin: 10px 0 14px;

  font-size: 38px;
  color: #062e66;
}

.titulo-secao p {
  font-size: 18px;
  color: #64748b;
}

.grade-ferramentas {
  max-width: 1100px;

  margin: 0 auto;

  display: grid;

  grid-template-columns:
    repeat(3, 1fr);

  gap: 24px;
}

.card-ferramenta {
  position: relative;

  padding: 30px;

  background: #ffffff;

  border: 1px solid #e0e8f1;
  border-radius: 16px;

  box-shadow:
    0 8px 25px
    rgba(6, 46, 102, 0.06);

  transition: 0.2s;
}

.card-ferramenta:hover {
  transform: translateY(-4px);

  box-shadow:
    0 14px 32px
    rgba(6, 46, 102, 0.10);
}

.card-ferramenta.destaque {
  border-color: #b9d3fa;
}

.icone-ferramenta {
  margin-bottom: 20px;

  font-size: 38px;
}

.status-ferramenta {
  position: absolute;

  top: 22px;
  right: 22px;

  padding: 5px 10px;

  font-size: 11px;
  font-weight: 800;

  color: #ffffff;
  background: #39a52b;

  border-radius: 20px;
}

.status-ferramenta.em-breve {
  color: #64748b;
  background: #eef2f6;
}

.card-ferramenta h3 {
  margin-bottom: 12px;

  font-size: 23px;
  color: #062e66;
}

.card-ferramenta p {
  min-height: 88px;

  margin-bottom: 24px;

  line-height: 1.6;
  color: #64748b;
}

.botao-card {
  padding: 12px 20px;

  color: #ffffff;
  background: #0a5bd8;
}

.botao-card:hover {
  background: #084bb3;
}
/* AGENTE IA */

.secao-agente {
  padding: 80px 8%;
  background: #f8fbff;
}

.agente-conteudo {
  max-width: 900px;
  margin: 0 auto;
  padding: 55px 40px;
  text-align: center;
  background: #ffffff;
  border: 1px solid #dbe7f5;
  border-radius: 20px;
  box-shadow:
    0 12px 35px
    rgba(6, 46, 102, 0.08);
}

.agente-tag {
  display: inline-block;
  margin-bottom: 14px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 1px;
  color: #39a52b;
}

.agente-conteudo h2 {
  margin-bottom: 18px;
  font-size: 36px;
  color: #062e66;
}

.agente-conteudo p {
  max-width: 680px;
  margin: 0 auto 28px;
  font-size: 18px;
  line-height: 1.7;
  color: #64748b;
}

.botao-agente {
  display: inline-block;
  padding: 14px 26px;
  color: #ffffff;
  background: #0a5bd8;
  border-radius: 10px;
  font-weight: 700;
  text-decoration: none;
}

.botao-agente:hover {
  background: #084bb3;
}


/* SOBRE */

.secao-sobre {
  padding: 80px 20px;

  text-align: center;

  background: #062e66;
}

.secao-sobre h2 {
  margin-bottom: 18px;

  font-size: 36px;
  color: #ffffff;
}

.secao-sobre p {
  max-width: 680px;

  margin: auto;

  font-size: 18px;
  line-height: 1.7;

  color: #dbeafe;
}


/* RODAPÉ */

footer {
  display: flex;
  align-items: center;
  justify-content: space-between;

  padding: 28px 8%;

  background: #ffffff;
}

footer img {
  width: 160px;
}

footer p {
  font-size: 14px;
  color: #64748b;
}


/* RESPONSIVO */

@media (max-width: 800px) {

  .topo-site {
    height: auto;

    padding: 18px 20px;

    flex-direction: column;
    gap: 14px;
  }

  .topo-site img {
    width: 190px;
  }

  .topo-site nav {
    gap: 22px;
  }

  .hero {
    min-height: 500px;
  }

  .hero h1 {
    font-size: 38px;
  }

  .hero p {
    font-size: 17px;
  }

  .grade-ferramentas {
    grid-template-columns: 1fr;
  }

  .card-ferramenta p {
    min-height: auto;
  }

  footer {
    flex-direction: column;
    gap: 15px;

    text-align: center;
  }
}
.voltar-home {
  margin-left: auto;

  color: #062e66;
  text-decoration: none;

  font-size: 14px;
  font-weight: 700;
}

.voltar-home:hover {
  color: #0a5bd8;
}
/* =====================================================
   CALCULADORA DE SERVIÇOS
===================================================== */

.calculadora-servicos {
  width: 100%;
  max-width: 650px;
  margin: 35px auto 60px;
  padding: 32px;
  box-sizing: border-box;

  background: #ffffff;
  border: 1px solid #dbe5f0;
  border-radius: 18px;

  box-shadow: 0 10px 30px rgba(0, 45, 100, 0.08);
}

.calculadora-servicos .campo {
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
}

.calculadora-servicos label {
  margin-bottom: 7px;

  font-size: 15px;
  font-weight: 600;
  color: #123b73;
}

.calculadora-servicos input {
  width: 100%;
  box-sizing: border-box;

  padding: 13px 14px;

  font-size: 16px;
  font-family: inherit;

  color: #243b5a;
  background: #ffffff;

  border: 1px solid #cbd8e6;
  border-radius: 9px;

  outline: none;
  transition: 0.2s;
}

.calculadora-servicos input:focus {
  border-color: #1261d8;
  box-shadow: 0 0 0 3px rgba(18, 97, 216, 0.10);
}

.calculadora-servicos .btn-principal {
  display: block;

  width: 100%;
  margin-top: 10px;
  padding: 14px 20px;

  border: none;
  border-radius: 10px;

  background: #1261d8;
  color: #ffffff;

  font-family: inherit;
  font-size: 16px;
  font-weight: 700;

  cursor: pointer;
}

.calculadora-servicos .btn-principal:hover {
  filter: brightness(0.95);
}

.resultado-calculadora {
  margin-top: 30px;
  padding: 25px;

  background: #f6f9fd;
  border: 1px solid #d6e3f2;
  border-radius: 14px;
}

.resultado-calculadora h2 {
  margin: 0 0 20px;
  text-align: center;

  color: #123b73;
  font-size: 24px;
}

.linha-resultado {
  display: flex;
  justify-content: space-between;
  align-items: center;

  padding: 10px 0;
  border-bottom: 1px solid #e1e8f0;

  color: #405675;
}

.linha-resultado strong {
  color: #123b73;
}

.linha-resultado.valor-sugerido {
  margin-top: 15px;
  padding: 18px;

  background: #1261d8;
  border: none;
  border-radius: 10px;

  color: white;
  font-size: 18px;
}

.linha-resultado.valor-sugerido strong {
  color: white;
  font-size: 22px;
}

.btn-limpar-calculadora {
  display: block;

  width: 100%;
  margin-top: 15px;
  padding: 13px 20px;

  background: #ffffff;
  color: #123b73;

  border: 1px solid #b9cbe0;
  border-radius: 10px;

  font-family: inherit;
  font-size: 16px;
  font-weight: 600;

  cursor: pointer;
  transition: 0.2s;
}

.btn-limpar-calculadora:hover {
  background: #f1f6fc;
  border-color: #1261d8;
}

@media (max-width: 700px) {
  .calculadora-servicos {
    width: auto;
    margin: 25px 16px 40px;
    padding: 22px 18px;
  }
}
/* =====================================================
   RESULTADO - CALCULADORA DE SERVIÇOS
===================================================== */

.resultado-calculadora {
  margin-top: 30px;
  padding: 25px;

  background: #f6f9fd;
  border: 1px solid #d6e3f2;
  border-radius: 14px;
}

.resultado-calculadora h2 {
  margin: 0 0 20px;
  text-align: center;

  color: #123b73;
  font-size: 24px;
}

.linha-resultado {
  display: flex;
  justify-content: space-between;
  align-items: center;

  padding: 10px 0;
  border-bottom: 1px solid #e1e8f0;

  color: #405675;
}

.linha-resultado strong {
  color: #123b73;
}

.linha-resultado.valor-sugerido {
  margin-top: 15px;
  padding: 18px;

  background: #1261d8;
  border: none;
  border-radius: 10px;

  color: white;
  font-size: 18px;
}

.linha-resultado.valor-sugerido strong {
  color: white;
  font-size: 22px;
}
.btn-limpar-calculadora {
  display: block;

  width: 100%;
  margin-top: 15px;
  padding: 13px 20px;

  background: #ffffff;
  color: #123b73;

  border: 1px solid #b9cbe0;
  border-radius: 10px;

  font-family: inherit;
  font-size: 16px;
  font-weight: 600;

  cursor: pointer;
  transition: 0.2s;
}

.btn-limpar-calculadora:hover {
  background: #f1f6fc;
  border-color: #1261d8;
}
/* =====================================================
   ALINHAMENTO DAS PÁGINAS DE FERRAMENTAS
===================================================== */

.pagina-orcamento {
  width: 100%;
  max-width: 980px;
  margin: 0 auto;
  padding: 55px 24px 70px;
  box-sizing: border-box;
}

.pagina-orcamento > h1,
.pagina-orcamento > section:first-child h1 {
  text-align: center;
  margin: 0 0 14px;
}

.pagina-orcamento > p,
.pagina-orcamento > section:first-child p {
  text-align: center;
  margin: 0 auto 38px;
  max-width: 720px;
}

.calculadora-servicos {
  margin-left: auto;
  margin-right: auto;
}