/* Estilos Gerais */
@import url("https://fonts.googleapis.com/css2?family=Archivo+Black&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@300&display=swap");

body {
  font-family: "Roboto", sans-serif;
}

h1 {
  font-family: "Archivo Black", sans-serif;
  color: #fff;
  text-transform: uppercase;
  font-size: 31px;
  line-height: 54px;
}

h2 {
  font-family: "Roboto", sans-serif;
  color: #1da1f2;
  font-weight: bold;
  text-transform: uppercase;
  font-size: 21px;
  line-height: 30px;
}
h3 {
  color: #061f2f;
  font-weight: bold;
  text-transform: uppercase;
  font-size: 16px;
  line-height: 24px;
}
h4 {
  color: #100a00;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 200px;
}
h5 {
  color: #222222;
  font-size: 14px;
  text-transform: capitalize;
  font-weight: bold;
}
p {
  font-family: "Roboto", sans-serif;
  color: #373d41;
  letter-spacing: 1px;
  font-size: 16px;
  line-height: 23px;
  font-weight: normal;
}

.btn {
  color: #1da1f2;
  font-family: Helvetica, sans-serif;
  font-size: 16px;
  text-transform: uppercase;
  font-weight: bold;
  letter-spacing: 2px;
  line-height: 24px;
  background-color: #fff;
  padding: 10px 20px 10px 20px;
  border: none;
  margin-top: 22px;
}

.btn:hover {
  color: #1da1f2;
  font-family: Helvetica, sans-serif;
  font-size: 16px;
  text-transform: uppercase;
  font-weight: bold;
  letter-spacing: 2px;
  line-height: 24px;
  background-color: #ffb52c;
  padding: 10px 20px 10px 20px;
}

.container {
  width: 84%;
  height: auto;
  margin: 0 auto;
}

/* JAVASCRIPT */

/* ANIMAÇÃO DO TEXTO */
.js [data-anime] {
  opacity: 0;
  transform: translate3d(0, -20px, 0);
}
.js .fadeInDown {
  transform: translate3d(0, -20px, 0);
}
.js .fadeInUp {
  transform: translate3d(0, 20px, 0);
}
.js .fadeInUp-btn {
  transform: translate3d(0, 80px, 0);
}
.js .fadeInRight {
  transform: translate3d(20px, 0, 0);
}
.js .fadeInLeft {
  transform: translate3d(-20px, 0, 0);
}
.js .anime {
  opacity: 1;
  transform: none;
  transition: opacity 800ms, transform 800ms;
}

/* TO TOP */

#button {
  outline: none;
  border: 0;
  background-color: #18a355;
  width: 50px;
  height: 50px;
  padding: 8px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 1000;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: background-color 0.3s, opacity 0.5s, visibility 0.5s;
}
#button::after {
  content: "\f077";
  font-family: FontAwesome;
  font-weight: normal;
  font-style: normal;
  font-size: 2em;
  line-height: 50px;
  color: #fff;
}
#button:hover {
  cursor: pointer;
  background-color: #11713b;
}
#button:active {
  background-color: #0b4c27;
}
#button.show {
  opacity: 1;
  visibility: visible;
}

/* Header */

.header {
  position: fixed;
  top: 0;
  width: 100%;
  left: 0;
  right: 0;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14),
    0 3px 1px -2px rgba(0, 0, 0, 0.12), 0 1px 5px 0 rgba(0, 0, 0, 0.2);
  background: #1da1f2;
  height: 50px;
  z-index: 1000;
}

.menu {
  display: grid;
  height: 50px;
  column-gap: 20px;
  grid-template-columns: auto auto;
  padding: 30px;
}

.logo {
  width: 140px;
  height: auto;
  margin-top: -16px;
}

.logo img {
  width: 100%;
  height: auto;
}

.links_menu {
  margin-top: -28px;
  text-align: right;
}

.links_menu ul li {
  display: inline-block;
  margin-left: 14px;
  margin-top: 16px;
}

.links_menu ul li a {
  color: #fff;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 12px;
  line-height: 18px;
}

.links_menu ul li a:hover {
  color: #f7f7f7;
  transition: 250ms;
}

/* MIDIA SCREEN 768px */

