:root {
  --primaria: #f67dd2;
  --secundaria: #2d3436;
  --fundo: #f885d5a5;
}

body .produtos {
  font-family: "Gill Sans", "Gill Sans MT", Calibri, "Trebuchet MS", sans-serif;
  background-color: #f67dd233;
  color: var(--secundaria);
  border-bottom: 4px solid var(--primaria);
}

/* Header */
.produtos {
  display: block;
  background-image: url(/image/Fundo_Images/Fundo_ImgID1.png);
  background-repeat: no-repeat;
  background-size: cover;
  margin-top: -10px;
  padding: 1px;
  text-align: center;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.produtos #menu-desktop {
  display: flex;
  justify-content: end;
  margin-top: -45px;
  padding: 10px 60px;
  margin-bottom: 30px;
  margin-right: 220px;
}

.produtos #menu-desktop a {
  color: #fff;
  background-color: #f67dd2;
  text-decoration: none;
  padding: 10px 40px;
  border-radius: 15px;
  box-shadow: 0 1px 5px #000;
}

.produtos h1 {
  max-width: 100%;
  padding-left: 30px;
  margin-top: 25px;
  width: 70%;
}

.produtos p {
  padding-left: -140px;
  width: 75%;
  margin-top: -45px;
}

.container {
  max-width: 1200px;
  margin: 25px auto;
  padding: 0 0px;
}

/* Botão Hamburguer Design */
.btn-abrir-menu i {
  color: #f67dd2;
  font-size: 3rem;
  cursor: pointer;
  display: none;
}

/* Menu Mobile Design */
.menu-mobile {
  background-color: #f4c3e58a;
  height: 100vh;
  position: fixed;
  top: 0;
  right: 0;
  z-index: 99999;
  width: 0%;
  overflow: hidden;
  transition: 0.5s;
}

.menu-mobile.abrir-menu {
  width: 70%;
}

.menu-mobile .btn-fechar i {
  max-width: 100%;
  width: 80%;
  color: #f67dd2;
  font-size: 3rem;
  padding: 20px;
  margin-left: 180px;
  cursor: pointer;
}

.menu-mobile nav ul {
  list-style: none;
  margin-top: 40px;
}

.menu-mobile nav ul li a {
  color: #000;
  font-size: 1.4rem;
  text-decoration: none;
  padding: 10px 5%;
  display: block;
  border-bottom: 3px solid #f67dd2;
}

.overlay-menu {
  background-color: #f67dd2dd;
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 88888;
  display: none;
}

/* Grade de Produtos */
.grid-produtos {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 25px;
}

/* Card de Serviço Gráfico */
.card-grafica {
  background: #fff;
  border-radius: 15px;
  overflow: hidden;
  transition: 0.3s;
  display: flex;
  flex-direction: column;
  border: 1px solid #ddd;
}

.card-grafica:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.banner-servico {
  height: 180px;
  background: #dfe6e9;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
}

.banner-servico img {
  width: 300px;
  height: 180px;
}

.conteudo {
  padding: 20px;
  flex-grow: 1;
}

.categoria {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--primaria);
  font-weight: bold;
}

h2 {
  margin: 10px 0;
  font-size: 1.3rem;
}

.detalhes {
  font-size: 0.9rem;
  color: #82969d;
  margin-bottom: 15px;
  list-style: none;
  padding: 0;
}

.detalhes li::before {
  content: "✓ ";
  color: #f67dd2;
}

.preco-bloco {
  border-top: 3px solid #d7d1d1;
  padding-top: 10px;
  display: block;
  margin-bottom: 10px;
  justify-content: space-between;
  align-items: center;
}

.preco-bloco h3 {
  font-size: 0.9em;
  font-weight: 200;
  margin-top: 1px;
  margin-bottom: 1px;
}

.valor {
  display: block;
  font-size: 1.4rem;
  font-weight: 800;
  margin-bottom: 10px;
  color: #2d3436;
}

.btn-orcamento {
  background: #f67dd2;
  color: white;
  padding: 10px 55px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 0.9rem;
  transition: 0.3s;
}

.btn-orcamento:hover {
  background: #f4eded;
  color: #f67dd2;
}

/* Banner de Aviso */
.aviso {
  background: #ffc6ee;
  color: #000;
  padding: 10px;
  text-align: center;
  margin-bottom: 20px;
  border-radius: 8px;
  font-size: 0.95rem;
}

footer {
  position: absolute;
  background-color: #ffc6ee;
  width: 100%;
  text-align: center;
  padding: 10px 0px;
  border-top: 4px solid #f67dd2;
}

footer .top-footer button {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 3px solid  #2d3436;
  background-color: transparent;
  color: #2d3436;
  font-size: 1.4rem;
  cursor: pointer;
  margin: 0px;
  transition: 0,5s;
}


footer .top-footer button:hover {
  background-color: transparent;
  color: #fff;
  border: 3px solid  #fff
}

footer .bottom-footer h4 {
  font-size: 0.7rem;
  color: #2d3436;
  margin-top: 8px;
  margin-bottom: 0px;
}


