* {
  text-decoration: none !important;
  text-transform: none;
  font-family: 'Montserrat', sans-serif;
}
li{
  list-style: none;
}

.botaoLaranja {
  background-color: #fc653c;
  padding: 0px 0px 0px 20px;
  border-radius: 55px;
  width: 232px;
  display: flex;
  margin-top: 50px;
  cursor: pointer;
}

.section_title {
  padding: 50px 0px;
  display: block;
  width: 100%;
}

.botaoLaranja a {
  color: white;
  padding: 15px 53px 0px 0px;
}

.botaoLaranja i {
  background: #e55e39;
  padding: 20px 30px;
  float: right;
  border-radius: 55px;
  color: white;
}

.botaoLaranja:hover i {
  animation: moveRight 0.5s forwards;
  /* Aplica a animação no hover */
}

@keyframes moveRight {
  from {
    transform: translateX(0);
    /* Posição inicial do ícone */
  }

  to {
    transform: translateX(10px);
    /* Posição final do ícone */
  }
}

header {
  position: absolute;
  width: 100%;
  z-index: 3;
}

header .desktop-header a {
  color: #fff !important;

}

.hdMenu .nav-item a {
  font-weight: 800;
  font-size: 0.8em;
}

.hdMenu .nav-item a:hover {
  color: #fc653c !important;
}

.hdSocial a {
  margin-left: 10px;
}

.banner .bannerItem {
  background: #1e1e22;
  min-height: 972px;
  color: #fff;
}

.bnText {
  position: relative;
  top: 350px;
}

.bnText h2 {
  font-size: 4em;
  font-weight: bolder;
}

.servicos {
  padding: 100px 0px;
  background: #f3f3f3;
}

.servicos h3 {
  font-weight: bolder;
  font-size: 3em;
}

.servicos .box_serv {
  background: #fff;
  padding: 60px 30px;
  border-radius: 10px;
  display: block;
  cursor: pointer;
  color: #1e1e22;
}

.box_serv:hover {
  border: 1px solid #e55e39;
}

.servicos .item figure {
  width: 62px;
}

.homeportfolio {
  background: #f3f3f3;
  padding-bottom: 10px;
}

.homeportfolio .botaoLaranja {
  margin: 0px auto;
}

.homeportfolio .botaoLaranja a {
  padding: 15px 63px 0px 0px;
}

.homeportfolio .section_title h3 {
  font-size: 3em;
  font-weight: bolder;
}

.port_box {
  position: relative;
  /* Adiciona posicionamento relativo para que o ::before possa ser posicionado corretamente */
  border-radius: 10px;
  padding: 50px 0px;
  min-height: 430px;
}

.port_box::before {
  content: "";
  position: absolute;
  /* Altera para position: absolute */
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 102, 52, 0.8);
  opacity: 0;
  transition: opacity 0.3s ease;
  border-radius: 10px;
  /* Mesmo raio de borda da .port_box */
  z-index: 1;
  /* Garante que a sobreposição esteja na frente do conteúdo */
}

.port_box:hover::before {
  opacity: 1;
}

.port_box .casehometit {
  position: relative;

}

.evtitho {
  position: relative;
  top: 180px;
  z-index: 2;
  cursor: pointer;
}
.evtitho span{
  display: block;
  width: 100%;
  float: left;
}

.evtitho h6 {
  background: #e55e39;
  padding: 5px 10px;
  float: left;
  color: #fff;
  font-weight: bold;
  margin: 0px;
  border-top-right-radius: 10px;
  /* Ajuste o valor conforme necessário */
  -webkit-border-top-right-radius: 10px;
  /* Para navegadores WebKit como Chrome e Safari */
  -moz-border-radius-topright: 10px;
  /* Para navegadores baseados em Gecko como Firefox */

}

.evtitho h3 {
  float: left;
  padding: 20px 10px;
  background: #1e1e22;
  color: #fff;
  font-weight: bold;
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
  -webkit-border-top-right-radius: 10px;
  -webkit-border-bottom-right-radius: 10px;
  -moz-border-radius-topright: 10px;
  -moz-border-radius-bottomright: 10px;

}

.top-right-link {
  position: relative;
  top: 10px;
  /* Ajuste conforme necessário */
  right: 10px;
  /* Ajuste conforme necessário */
  width: 50px;
  height: 50px;
  float: right;
  background-color: white;
  border-radius: 50%;
  padding: 10px;
  /* Ajuste conforme necessário */
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  color: inherit;
  z-index: 2;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  /* Opcional: adiciona sombra para destaque */
}

.clientes {
  padding: 100px 0px 100px 0px;
  background-color: black;
  background-image: url('../imagens/bg-clientes.png');
  background-repeat: repeat-x;
}

.carclient figure {
  padding: 0px 20px;
}

.carclient img {
  width: 100%;
}

.titClientes {
  color: #f3f3f3;
}

.titClientes h3 {
  font-size: 3em;
  font-weight: bolder;
}

.secblog {
  padding: 100px 0px;

}

.box-date {
  background: #e55e39;
  position: absolute;
  right: 5px;
  top: 170px;
  color: #fff;
  text-align: center;
  padding: 10px 10px;
}
.boxautor{
  font-size: 0.6em;
  display: inline-flex;
}
.boxautor article{
  padding: 0px 10px;
}
.boxautor i{
  color: #e55e39;
  margin: 0px 5px;
}
.box-date span{
  display: block;
  width: 100%;
  text-align: center;
  border-radius: 5px !important;
  font-size: 0.8em;
  font-weight: bold;
  line-height: 1em;
  margin: 0px;
}

.boxBlog h2 {
  font-size: 1.2em;
  font-weight: bolder;
  margin-bottom: 30px;
}

.tituloBlog{
  font-size: 3em;
  font-weight: bolder;
}

.blog-carousel figure {
  padding: 100px 0px;
}

footer{
  padding: 100px 0px 0px 0px;
  background-color: black;
  background-image: url('../imagens/bg-clientes.png');
  background-repeat: repeat-x;
  color: #fff;
  text-decoration: none;
}
.rdpMenu ul{
  margin: 0px;
  padding: 0px;
}
.rdpMenu ul li a{
  padding: 0px;
  color: #fff;
  padding: 5px 0px;
  font-weight: 600;
  font-size: 1em;
}
.rdpMenu a:hover, footer a:hover{
  color: #e55e39;
}
.rdpMenu ul li:hover{
  list-style: circle;
  color: #e55e39;
}

footer a{
  color: #fff;
}
.copy{
  background: #1e1e22;
  width: 100%;
  padding: 20px;
  color: fff;
  text-align: center;
  font-size: 0.8em;
  margin-top: 50px;
}

.banner-blog{
  padding: 150px 0px 100px 0px;
  color: #f3f3f3;
}

.banner-blog h1{
  font-weight: bold;
  background-color: #1e1e228c;
  padding: 5px 10px;
}

.listanoticias{
  padding: 50px 0px;
}

.blog-link a{
  color: #1e1e22;
}
.blog-link a:hover{
  color: #e55e39;
}

.bgIntpg{
  padding: 100px 0px;
}

.bgIntpg h1{
  font-weight: bold;
  background-color: #1e1e228c;
  padding: 5px 10px;
  color: #f3f3f3;
}
.post-item figure{
  max-height: 300px;
}
.post-item img{
  width: 100%;
}