/* =====================================================
   STYLE_PRO.CSS — unificado para pronatura.html e proavon.html
   ===================================================== */

/* ===== RESET GLOBAL ===== */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: Arial, sans-serif;
  color: var(--text-color);
  background: var(--bg-color);
  padding: 2rem;
  transition: background 0.3s ease;
}

/* ===== TEMAS ===== */

/* Tema Natura */
body.natura {
  --primary: #6f1bbf;
  --secondary: #8a2be2;
  --accent: #fbc02d;
  --highlight: #e67e22;
  --bg-color: #f3f0fa;
  --text-color: #333;
  --button-hover: #4a148c;
  --link-color: #6f1bbf;
  --alert-color: #d60000;
}

/* Tema Avon */
body.avon {
  --primary: #e91e63;
  --secondary: #c2185b;
  --accent: #f8c4d4;
  --highlight: #ff80aa;
  --bg-color: #fdf3f8;
  --text-color: #333;
  --button-hover: #ff6699;
  --link-color: #e91e63;
  --alert-color: #d60000;
}

/* ===== TÍTULOS ===== */
h2 {
  text-align: center;
  color: var(--primary);
  margin-bottom: 1rem;
}

/* ===== MENU DE CATEGORIAS ===== */
.menu-categorias {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2rem;
}

.menu-categorias button {
  padding: 0.6rem 1rem;
  border: none;
  background: var(--primary);
  color: #fff;
  border-radius: 8px;
  cursor: pointer;
  font-weight: bold;
  transition: background 0.3s, transform 0.2s;
}

.menu-categorias button:hover {
  background: var(--secondary);
  transform: scale(1.05);
}

/* ===== AVISO IMPORTANTE ===== */
.aviso-importante {
  background: #fff;
  border: 1px solid var(--accent);
  border-left: 6px solid var(--primary);
  border-radius: 10px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  color: var(--primary);
  font-size: 15px;
  line-height: 1.5;
  margin: 20px auto;
  max-width: 850px;
  padding: 20px;
  text-align: left;
}

.aviso-icone {
  font-size: 2rem;
  color: var(--accent);
  margin-right: 1rem;
}

.aviso-importante .cupom,
.aviso-importante strong.alerta {
  color: var(--alert-color);
  font-weight: bold;
}

.aviso-importante strong {
  color: var(--primary);
  font-weight: bold;
}

/* ===== BOTÕES PADRÃO ===== */
.botao-padrao,
.botao-acessar,
.botao-sabia {
  display: inline-block;
  background: var(--primary);
  color: white;
  padding: 0.6rem 1.2rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s, transform 0.2s;
  border: none;
}

.botao-padrao:hover,
.botao-acessar:hover,
.botao-sabia:hover {
  background: var(--button-hover);
  transform: scale(1.05);
}

/* ===== BOTÃO WHATSAPP ===== */
.botao-whatsapp {
  display: inline-block;
  background-color: #25d366;
  color: white;
  font-weight: bold;
  text-decoration: none;
  padding: 10px 16px;
  border-radius: 8px;
  transition: background-color 0.3s;
}

.botao-whatsapp:hover {
  background-color: #1ebe5b;
}

/* ===== PAINEL E VITRINE ===== */
.painel-container {
  max-width: 1400px;
  margin: auto;
  padding: 2rem;
}

.vitrine-produtos {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: center;
}

/* ===== CARD DE PRODUTO ===== */
.produto-card {
  width: 90%;              /* ocupa 90% da largura da tela no celular */
  max-width: 380px;        /* limite para não exagerar em telas grandes */
  margin: 1rem auto;
  padding: 1rem;
  border-radius: 1.5rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  background: #fff;
  text-align: center;
  transition: transform 0.3s;

}

.produto-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
}

.produto-card img {
  width: 100%;
  max-height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 1rem;
}

.codigo-produto {
  font-style: italic;
  color: #777;
  font-size: 0.9rem;
  margin-bottom: 0.3rem;
  display: block;
}

/* ===== LINHA DE PREÇOS ===== */
.preco-linha {
  display: flex;
  justify-content: center;
  align-items: baseline;
  gap: 0.5rem;
  flex-wrap: nowrap;
}

