* {
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: -moz-none;
  -o-user-select: none;
  user-select: none;
}

*:focus, *:active, * {
  outline:0 !important;
  -webkit-tap-highlight-color: transparent;
}

input:focus, textarea:focus {
  outline: none;
}

@font-face {
  font-family: Outfit;
  src: url("fonts/Outfit.ttf");
}

@font-face {
  font-family: Muli-Regular;
  src: url("fonts/Muli-Regular.ttf");
}

@font-face {
  font-family: Muli-Light;
  src: url("fonts/Muli-Light.ttf");
}

@font-face {
  font-family: Overpass;
  src: url("fonts/Overpass.ttf");
}

@font-face {
  font-family: IvyMode-Light;
  src: url("fonts/IvyMode-Light.ttf");
}

@font-face {
  font-family: Italiana-Regular;
  src: url("fonts/Italiana-Regular.ttf");
}


body {
  margin: 0;
  font-family: Muli-Regular;
  background-color: #2f2816;
}

.zircon-design-header {
  position: fixed;
  z-index: 9999;
  width: 100%;
  height: 80px;
  transition: all 0.3s linear;
}

.zircon-design-header.has-background,
.zircon-design-header.opened-menu {
  background-color: #2f2816;
  box-shadow: 0px 0px 26px #221b0a;
}