@media only screen and (min-width: 808px) and (max-width: 999px) {
  .logo {
    width: 120px;
    height: auto;
    margin-top: -14px;
  }

  .links_menu {
    margin-top: -30px;
    text-align: right;
  }

  .links_menu ul li {
    margin-left: 8px;
  }

  .links_menu ul li a {
    font-size: 10px;
  }
}

/* MIDIA SCREEN SMARTPHONES */
@media only screen and (max-width: 807px) {
  .header {
    position: absolute;
    height: 126px;
  }

  .menu {
    display: grid;
    height: 50px;
    column-gap: 20px;
    grid-template-columns: auto;
    padding: 30px;
  }

  .logo {
    width: 190px;
    margin: 0 auto;
  }

  .logo img {
    width: 100%;
    height: auto;
  }

  .links_menu {
    margin-top: 4px;
    text-align: center;
  }

  .links_menu ul li {
    margin-left: 8px;
    margin-top: 6px;
  }

  .links_menu ul li a {
    font-size: 10px;
  }
}

/* Index - Início */

.home {
  display: grid;
  grid-template-columns: auto;
  background-image: url(/img/bg/bg.png);
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  width: 100%;
  height: 312px;
}

.title h1 {
  color: #fff;
  text-align: center;
  margin-top: 140px;
}

@media only screen and (min-width: 808px) and (max-width: 999px) {
}

/* MIDIA SCREEN SMARTPHONES */
@media only screen and (max-width: 807px) {
  .home {
    background-image: url(/img/bg/bg-mobile.png);
    height: 520px;
  }
  .title h1 {
    color: #fff;
    font-size: 28px;
    line-height: 42px;
    text-align: center;
    margin-top: 280px;
  }
}

/** SOBRE **/
.bloco-sobre {
  display: grid;
  column-gap: 10px;
  grid-template-columns: 28% 28% 40%;
}

.bloco-sobre img {
  width: 100%;
  height: auto;
  margin-top: -40px;
  -webkit-box-shadow: -1px 1px 2px 1px rgba(0, 0, 0, 0.3);
  box-shadow: -1px 1px 2px 1px rgba(0, 0, 0, 0.3);
}

.icon-image {
  text-align: right;
  margin-top: -60px;
  padding: 20px;
}

.icon-image img {
  width: 80px;
  height: auto;
  vertical-align: middle;
}

.sobre-txt {
  padding-left: 20px;
}

.sobre-txt h2 {
  color: #1da1f2;
  margin-top: 60px;
}

.sobre-txt p {
  margin-top: 30px;
}

.sobre-contato {
  margin-top: 30px;
  text-align: right;
}

.sobre-contato p {
  margin-top: 10px;
}

@media only screen and (min-width: 808px) and (max-width: 999px) {
}

/* MIDIA SCREEN SMARTPHONES */
@media only screen and (max-width: 807px) {
  /** SOBRE **/
  .bloco-sobre {
    grid-template-columns: auto;
    text-align: center;
  }

  .holder1 {
    margin-top: -30px;
  }

  .holder2 {
    margin-top: 10px;
  }

  .bloco-sobre img {
    width: 80%;
    height: auto;
    margin-top: 0px;
  }

  .icon-image {
    text-align: right;
    margin-top: -60px;
    padding-right: 60px;
  }

  .icon-image img {
    width: 60px;
    height: auto;
    vertical-align: middle;
    margin-top: -20px;
  }

  .sobre-txt {
    padding-left: 0px;
  }

  .sobre-txt p {
    text-align: left;
  }

  .sobre-contato p {
    text-align: right;
    font-size: 14px;
  }
}

/** SOLUCOES **/
.solucoes {
  margin-top: 60px;
}

.bloco-solucoes {
  display: grid;
  column-gap: 10px;
  grid-template-columns: 30% 70%;
}

.titulo-solucoes img {
  width: 136%;
  height: auto;
  margin-left: -43%;
  -webkit-box-shadow: -1px 1px 2px 1px rgba(0, 0, 0, 0.3);
  box-shadow: -1px 1px 2px 1px rgba(0, 0, 0, 0.3);
}

.titulo-solucoes h1 {
  color: #fff;
  font-size: 28px;
  font-weight: bold;
  margin-top: -350px;
  text-align: center;
  margin-left: -30%;
}

