

/* Container padrão */
.container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 0.5rem;
}

/* Header */
header {
  background: var(--preto);
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
}

nav .logo img {
  height: 70px;
}

.ul-ativo {
  display: flex;
  gap: 2.6rem;
}

.ul-ativo li a {
  color: #fff;
  font-size: 1rem;
  transition: color 0.3s;
  position: relative;
  left: -100px;
}

.ul-ativo li a:hover {
  color: var(--azul);
}

.menu {
  height: 50px;
  width: 50px;
  position: relative;
  right: 200px;
  cursor: pointer;
}


/* Produtos */
.produtos {
  padding: 2rem;
  text-align: center;
}

.produtos h2 {
  margin-bottom: 1.5rem;
  color: #0078ff;
  font-size: 1.8rem;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2rem;
}

.produto {
  background: white;
  padding: 1.5rem;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  transition: transform 0.2s, box-shadow 0.2s;
}

.produto:hover {
  transform: translateY(-6px);
  box-shadow: 0 6px 16px rgba(0,0,0,0.15);
}

.produto img {
  max-width: 100%;
  border-radius: 10px;
}

.produto h3 {
  margin: 0.8rem 0;
  font-size: 1.2rem;
  color: #333;
}

.preco {
  font-size: 1.3rem;
  color: #e91e63;
  font-weight: bold;
  margin-bottom: 1rem;
}

button {
  background: #0078ff;
  color: white;
  border: none;
  padding: 0.8rem 1.4rem;
  border-radius: 8px;
  cursor: pointer;
  font-weight: bold;
  transition: background 0.3s, transform 0.2s;
}

button:hover {
  background: #005fcc;
  transform: scale(1.05);
}

/* Carrinho */
.carrinho {
  background: #fff;
  padding: 2rem;
  margin: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.carrinho h2 {
  margin-bottom: 1rem;
  color: #0078ff;
}

#listaCarrinho {
  list-style: none;
  margin-bottom: 1rem;
}

#listaCarrinho li {
  padding: 0.6rem;
  border-bottom: 1px solid #eee;
  display: flex;
  justify-content: space-between;
}

.finalizar {
  background: #e91e63;
}

.finalizar:hover {
  background: #c2185b;
}

/* Rodapé */
footer .container {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 70px; /* Espaço entre colunas */
  padding: 50px 30px;
  background-color: var(--preto);
  flex-wrap: wrap; /* Responsivo para telas menores */
  text-align: center;
}

/* Estilo das listas */
footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

/* Títulos */
footer h3 {
  margin-bottom: 15px;
  font-size: 20px;
  color: #fff;
}

/* Redes sociais centralizadas */
.redes-sociais {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 10px;
}

/* Ícones das redes sociais */
.redes-sociais img {
  width: 40px;
  height: 40px;
  transition: transform 0.3s ease, filter 0.3s ease;
  cursor: pointer;
}

/* Hover com cor específica */
.facebook:hover {
  filter: drop-shadow(0 0 6px #3b5998);
  transform: scale(1.1);
}

.twitter:hover {
  filter: drop-shadow(0 0 6px #1da1f2);
  transform: scale(1.1);
}

.instagram:hover {
  filter: drop-shadow(0 0 6px #e1306c);
  transform: scale(1.1);
}

.linkedin:hover {
  filter: drop-shadow(0 0 6px #0077b5);
  transform: scale(1.1);
}

/* Links */
footer ul li a {
  text-decoration: none;
  color: #fff;
  transition: color 0.3s ease;
}

footer ul li a:hover {
  color: #2e0c93;
}

/* Contatos com ícone */
.contatos li {
  font-size: 16px;
  margin: 8px 0;
}

.phone-icon {
  margin-right: 8px;
  color:  #333;;
  font-size: 18px;
}
.email-icon {
  margin-right: 8px;
  color: #333;
  font-size: 18px;
}

/* Rodapé inferior */
.footer-bottom {
  text-align: center;
  margin-top: 30px;
  font-size: 0.9rem;
  color: #fff;
}
