:root {
  --cor_primaria: #433acb;
  --cor_secundaria: #433acb;
  --cor_botao: #584dcd;
  --cor_botao_hover: #433acb;
  --cor_texto_botao: #000000;
  --cor_texto_botao_hover: #ffffff;
  --cor_botao_comprar: #3e3acb;
  --pre_cabecalho: #433acb;
  --cor_texto_pre_cabecalho: #2b2b2b;
  --cor_cabecalho: #ffffff;
  --cor_icones: #4339ca;
  --cor_icones_hover: #443acb;
  --cor_texto_icones: #000000 ;
  --cor_menu: #ffffff;
  --cor_texto_menu: #4339ca;
  --cor_newsletter: #4339ca;
  --cor_texto_newsletter: #ffffff;
  --cor_footer: #ffffff;
  --cor_texto_footer: #333333;
  --texto_global: #4238c9;
  --texto_background: #ffffff;
  --cor_tag_frete_gratis: #ffffff;
}



body {
  background-color: var(--texto_background);
  color: var(--texto_global);
}

.menu {
  background-color: var(--cor_menu);
  color: var(--cor_texto_menu);
}

.botao {
  background-color: var(--cor_botao);
  color: var(--cor_texto_botao);
}

.botao:hover {
  background-color: var(--cor_botao_hover);
  color: var(--cor_texto_botao_hover);
}
:root {
  --hauer-max: 1200px;
  --hauer-pad: 16px;
  --hauer-radius: 16px;
}
.hauer-container { max-width: var(--hauer-max); margin: 0 auto; padding: 32px var(--hauer-pad); }

/* HERO */
#hero-hauer { background: linear-gradient(180deg, #ffffff, #f7fafc); border-radius: var(--hauer-radius); overflow: hidden; }
#hero-hauer .hero-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 32px; align-items: center; }
#hero-hauer .hero-copy h1 { font-size: clamp(24px, 3vw, 40px); line-height: 1.15; margin: 0 0 12px; }
#hero-hauer .hero-sub { font-size: 1.1rem; color: #4a5568; margin: 0 0 20px; }
#hero-hauer .btn { display: inline-block; padding: 12px 18px; border-radius: 10px; text-decoration: none; font-weight: 600; border: 1px solid transparent; }
#hero-hauer .btn-primary { background: #1a73e8; color: #fff; }
#hero-hauer .btn-primary:hover { filter: brightness(0.95); }
#hero-hauer .btn-secondary { background: #edf2f7; color: #1a202c; margin-left: 8px; }
#hero-hauer .hero-bullets { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 8px 16px; margin-top: 18px; color: #2d3748; font-size: .95rem; }
#hero-hauer .hero-media img { width: 100%; height: auto; display: block; }

/* SOCIAL PROOF */
#social-hauer h2 { font-size: clamp(20px, 2.4vw, 28px); margin-bottom: 16px; }
#social-hauer .badges { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
#social-hauer .badge { background: #ffffff; border: 1px solid #e2e8f0; border-radius: 12px; padding: 12px; display: flex; align-items: center; gap: 8px; justify-content: center; text-align: center; }
#social-hauer .testimonials { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; margin: 16px 0; }
#social-hauer .t-item { background: #ffffff; border: 1px solid #e2e8f0; border-radius: 12px; padding: 16px; }
#social-hauer .logos { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; filter: grayscale(1) contrast(1.1); opacity: .9; }
#social-hauer .logos img { width: 100%; height: auto; }

/* STICKY CTA MOBILE */
#sticky-cta-hauer { position: fixed; bottom: 0; left: 0; right: 0; display: flex; gap: 8px; justify-content: space-around; padding: 10px; background: rgba(255,255,255,.98); border-top: 1px solid #e2e8f0; z-index: 9999; }
#sticky-cta-hauer .cta { flex: 1; text-align: center; padding: 12px; background: #1a73e8; color: #fff; border-radius: 10px; text-decoration: none; font-weight: 600; }
.only-mobile { display: none; }

/* MEGA MENU (opcional) */
#mega-menu-hauer { background: #0f172a; }
#mega-menu-hauer ul { max-width: var(--hauer-max); margin: 0 auto; padding: 8px var(--hauer-pad); list-style: none; display: flex; gap: 18px; overflow-x: auto; }
#mega-menu-hauer a { color: #e2e8f0; text-decoration: none; padding: 8px 10px; border-radius: 8px; }
#mega-menu-hauer a:hover { background: rgba(255,255,255,.08); }

/* CARTÕES DE PRODUTO — destaque CTA/orçamento (ajusta nomes se necessário) */
.product-item .buy { display: flex; gap: 8px; }
.product-item .buy .btn, .product-item .buy button { padding: 10px 12px; border-radius: 10px; font-weight: 600; }
.product-item .price { font-size: 1.1rem; font-weight: 700; color: #1a202c; }

/* Responsivo */
@media (max-width: 980px) {
  #hero-hauer .hero-grid { grid-template-columns: 1fr; }
  #hero-hauer .hero-bullets { grid-template-columns: 1fr; }
  #social-hauer .badges { grid-template-columns: repeat(2, 1fr); }
  #social-hauer .testimonials { grid-template-columns: 1fr; }
  #social-hauer .logos { grid-template-columns: repeat(2, 1fr); }
  .only-mobile { display: block; }
  body { padding-bottom: 70px; } /* espaço para sticky bar */