
/*CABECALHO*/
    .layout-cabecalho {
      height: 100px;
      line-height: 100px;
      border-bottom: 1px solid #ccc;

      background-color: #032440;
    }

    .navegacao > img{
      margin-top: 12px;
    }

    .layout-cabecalho--home{
      position: fixed;
      top: 0;
      left: 0;
      right: 0;

      z-index: 9999;
    }

/*CHAMADA*/
  .layout-chamada {
  position: relative;
  background-image: url("../Imagens/Fundo3.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  color: #fff;

  padding: 80px 0;
  min-height: 100vh;
  height: 900px;
}

.layout-chamada::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.5); /* camada preta 50% transparente */
}

.layout-chamada .container {
  position: relative; /* deixa o texto acima do overlay */
  z-index: 1;
}

.Layout-subchamada {
  text-align: center;    /* centraliza conteúdo dentro */
  padding: 40px 0;       /* espaço acima e abaixo */
  margin-top: -80vh;
  position: relative;
  z-index: 2;
}

.img-subchamada {
  max-width: 90%;        /* diminui o tamanho (60% da largura disponível) */
  height: auto;          /* mantém proporção */
  display: inline-block; /* garante centralização */
}

/* --- TABLET --- */
@media (max-width: 992px) {
  .layout-chamada {
    padding: 60px 20px;
    height: auto;        /* altura automática */
    min-height: 70vh;
  }

  .Layout-subchamada {
    margin-top: -20vh;   /* menos sobreposição */
  }

  .img-subchamada {
    max-width: 80%;      /* ocupa mais largura no tablet */
  }
}

/* --- SMARTPHONE--- */
@media (max-width: 768px) {
  .layout-chamada {
    padding: 60px 20px;
    height: auto;        /* altura automática */
    min-height: 70vh;
  }

  .Layout-subchamada {
    margin-top: -10vh;   /* menos sobreposição */
  }

  .img-subchamada {
    max-width: 80%;      /* ocupa mais largura no tablet */
  }
}

/* --- SMARTPHONE--- */
@media (max-width: 552px) {
  .layout-chamada {
    padding: 60px 20px;
    height: auto;        /* altura automática */
    min-height: 70vh;
  }

  .Layout-subchamada {
    margin-top: -10vh;   /* menos sobreposição */
  }

  .img-subchamada {
    max-width: 80%;      /* ocupa mais largura no tablet */
  }
}


/*SOBRE*/
.bloco-mvv {
  margin-top: 60px;
  display: flex;
  justify-content: center;
  align-items: stretch;
  flex-wrap: wrap;
  gap: 30px;

  background-color: #FFF;
  padding: 40px 20px;
  color: #fff;
}

/*SERVIÇOS DESCRIÇÃO*/
.layout-servicos {
  background-color: #032440; /* azul escuro */
  color: #fff;
  padding: 80px 20px;
  text-align: center;
}

.servico_sites {
  padding: 60px 20px;
  background: #fff;       /* fundo branco */
  color: #032440;         /* cor do texto */
}


/*CONTATO*/
.contato-section {
  display: flex;
  min-height: 100vh;
}

.contato-img {
  flex: 1;
  background: url("../Imagens/contato.png") no-repeat center center/cover;
}


/*DEPOIMENTO*/
.layout-depoimento{
  padding: 80px 0 0 0;
  background-color: #e7e7e7;
}

/*RODAPE*/
 .layout-rodape {
  background-color: #032440;
  color: #FFD700;
  padding: 20px 20px;
  font-family: 'Arial', sans-serif;
  font-size: 1.4rem;
}

.container-rodape {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 30px;
}