.preco-linha span {
  font-size: 1rem;
  white-space: nowrap;
}
.preco-antigo {
  text-decoration: line-through;
  color: #999;
  font-size: 0.9rem;
}

.preco-novo {
  font-size: 1.4rem;
  font-weight: bold;
  color: var(--primary);
  white-space: nowrap;
}

/* ===== ECONOMIA, OFERTA, VALIDADE ===== */
.economia {
  margin-top: 0.5rem;
  font-size: 0.95rem;
  color: #2e7d32;
  font-weight: bold;
  background-color: #e8f5e9;
  border: 1px solid #a5d6a7;
  padding: 0.4rem 0.6rem;
  border-radius: 6px;
  display: inline-block;
}

.selo-oferta {
  display: inline-block;
  background-color: #d60000;
  color: white;
  font-size: 0.8rem;
  font-weight: bold;
  padding: 0.3rem 0.6rem;
  border-radius: 6px;
  margin-bottom: 0.5rem;
}

.validade {
  color: #d32f2f;
  font-weight: bold;
  font-size: 0.95rem;
  text-align: center;
  margin-top: 0.5rem;
  background-color: #ffebee;
  padding: 4px 8px;
  border-radius: 6px;
  display: inline-block;
}

/* ===== BOTÃO "TENHO INTERESSE" ===== */
.botao-interesse {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  background: var(--primary);
  color: #fff;
  font-weight: bold;
  text-decoration: none;
  padding: 10px 18px;
  border-radius: 8px;
  transition: background 0.3s ease, transform 0.2s ease;
  border: none;
  margin-top: 0.8rem;
  width: auto;
}

.botao-interesse i {
  font-size: 1rem;
}

.botao-interesse:hover {
  background: var(--button-hover);
  transform: scale(1.05);
}

/* ===== SEÇÃO "VOCÊ SABIA" ===== */
.voce-sabia {
  background-color: #fff0f5;
  border: 1px solid #f8bbd0;
  border-radius: 12px;
  padding: 1.5rem;
  margin: 2rem auto;
  text-align: center;
  color: var(--primary);
  max-width: 800px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.voce-sabia h2 {
  color: var(--primary);
  font-size: 1.6rem;
  margin-bottom: 0.6rem;
}

.voce-sabia p {
  font-size: 1rem;
  line-height: 1.5;
  margin-bottom: 1rem;
}

/* ===== VOLTAR AO TOPO ===== */
.voltar-topo {
  text-align: center;
  margin: 2rem 0;
}

.voltar-topo a {
  background-color: var(--primary);
  color: white;
  padding: 0.6rem 1rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  display: inline-block;
  transition: background 0.3s, transform 0.2s;
}

.voltar-topo a:hover {
  background-color: var(--button-hover);
  transform: scale(1.05);
}

/* --- MARCA D’ÁGUA NO CARD (OPÇÃO B – CENTRAL E INCLINADA) --- */
.card-imagem {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.card-imagem img {
  width: 100%;
  display: block;
}

/* MARCA D’ÁGUA RESPONSIVA */
.card-imagem .watermark {
  position: absolute;
  inset: 0; /* substitui top/left */
  display: flex;
  align-items: center;
  justify-content: center;

  transform: rotate(-25deg);
  font-size: clamp(38px, 6vw, 42px); /* RESPONSIVO */
  font-weight: bold;
  color: rgba(180, 180, 180, 0.30);

  pointer-events: none;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-align: center;

  padding: 10px; /* margem de segurança */
  box-sizing: border-box;
}


/* Cores de ícones sociais */
.social-icons a {
  font-size: 22px;
  margin: 0 8px;
  text-decoration: none;
}

/* WhatsApp */
.social-icons .fa-whatsapp {
  color: #25D366;
}

/* Comunidade / usuários */
.social-icons .fa-users {
  color: #128C7E;
}

/* Telegram */
.social-icons .fa-telegram {
  color: #0088cc;
}

/* Instagram */
.social-icons .fa-instagram {
  color: #E1306C;
}

/* Facebook */
.social-icons .fa-facebook {
  color: #1877F2;
}

/* Estrela / Fanpage */
.social-icons .fa-star {
  color: #FFC107;
}

/* Efeito hover (opcional) */
.social-icons a:hover i {
  opacity: 0.75;
}

