
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@500;600;700&display=swap');

.pedido-qualita {
  padding: 60px 20px;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  background: #f7f7f7;
}

.pedido-hero {
  text-align: center;
  margin-bottom: 40px;
}

.pedido-hero h1 {
  font-size: 32px;
  font-weight: 700;
}

.pedido-hero p {
  font-size: 16px;
  color: #666;
  margin-top: 10px;
}

/* Área da imagem única */
.pedido-opcoes-imagem {
  max-width: 1400px;
  margin: 0 auto;
}

.pedido-imagem-wrapper {
  position: relative;
  width: 100%;
  text-align: center;
}

/* IMAGEM REDUZIDA 50% */
.pedido-imagem-wrapper img {
  width: 50%;
  height: auto;
  display: block;
  margin: 0 auto;
  border-radius: 14px;
  pointer-events: none; /* permite clicar nas áreas */
}

/* Áreas clicáveis */
.pedido-imagem-wrapper .area {
  position: absolute;
  top: 0;
  height: 100%;
  width: 25%;
  z-index: 10;
  cursor: pointer;
}

/* divisão horizontal (4 partes) */
.area-site     { left: 25%; }
.area-linha    { left: 37.5%; }
.area-whatsapp { left: 50%; }
.area-ifood    { left: 62.5%; }

/* hover visual */
.pedido-imagem-wrapper .area:hover {
  background: rgba(255,255,255,0.12);
}

/* mobile: imagem maior */
@media (max-width: 768px) {
  .pedido-imagem-wrapper img {
    width: 90%;
  }
}
