/* === CSS exclusivo para páginas de produto/catalogo === */

.catalogo-container {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  padding: 40px;
  justify-content: center;
  align-items: flex-start;
}

.catalogo-imagem {
  flex: 1;
  max-width: 500px;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  background-color: #f9f9f9;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: background-color 0.3s ease;
}

.catalogo-imagem img {
  width: 100%;
  border-radius: 8px;
}

.catalogo-miniaturas {
  display: flex;
  gap: 10px;
  margin-top: 15px;
}

.catalogo-miniaturas img {
  width: 70px;
  border-radius: 6px;
  cursor: pointer;
  border: 2px solid transparent;
  transition: 0.3s;
}

.catalogo-miniaturas img:hover {
  border-color: #007BFF;
}

.catalogo-info {
  flex: 1;
  max-width: 400px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.catalogo-info h2 {
  font-size: 28px;
  color: #1a1a1a;
}

.catalogo-subtitulo {
  font-weight: bold;
  margin-top: 15px;
}

.catalogo-cores {
  display: flex;
  gap: 12px;
  margin: 10px 0;
}

.catalogo-cores .cor {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 2px solid #ccc;
  cursor: pointer;
  transition: 0.2s;
}

.catalogo-cores .cor:hover {
  transform: scale(1.1);
  border-color: #333;
}

.catalogo-tamanhos span {
  background: #eaeaea;
  padding: 6px 12px;
  border-radius: 4px;
  margin-right: 10px;
}

.catalogo-botao {
  background: #25D366;
  color: white;
  text-decoration: none;
  padding: 12px 20px;
  border-radius: 6px;
  text-align: center;
  font-weight: bold;
  margin-top: 20px;
  transition: background 0.3s ease;
}

.catalogo-botao:hover {
  background: #1ebd5c;
}

/* Responsivo */
@media (max-width: 768px) {
  .catalogo-container {
    flex-direction: column;
    align-items: center;
    padding: 20px;
  }

  .catalogo-imagem,
  .catalogo-info {
    max-width: 100%;
  }

  .catalogo-imagem img {
    max-width: 100%;
  }
}
.catalogo-produtos {
  padding: 60px 20px;
  background-color: #f9f9f9;
}

.container-catalogo {
  max-width: 1200px;
  margin: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.titulo-catalogo {
  font-size: 2.5rem;
  color: #1d3c50;
  margin-bottom: 40px;
}

.item-produto {
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  overflow: hidden;
  margin-bottom: 30px;
  transition: transform 0.3s ease;
  width: 100%;
  max-width: 700px;
}

.item-produto:hover {
  transform: scale(1.02);
}

.link-produto {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: inherit;
}

.link-produto img {
  width: 250px;
  height: auto;
  object-fit: contain;
  padding: 20px;
  background-color: #f0f0f0;
}

.info-produto {
  padding: 20px;
  flex: 1;
}

.info-produto h3 {
  font-size: 1.8rem;
  margin-bottom: 10px;
  color: #264e6a;
}

.info-produto p {
  font-size: 1.1rem;
  margin-bottom: 20px;
}

.botao-ver {
  background: #1d3c50;
  color: white;
  padding: 10px 20px;
  border-radius: 25px;
  font-weight: bold;
  font-size: 0.95rem;
  display: inline-block;
}

@media (max-width: 768px) {
  .link-produto {
    flex-direction: column;
    text-align: center;
  }

  .link-produto img {
    width: 100%;
    max-width: 300px;
  }

  .info-produto {
    padding: 20px 10px;
  }
}
.topo {
  background: #fff;
  padding: 15px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0;
  z-index: 10;
  margin-bottom: 40px;
  border-bottom: 1px solid #eee;
}
.container-topo {
  display: flex;
  align-items: center;
  gap: 40px;
}
.logo {
  height: 100px;
}

.menu {
  list-style: none;
  display: flex;
  gap: 30px;
}

.menu li a {
  text-decoration: none;
  font-family: 'Segoe UI', sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: #264e6a;
  display: flex;
  align-items: center;
  gap: 6px;
}

.menu li i {
  color: #7ac9e2;
  font-size: 18px;
}
@media (max-width: 768px) {
  .menu-produto {
    flex-direction: column;
    align-items: center;
    gap: 15px;
    margin: 20px 0;
  }

  .produtos-secao {
    padding: 40px 10px;
  }

  .container-produto {
    flex-direction: column;
    align-items: center;
  }

  .titulo-produto {
    font-size: 2rem;
  }

  .imagem-produto img {
    width: 100%;
    height: auto;
    max-width: 100%;
  }

  .footer {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }

  .footer-col {
    width: 100%;
    text-align: center;
  }

  .footer-col.logo img {
    margin: auto;
  }

  .footer-col.social a {
    font-size: 24px;
    margin: 0 10px;
  }
}
