html {
  font-size: 62, 5%;
}

body {
  margin: 0%;
  padding: 0%;
  text-align: center;
  background-color: #d2d2d288;



}

.home {
  text-transform: uppercase;
  margin-top: 2.5rem;
  font-size: 1.8rem;
  color: #ffffff;
  display: inline-block;
  background-color: #120e4ced;
  padding: 1rem 3rem;
  border-radius: 2rem;

}


/* catalogo start */
.product-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  padding: 20px;


}

.product-card {
  background-color: white;
  border: 1px solid #ddd;
  border-radius: 8px;
  overflow: hidden;
  width: 220px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: transform 0.5s ease, opacity 0.3s ease;
}

.product-card:hover {
  transform: scale(1.1);

}

.product-card img {
  width: 100%;
  height: auto;

}


.product-card h3 {
  font-size: 18px;
  margin: 10px 0;
  padding: 0 10px;
}

.product-card .code {
  color: #555;
  font-size: 14px;
  margin-bottom: 10px;
}

.product-card .rating {
  font-size: 14px;
  margin-bottom: 10px;
}

.product-card .price {
  font-size: 16px;
  color: #0c6502;
  margin-bottom: 20px;
  text-transform: uppercase;

}

/* catalogo end */

/* titulo com imagem start */
.header {
  position: relative;
  width: 100%;
  height: 250px;
  /* Ajuste a altura conforme necessário */
  background-image: url('./imagens/FAM/titulo.jpg');
  /* Substitua pelo caminho da sua imagem */
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.34);
  letter-spacing: 4px;

}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  /* Ajuste a opacidade conforme necessário */
}

.header h1 {
  position: relative;
  z-index: 1;
  font-size: 3em;
  text-align: center;
  margin: 0;
  text-transform: uppercase;
}

/* titulo com imagem end */

/* subtitulos start */
.subtitulos {
  text-align: center;
  /* Alinhamento centralizado */
  margin-top: 3rem;



}

.subtitulos h1 {
  text-transform: uppercase;
  color: #c1a402;
  /* Cor do texto branca */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
  /* Sombra do texto */
  background-color: #333333c5;
  display: inline-block;
  font-size: 2.3rem;
  padding: 1rem 8rem;
  border-radius: 1rem;
  letter-spacing: 2rem;
  font-weight: bold;
}


/* subtitulos end */

.estrelas {
  color: rgb(222, 222, 0);
  font-size: 20px;
}


/* btn de ver mais start */
.cssbuttons-io-button {
  background: rgb(27, 124, 221);

  color: white;
  font-family: inherit;
  padding: 0.35em;
  padding-left: 1.2em;
  font-size: 17px;
  font-weight: 500;
  border-radius: 0.9em;
  border: none;
  letter-spacing: 0.05em;
  display: flex;
  align-items: center;
  box-shadow: inset 0 0 1.6em -0.6em #714da6;
  overflow: hidden;
  position: relative;
  height: 2.8em;
  padding-right: 3.3em;
  cursor: pointer;




}

.cssbuttons-io-button .icon {
  background: white;
  margin-left: 1em;
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 2.2em;
  width: 2.2em;
  border-radius: 0.7em;
  right: 0.3em;
  transition: all 0.3s;

}

.cssbuttons-io-button:hover .icon {
  width: calc(100% - 0.6em);

}

.cssbuttons-io-button .icon svg {
  width: 1.1em;
  transition: transform 0.3s;
  color: #000000;
}

.cssbuttons-io-button:hover .icon svg {
  transform: translateX(0.1em);
}

.cssbuttons-io-button:active .icon {
  transform: scale(0.95);

}

.cssbuttons-io-link {
  text-decoration: none;
  /* Remove o sublinhado do link */

}

.centro {
  display: inline-block;
  text-align: center;
  margin-top: 20px;
  margin-bottom: 20px;

}

/* btn de ver mais start */

/* icone whatsapp start */

.WhatsApp img {
  width: 90px;
  height: auto;
}

.WhatsApp {

  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 9999;
  transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);

}

.WhatsApp:hover {
  transform: scale(1.05);
}

a:link,
a:visited,
a:hover,
a:active {
  color: inherit !important;
  /* Mantém a cor do texto pai */
  text-decoration: none !important;
  /* Remove a sublinhado */
}



@media (max-width: 1020px) {
  .home {
    font-size: 1.1rem;
    padding: 0.5rem 2rem;

  }

  .header h1 {
    font-size: 2rem;
  }

  .header {
    padding: 0;
    height: 10rem;
  }

  .subtitulos h1 {
    font-size: 1.5rem;
  }

  .WhatsApp img {
    height: 5rem;
    width: 5rem;

  }

  .WhatsApp {
    bottom: 1rem;
    right: 1rem;
  }

  .subtitulos h1 {
    letter-spacing: 1rem;
    padding: 1rem 3rem;
  }


}