.logos-fornecedores-solucoes {
  text-align: center;
}

.logos-fornecedores-solucoes img {
  width: 60px;
  height: auto;
  vertical-align: middle;
  padding: 10px;
}

.hoteis,
.banheiros,
.cozinha {
  display: grid;
  grid-template-columns: 10% 90%;
  margin-top: 30px;
  background-color: rgba(179, 226, 255, 0.6);
  padding: 20px;
}

.hoteis img,
.banheiros img,
.cozinha img {
  position: relative;
  width: 80%;
  height: auto;
  top: 26%;
  transform: translateY(-50%);
}

.hoteis h3,
.banheiros h3,
.cozinha h3 {
  padding-bottom: 8px;
}

@media only screen and (min-width: 808px) and (max-width: 999px) {
}

/* MIDIA SCREEN SMARTPHONES */
@media only screen and (max-width: 807px) {
  .bloco-solucoes {
    grid-template-columns: auto;
  }
  .titulo-solucoes img {
    display: none;
  }

  .titulo-solucoes h1 {
    color: #1da1f2;
    font-size: 28px;
    font-weight: bold;
    margin-top: 0;
    text-align: center;
    margin-left: 0;
  }
  .hoteis p,
  .banheiros p,
  .cozinha p {
    margin-left: -30px;
    margin-top: 8px;
  }

  .hoteis img,
  .banheiros img,
  .cozinha img {
    top: -2px;
    margin: -5px;
    padding: 4px;
  }

  .logos-fornecedores-solucoes img {
    width: 80px;
    height: auto;
    vertical-align: middle;
    margin-top: 20px;
    padding: 10px;
  }
}


/** COMERCIAL **/
.comercial {
  background-color: #1da1f2;
  width: 100%;
  margin-top: 400px;
}

.bloco-comercial {
  display: grid;
  grid-template-columns: 50% 50%;
  column-gap: 20px;
}

.titulo-comercial {
  text-align: center;  
}

.titulo-comercial h1 {
  color: #fff;
  position: relative;
  top: 44%;
  transform: translateY(-50%);
}

.titulo-comercial p {
  color: #13203d;
}

/* Contato */
.contato {
  width: 100%;
  background: #100a00;
}
.contato-form {
  padding-right: 90px;
}
.contato-form label {
  display: block;
  color: #f7f7f7;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 16px;
  font-weight: bold;
  line-height: 25px;
  margin-bottom: 5px;
}
.contato-form input {
  display: block;
  width: 100%;
  border: 2px solid #ffa700;
  background: none;
  color: #f7f7f7;
  padding: 8px 10px;
  margin-bottom: 15px;
  outline: none;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 14px;
}
.contato-form textarea {
  display: block;
  width: 100%;
  height: 150px;
  border: 2px solid #ffa700;
  background: none;
  color: #f7f7f7;
  padding: 8px 10px;
  margin-bottom: 15px;
  outline: none;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 14px;
}
.dados-contato p {
  color: #f7f7f7;
}
.dados-contato h3 {
  color: #ffa700;
  margin-top: 80px;
}
.dados-contato h3:after {
  content: "";
  display: block;
  width: 100%;
  height: 3px;
  background: #ffa700;
}

.nao-aparece {
  visibility: hidden;
  position: fixed;
  height: 0px;
}

#form-sucesso h2 {
  color: #ffa700;
  font-size: 18px;
  line-height: 27px;
  letter-spacing: 0.1em;
  font-weight: bold;
}
#form-sucesso p {
  color: #f7f7f7;
}
#form-erro h2 {
  color: #d31b19;
  font-size: 18px;
  line-height: 27px;
  letter-spacing: 0.1em;
  font-weight: bold;
}
#form-erro p {
  color: #f7f7f7;
}
.endereco {
  margin-bottom: 60px;
}

.contato-comercial {
  width: 100%;
  margin-top: 70px;
  margin-bottom: 80px;
}

@media only screen and (min-width: 808px) and (max-width: 999px) {
}