.zircon-design-header-content {
  width: 1280px;
  height: 100%;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.zircon-design-header-logo {
  width: 130px;
  height: 54px;
  background-image: url("../img/logo.avif");
  background-size: 100%;
  background-position: center;
  background-repeat: no-repeat;
}

.zircon-design-header-menu {
  display: flex;
  gap: 30px;
  align-items: center;
}

.zircon-design-header-menu-item {
  color: #FFF;
  font-family: Muli-Regular;
  font-size: 15px;
  cursor: pointer;
  transition: all 0.2s linear;
}

.zircon-design-header-menu-item:hover {
  color: #edc34f;
}

.zircon-design-header-menu-item-active {
  font-family: Muli-Regular;
  font-size: 15px;
  cursor: pointer;
  transition: all 0.2s linear;
  color: #ffffff;
  background-color: #ac0201;
  border-radius: 100px;
  padding: 8px 20px;
  font-weight: bold;
}

.zircon-design-banner {
  width: 100%;
  display: flex;
  justify-content: center;
  background-image: url("../img/banner-2.png");
  background-size: cover;
  background-position: center;
}

.zircon-design-banner-content {
  max-width: 1280px;
  width: 100%;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.zircon-design-banner-item {
  width: 100%;
}

.zircon-design-banner-item-title {
  font-family: Outfit;
  font-weight: bold;
  color: #FFF;
  font-size: 60px;
  width: 600px;
  line-height: 70px;
  text-shadow: 0px 0px 16px #352419;
}

.zircon-design-banner-item-subtitle {
  font-family: Outfit;
  margin-top: 15px;
  font-size: 15px;
  display: block;
  color: #fce08e;
  text-shadow: 0px 0px 16px #352419;
  margin-left: 6px;
}

.zircon-design-banner-cta {
  background-color: #edc34f;
  border: 0;
  text-transform: uppercase;
  padding: 20px 70px 20px 30px;
  border-radius: 100px;
  margin-top: 40px;
  color: #2f2816;
  font-family: Outfit;
  font-weight: bold;
  font-size: 16px;
  position: relative;
  cursor: pointer;
}

.zircon-design-banner-cta:after {
  content: "";
  position: absolute;
  width: 40px;
  height: 40px;
  right: 10px;
  top: 10px;
  border-radius: 100px;
  background-color: #d2a52b;
  background-image: url("../img/icon-right-marrom.svg");
  background-size: 20px;
  background-position: center;
  background-repeat: no-repeat;
}

.zircon-design-services {
  /* background-color: #edc34f; */
  background-color: #d3c398;
}

.zircon-design-services-content {
  padding: 90px 0px;
  max-width: 1280px;
  width: 100%;
  margin: auto;
  display: block;
  justify-content: space-between;
  align-items: center;
}

.zircon-design-services-title {
  font-family: Outfit;
  font-weight: bold;
  color: #2f2816;
  font-size: 60px;
  display: block;
  text-align: center;
  margin-bottom: 50px;
}

.zircon-design-services-title:after {
  content: "";
  display: block;
  width: 210px;
  height: 4px;
  background-color: #e7ab00;
  margin: auto;
}

.zircon-design-services-items {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 20px;
}

.zircon-design-services-item {
  width: 33%;
  position: relative;
  border-radius: 10px;
  overflow: hidden;
}

.zircon-design-services-item img {
  width: 100%;
}

.zircon-design-services-item-info {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 50px 10px;
  text-align: center;
}

.zircon-design-services-item-info-title {
  font-family: Outfit;
  font-weight: bold;
  text-transform: uppercase;
  display: block;
  color: #FFF;
  font-size: 26px;
  text-align: center;
}

.zircon-design-services-item-info-title:after {
  content: "";
  display: block;
  width: 120px;
  height: 4px;
  background-color: #edc44e;
  margin: auto;
  margin-top: 15px;
  border-radius: 100px;
}

.zircon-design-services-item-info-description {
  color: #FFF;
  line-height: 28px;
  text-align: center;
  margin-top: 30px;
  font-size: 18px;
  min-height: 85px;
}

.zircon-design-services-item-info-btn {
  cursor: pointer;
  border: 0;
  border-radius: 100px;
  margin-top: 20px;
  padding: 6px 30px 6px 15px;
  font-weight: bold;
  text-transform: uppercase;
  color: #2f2816;
  font-family: 'Outfit';
  background-color: #ecc44e;
  background-image: url("../img/icon-right-marrom.svg");
  background-size: 18px;
  background-repeat: no-repeat;
  background-position: calc(100% - 6px);
}

.zircon-design-services-item-modal {
  display: none;
  position: fixed;
  z-index: 99999;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(0, 0, 0, 0.7);
}

.zircon-design-services-item-modal-flex {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.zircon-design-services-item-modal .slick-dots {
  margin-top: 10px;
}

.zircon-design-services-item-modal-items {
  position: absolute;
  width: 600px;
}

.zircon-design-services-item-modal-item {
  width: 100%;
}

.zircon-design-services-item-modal-icon {
  font-size: 0px;
  width: 30px;
  height: 30px;
  border-radius: 100px;
  position: absolute;
  top: 20px;
  right: 20px;
  border: 0;
  cursor: pointer;
  background-image: url("../img/icon-close.svg");
  background-color: #edc34f;
  background-size: 18px;
  background-position: center;
  background-repeat: no-repeat;
}

.zircon-design-header-menu-btn {
  display: none;
  width: 30px;
  height: 30px;
  border-radius: 100px;
  position: absolute;
  top: 20px;
  right: 20px;
  border: 0;
  cursor: pointer;
  background-image: url("../img/icon-menu.svg");
  background-color: #edc34f;
  background-size: 18px;
  background-position: center;
  background-repeat: no-repeat;
}

.zircon-design-quem-somos {
  background-image: url("../img/quem-somos-banner.png");
  background-position: 0;
}

.zircon-design-quem-somos-content {
  padding: 90px 0px;
  max-width: 1280px;
  width: 100%;
  margin: auto;
}

.zircon-design-quem-somos-title {
  font-family: Outfit;
  font-weight: bold;
  color: #d3c398;
  font-size: 60px;
  display: block;
  /* text-align: center; */
  margin-bottom: 50px;
}

.zircon-design-quem-somos-title:after {
  content: "";
  display: block;
  width: 210px;
  height: 4px;
  background-color: #e7ab00;
  /* margin: auto; */
}

.zircon-design-quem-somos-text {
  color: #e3d7b5;
  line-height: 36px;
  margin-top: 30px;
  font-size: 22px;
}

.zircon-design-quem-somos-gallery {
  margin-top: 50px;
  width: calc(100% + 30px);
  position: relative;
}

.zircon-design-quem-somos-gallery-item {
  /* padding: 15px; */
  /* padding-right: 30px; */
  margin-right: 30px;
}

.zircon-design-quem-somos-gallery-item img {
  width: 100%;
  border-radius: 10px;
}

.slick-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
}

.slick-dots li button {
  font-size: 0px;
  width: 14px;
  height: 14px;
  border: 0;
  cursor: pointer;
  border-radius: 100px;
  background-color: #d3c398;
}

.slick-dots li.slick-active button {
  background-color: #e7ab00;
}

.slick-arrow {
  position: absolute;
  z-index: 10;
  width: 46px;
  height: 46px;
  box-shadow: 0 0 4px 0 rgba(0, 0, 0, 0.5);
  transition: opacity 0.2s;
  font-size: 0;
  border-radius: 100px;
  border: 0;
  top: 50%;
  margin-top: -23px;
  cursor: pointer;
  background-color: #edc34f;
  background-size: 26px;
  background-position: center;
  background-repeat: no-repeat;
}

.slick-prev {
  left: -23px;
  background-image: url("../img/icon-arrow-left.svg");
}

.slick-next {
  right: 7px;
  background-image: url("../img/icon-arrow-right.svg");
}

.zircon-design-depoimentos {
  background-color: #231d11;
}

.zircon-design-depoimentos-content {
  padding: 90px 0px;
  max-width: 1280px;
  width: 100%;
  margin: auto;
  position: relative;
}

.zircon-design-depoimentos-content:after {
  content: "";
  position: absolute;
  width: 130px;
  height: 115px;
  opacity: 0.25;
  top: 70px;
  background-image: url("../img/aspas.png");
  background-size: 100%;
  background-repeat: no-repeat;
}

.zircon-design-depoimentos-title {
  font-family: Outfit;
  font-weight: bold;
  color: #d3c398;
  font-size: 60px;
  display: block;
  text-align: center;
  margin-bottom: 50px;
  position: relative;
  z-index: 1;
}

.zircon-design-depoimentos-title:after {
  content: "";
  display: block;
  width: 160px;
  height: 4px;
  background-color: #e7ab00;
  margin: auto;
  margin-top: 20px;
}

.zircon-design-services-content {
  padding: 90px 0px;
  max-width: 1280px;
  width: 100%;
  margin: auto;
  display: block;
}

.zircon-design-depoimentos-items {

}

.zircon-design-depoimento {

}

.zircon-design-depoimento-stars {
  width: 150px;
  height: 30px;
  z-index: 1;
  position: relative;
  background-image: url("../img/icon-star.svg");
  background-size: auto 100%;
}

.zircon-design-depoimento-text {
  color: #e3d7b5;
  line-height: 30px;
  margin-top: 30px;
  font-size: 22px;
}

.zircon-design-depoimento-author {
  color: #d1b076;
  font-weight: bold;
  font-family: Outfit;
  margin-top: 20px;
  font-size: 18px;
}

.zircon-design-depoimento-cargo {
  color: #e3d7b5;
  margin-top: 5px;
  font-size: 14px;
}

.zircon-design-contato {
  background-color: #edc34f;
  background-color: #d3c398;
  /* background-image: url("../img/contact-background.jpeg"); */
  /* background-size: 100%; */
}

.zircon-design-contato-content {
  width: 100%;
  max-width: 1200px;
  display: block;
  margin: auto;
  padding: 90px 0px;
}

.zircon-design-contato-mini-title {
  display: block;
  padding-left: 40px;
  color: #2f2816;
  font-family: 'Outfit';
  font-weight: bold;
  margin-bottom: 20px;
  background-image: url("../img/icon-sub-heading-grey.svg");
  background-repeat: no-repeat;
  background-position: 0px;
}

.zircon-design-contato-title {
  font-family: Outfit;
  font-weight: bold;
  color: #2f2816;
  font-size: 50px;
  display: block;
  line-height: 60px;
}

.zircon-design-contato-title b {
  color: #675017;
}

.zircon-design-contato-header {
  display: flex;
  justify-content: space-between;
  /* align-items: center; */
}

.zircon-design-contato-subtitle {
  font-weight: 500;
  font-size: 22px;
  color: #2f2816;
  line-height: 30px;
  margin-top: 20px;
  width: 480px;
}

.zircon-design-contato-email {
  color: #2f2816;
  font-size: 14px;
  display: block;
  margin-top: 20px;
  font-weight: bold;
}

.zircon-design-contato-btn {
  height: 58px;
  text-decoration: none;
  background-color: #2f2816;
  border: 0;
  text-transform: uppercase;
  padding: 20px 65px 20px 30px;
  margin-top: 40px;
  color: #e7ab03;
  font-family: Outfit;
  font-weight: bold;
  font-size: 16px;
  position: relative;
  cursor: pointer;
  border-radius: 100px;
  background-image: url("../img/icon-whatsapp-float.svg");
  background-size: 26px;
  background-position: calc(100% - 20px);
  background-repeat: no-repeat;

  background-color: #ac0000;
  color: #FFF;
}

.zircon-design-contato-social {
  display: flex;
  margin-top: 50px;
  border-radius: 100px;
}

.zircon-design-contato-social-icon {
  width: 50px;
  height: 50px;
  border: 1px solid #2f2816;
  border-radius: 100px;
  margin-right: 10px;
  cursor: pointer;
  background-size: 20px;
  background-position: center;
  background-repeat: no-repeat;
}

.zircon-design-contato-social-icon.whatsapp {
  background-image: url("../img/icon-whatsapp-white.svg");
}

.zircon-design-contato-social-icon.instagram {
  background-image: url("../img/icon-instagram-white.svg");
}

.zircon-design-contato-social-icon.linkedin {
  background-image: url("../img/icon-linkedin-white.svg");
}

.zircon-design-contato-social-icon.location {
  background-image: url("../img/icon-location.svg");
  background-size: 26px;
}

.zircon-design-footer {
  background-color: #c9b88d;
  background-color: #c9b88d;
}

.zircon-design-footer-content {
  width: 100%;
  max-width: 1200px;
  display: flex;
  margin: auto;
  padding: 30px 0px;
  justify-content: space-between;
  align-items: center;
}

.zircon-design-footer-copyright {
  color: #2f2816;
  font-size: 13px;
}

.zircon-design-footer-logo {
  width: 105px;
  height: 30px;
  font-size: 0px;
  cursor: pointer;
  background-image: url("../img/powered-logo.png");
  background-size: 110px;
  background-repeat: no-repeat;
  background-position: center;
}

.zircon-design-float-whatsapp {
  position: fixed;
  z-index: 9999;
  width: 50px;
  height: 50px;
  bottom: 20px;
  right: 20px;
  cursor: pointer;
  box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.3);
  background-color: #32c252;
  border-radius: 100px;
  background-image: url("../img/icon-whatsapp-float.svg");
  background-size: 24px;
  background-position: center;
  background-repeat: no-repeat;
}

@media screen and (max-width: 768px) {
  .zircon-design-header {
    height: 70px;
  }

  .zircon-design-header-logo {
    width: 90px;
  }
  
  .zircon-design-header-content {
    padding: 0px 25px;
  }

  .zircon-design-header-menu-btn {
    display: block;
  }

  .zircon-design-header-menu {
    position: fixed;
    z-index: 9999;
    gap: 0;
    flex-direction: column;
    top: 70px;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2f2816;
    border-top: 1px solid #2c2513;
    display: none;
  }

  .zircon-design-header-menu-item {
    padding: 20px 25px;
    border-bottom: 1px solid #2c2513;
  }

  .zircon-design-banner {
    background-position: 0px;
  }

  .zircon-design-banner-content {
    padding: 0px 25px;
  }

  .zircon-design-banner-item-title {
    width: 100%;
    font-size: 33px;
    line-height: 47px;
    text-align: center;
  }

  .zircon-design-banner-item-subtitle {
    margin-left: unset;
    text-align: center;
    line-height: 22px;
  }

  .zircon-design-banner-cta {
    font-size: 12px;
    height: 58px;
    width: 100%;
  }

  .zircon-design-services-content {
    padding: 50px 0px;
  }

  .zircon-design-services-title {
    font-size: 43px;
  }

  .zircon-design-services-title:after {
    width: 120px;
  }

  .zircon-design-services-items {
    padding: 0px 25px;
    flex-direction: column;
  }

  .zircon-design-services-item {
    width: 100%;
  }

  .zircon-design-services-item-info {
    padding: 35px 10px;
  }

  .zircon-design-services-item-info-title {
    font-size: 18px;
  }

  .zircon-design-services-item-info-description {
    margin-top: 20px;
    font-size: 14px;
    line-height: 23px;
    min-height: unset;
  }

  .zircon-design-quem-somos-title {
    font-size: 43px;
    text-align: center;
  }

  .zircon-design-quem-somos-title:after {
    width: 120px;
    margin: auto;
  }

  .zircon-design-quem-somos-content {
    padding: 50px 25px;
  }

  .zircon-design-quem-somos-text {
    font-size: 16px;
    line-height: 34px;
    text-align: center;
  }

  .zircon-design-quem-somos-gallery {
    width: 100%;
  }

  .zircon-design-quem-somos-gallery-item {
    margin-right: 0px;
  }

  .slick-arrow {
    display: block;
    width: 34px;
    height: 34px;
    margin-top: -17px;
    background-size: 20px;
  }

  .slick-prev {
    left: -17px;
  }

  .slick-next {
    right: -17px;
  }

  .zircon-design-clientes-content {
    padding: 50px 0px;
  }

  .zircon-design-depoimentos-content {
    padding: 50px 25px;
  }

  .zircon-design-depoimentos-title {
    font-size: 43px;
    text-align: center;
  }

  .zircon-design-depoimento-stars {
    margin: auto;
  }

  .zircon-design-depoimento-text {
    font-size: 17px;
    text-align: center;
  }

  .zircon-design-depoimento-author {
    text-align: center;
  }

  .zircon-design-depoimento-cargo {
    text-align: center;
  }

  .zircon-design-contato {
    background-size: cover;
    background-position: center;
  }

  .zircon-design-contato-content {
    padding: 60px 30px;
  }

  .zircon-design-contato-title {
    /* font-size: 30px; */
    /* text-align: center; */
  }

  .zircon-design-contato-title:after {
    margin: 20px auto;
  }

  .zircon-design-contato-header {
    display: block;
  }

  .zircon-design-contato-subtitle {
    width: 100%;
    font-size: 18px;
    /* text-align: center; */
    margin-top: 40px;
  }

  .zircon-design-contato-social {
    justify-content: center;
  }

  .zircon-design-contato-btn {
    display: block;
    text-align: center;
    margin-top: 50px;
  }

  .zircon-design-footer-content {
    padding: 30px 25px;
  }

  .zircon-design-footer-copyright {
    font-size: 10px;
    width: 180px;
    line-height: 14px;
  }
}


