/* ===== Reset ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  background: #f1e9e9;
  color: #333;
  line-height: 1.6;
  padding: 20px;
}

/* ===== WhatsApp flutuante ===== */
.zap-flutuante {
  position: fixed;
  bottom: 50px;
  right: 20px;
  font-size: 28px;
  z-index: 1000;
  text-decoration: none;
  background: none;
  box-shadow: none;
  width: auto;
  height: auto;
  padding: 0;
}
.icone-zap-img {
  width: 60px;
  height: auto;
}
.zap-flutuante:hover {
  transform: scale(1.1);
}

/* ===== Header ===== */
header {
  background: linear-gradient(to right, #111, #333);
  padding: 30px 0;
  margin-bottom: 30px;
  color: white;
  text-align: center;
  position: relative;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

.logo-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
  margin-bottom: 15px;
}
.logo {
  width: 120px;
  border: 2px solid #ffd700;
  border-radius: 8px;
  padding: 4px;
  filter: brightness(1.2) contrast(1.2);
  box-shadow: 0 0 10px rgba(255, 215, 0, 0.6);
}
.logo-container h1 {
  font-size: 2rem;
  color: gold;
  text-shadow: 1px 1px 4px #000;
}
.slogan {
  font-size: 0.9rem;
  color: #ccc;
  margin-top: -10px;
  text-shadow: 1px 1px 2px #000;
}

/* ===== Menu de navegação ===== */
nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  padding: 0 20px;
}

/* Botão hamburguer */
.menu-toggle {
  display: none;
  font-size: 1.8rem;
  cursor: pointer;
  color: white;
}

/* Lista de links */
nav ul {
  list-style: none;
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
}

nav ul li a {
  color: white;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s;
}
nav ul li a:hover {
  color: #ffd700;
}

/* Ícones sociais */
.icones-sociais {
  display: flex;
  gap: 20px;
}
.icones-sociais a {
  color: #ffd700;
  font-size: 35px;
  transition: color 0.3s;
}
.icones-sociais a:hover {
  color: #fff;
}

/* ===== Produtos ===== */
.produtos {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}
.celular {
  background: white;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
  width: 250px;
  padding: 15px;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.celular img {
  max-width: 100%;
  border-radius: 8px;
  margin-bottom: 10px;
}
.preco {
  font-size: 1.2rem;
  font-weight: bold;
  margin: 10px 0;
  color: #0078d4;
}
.quantidade {
  font-size: 0.9rem;
  margin-bottom: 10px;
  color: #555;
}
.btn-comprar {
  background: #0078d4;
  border: none;
  color: white;
  padding: 10px 15px;
  border-radius: 5px;
  cursor: pointer;
  font-size: 1rem;
  transition: background 0.3s;
}
.btn-comprar:hover {
  background: #005a9e;
}

/* ===== Atendimento ===== */
.atendimento-humanizado {
  background-color: #f8f8f8;
  padding: 2rem;
  border-radius: 12px;
  text-align: center;
  margin: 2rem 0;
  box-shadow: 0 0 10px rgba(0,0,0,0.05);
}
.atendimento-humanizado h2 {
  font-size: 1.8rem;
  color: #333;
  margin-bottom: 1rem;
}
.atendimento-humanizado p {
  font-size: 1rem;
  color: #555;
  line-height: 1.6;
}

/* ===== Rodapé ===== */
footer {
  text-align: center;
  margin-top: 40px;
  color: #777;
}
.rodape {
  text-align: center;
  padding: 10px;
  background-color: rgba(0, 0, 0, 0.205);
  color: black;
  margin-top: 10px;
}
.rodape:hover {
  background-color: rgba(151, 149, 149, 0.2);
}
.img-rodape {
  max-width: 150px;
}
.paragrafo {
  margin: 10px 0;
}
.rede-social {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}
.container-zap,
.container-email {
  display: inline-block;
  position: relative;
}
.imagem-zap,
.imagem-email {
  width: 40px;
  height: auto;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.imagem-email:hover {
  transform: translateY(-10px);
}
.container-zap:hover .imagem-zap {
  transform: translateY(-10px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.0);
}
.rodape-link {
  color: white;
  text-decoration: none;
  background-color: #333;
  display: block;
  font-size: 10px;
  margin-top: 10px;
}
.rodape-link:hover {
  text-decoration: underline;
}
.logoRodape {
  width: 100px;
  height: auto;
  border-radius: 5px;
}

/* ===== Responsividade ===== */
@media screen and (max-width: 768px) {
  nav ul {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    right: 0;
    background: #222;
    padding: 10px;
    border-radius: 0 0 8px 8px;
    z-index: 999;
  }

  nav ul.show {
    display: flex;
  }

  .menu-toggle {
    display: block;
  }

  .logo-container h1 {
    font-size: 1.4rem;
  }

  .slogan {
    font-size: 0.8rem;
  }
}

@media screen and (max-width: 600px) {
  .produtos {
    flex-direction: column;
    align-items: center;
  }

  .celular {
    width: 90%;
  }

  .imagem-zap,
  .imagem-email {
    width: 30px;
  }
}
@media (max-width: 500px) {
  .produtos {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
  }

  .celular {
    width: 100%;
    padding: 8px;           /* reduzir padding */
    box-sizing: border-box; /* garantir que padding não aumente a largura */
  }

  .celular img {
    width: 100%;
    height: auto;
    max-height: 120px;      /* limitar altura da imagem para não ficar muito grande */
    object-fit: contain;
  }

  .celular h2 {
    font-size: 14px;        /* fonte menor */
    margin: 6px 0 4px 0;
  }

  .celular p {
    font-size: 12px;        /* fonte menor */
    margin: 0 0 6px 0;
  }

  .celular button {
    padding: 6px 10px;      /* botão menor */
    font-size: 13px;
  }
}
/*modal destacando quando passa o mouse*/

.celular {
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 10px;
  padding: 15px;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.celular:hover {
  transform: scale(1.02);
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
  z-index: 10;
}


.maozinha {
  font-size: 24px;      /* aumenta o tamanho do ícone */
  color: #c2dff5;       /* cor azul (pode mudar) */
  vertical-align: middle; /* alinha na linha do texto */
  margin-left: 6px;     /* espaço entre texto e ícone */
  cursor: pointer;      /* cursor de mão ao passar em cima */
}