/* MIDIA SCREEN SMARTPHONES */
@media only screen and (max-width: 807px) {
  .bloco-comercial {
    grid-template-columns: auto;
  }
  .comercial {
    margin-top: 100px;
  }
  .titulo-comercial h1 {
    font-size: 22px;
    line-height: 33px;
    margin-top: 60px;
  }
  .contato-form {
    margin-top: -30px;
  }
  .contato-comercial {
    margin-left: 30px;
  }
  .titulo-comercial {
    margin-top: -40px;
    margin-bottom: 50px;
  }
}

/** FIM **/
.bloco-fim {
  display: grid;
  column-gap: 20px;
  grid-template-columns: 50% 50%;
  margin-top: 70px;
  margin-bottom: 80px;
}

.bloco-fim img {
  width: 70%;
  height: auto;
  margin: 0 auto;
  margin-top: 65px;
}

.info-endereco h3 {
  padding-top: 20px;
}

.info-endereco p {
  padding-bottom: 2px;
}

/** RODAPE **/
.rodape {
  width: 100%;
  height: 50px;
  background-color: #1da1f2;
}

.copyright {
  display: grid;
  column-gap: 20px;
  grid-template-columns: auto;
}

.copyright p {
  text-align: center;
  color: #fff;
  font-size: 12px;
  margin-top: 16px;
}

@media only screen and (min-width: 808px) and (max-width: 999px) {
}

/* MIDIA SCREEN SMARTPHONES */
@media only screen and (max-width: 807px) {
  .bloco-fim {
    grid-template-columns: auto;
  }
  .bloco-fim img {
    width: 70%;
    height: auto;
    margin: 0 auto;
    margin-top: 0;
    margin-bottom: 40px;
  }
  .info-endereco {
    margin: 0 auto;
  }
  .rodape {
    height: 70px;
  }
}

/** ANIMAÇÃO MAQUINA ESCREVER **/
.titulo-principal:after {
  content: "|";
  margin-left: 5px;
  opacity: 1;
  animation: pisca 0.7s infinite;
}
/* Animação aplicada ao content referente a classe *.titulo-principal* resultando num efeito de cursor piscando. */

@keyframes pisca {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
}





/* ===== WhatsApp Floating Button (ao lado do scroll-up) ===== */
.whatsapp-fab{
  position: fixed;
  right: 110px;      /* distância do canto direito (scroll-up usa ~30px) */
  bottom: 30px;      /* mesma altura do scroll-up */
  z-index: 1001;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(37,211,102,.4);
  transition: transform .2s ease, box-shadow .2s ease;
  text-decoration: none;
}

/* Quando ativado pelo JS (igual ao #button.show) */
.whatsapp-fab.show{
  opacity: 1;
  visibility: visible;
}

.whatsapp-fab i{
  font-size: 28px;
  line-height: 1;
}

.whatsapp-fab:hover{
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(37,211,102,.55);
}

/* etiqueta opcional ao lado do botão (só em telas ≥ 808px) */
.whatsapp-fab .wa-label{
  position: absolute;
  right: 70px;
  white-space: nowrap;
  background: #1da1f2;
  color: #fff;
  font: bold 12px/1 Helvetica, Arial, sans-serif;
  padding: 8px 10px;
  border-radius: 6px;
  box-shadow: 0 6px 18px rgba(0,0,0,.18);
  opacity: 0;
  transform: translateX(6px);
  transition: opacity .2s ease, transform .2s ease;
  pointer-events: none;
}

.whatsapp-fab:hover .wa-label{
  opacity: 1;
  transform: translateX(0);
}

/* pulso suave para chamar atenção */
@keyframes wa-pulse{
  0% { box-shadow: 0 0 0 0 rgba(37,211,102,.45); }
  70%{ box-shadow: 0 0 0 16px rgba(37,211,102,0); }
  100%{ box-shadow: 0 0 0 0 rgba(37,211,102,0); }
}
.whatsapp-fab{ animation: wa-pulse 2.2s infinite; }

/* ===== Mobile (≤ 807px) ===== */
@media (max-width: 807px){
  .whatsapp-fab{
    right: 300px;        /* scroll-up está em right:30px + largura 50px + 10px de gap */
    bottom: 30px;       /* mesma altura do scroll-up */
    width: 65px;        /* mesmo tamanho do scroll-up */
    height: 65px;
  }
  .whatsapp-fab i{ font-size: 24px; }
  .whatsapp-fab .wa-label{ display: none; }
}


