:root{
  --roxo1:#7b3fe4;
  --roxo2:#c59cff;
  --verde:#25d366;

  --txt:#1b1b1f;
  --shadow: 0 10px 30px rgba(0,0,0,.08);
  --shadow2: 0 18px 50px rgba(0,0,0,.12);
  --radius: 18px;

  --accent: var(--verde);
  --font: "Fredoka", Arial, Helvetica, sans-serif;
  --fontTitle: "Baloo 2", "Fredoka", sans-serif;

  --fundo-baixo: #fff9ff;
  --titleSolid: #2b184a;
}

*{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }
body{
  margin:0;
  font-family:var(--font);
  color:var(--txt);
  overflow-x:hidden;
  position:relative;
  background:var(--fundo-baixo);
}

header, section, footer, .modal { position: relative; z-index: 2; }
.container{ max-width:1200px; margin:0 auto; padding:0 18px; }

/* ===== FUNDO ===== */
.bg-anim{
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 14% 18%, rgba(255,255,255,.55), transparent 40%),
    radial-gradient(circle at 84% 20%, rgba(255,255,255,.35), transparent 44%),
    radial-gradient(circle at 60% 80%, rgba(255,255,255,.25), transparent 48%),
    linear-gradient(160deg, rgba(180,135,255,.95), rgba(255,210,245,.65), rgba(190,250,255,.25));
}
.bg-anim::after{
  content:"";
  position:absolute;
  inset:0;
  background-image: radial-gradient(rgba(255,255,255,.55) 1px, transparent 1px);
  background-size: 26px 26px;
  opacity:.15;
}

/* marca d'agua */
.bg-center{
  position: fixed;
  top: 50%;
  left: 50%;
  width: min(520px, 70vw);
  transform: translate(-50%, -50%);
  opacity: .05;
  pointer-events: none;
  z-index: 1;
  filter: blur(.2px);
}

/* ===== HEADER ===== */
.header{
  background: linear-gradient(90deg, var(--roxo1), var(--roxo2));
  position: sticky;
  top: 0;
  z-index: 10;
  border-bottom: 1px solid rgba(255,255,255,.18);
}
.topo{ display:flex; align-items:center; justify-content:space-between; padding:12px 0; }
.brand{ display:flex; align-items:center; gap:10px; }
.logo{ width:46px; height:46px; object-fit:cover; border-radius:14px; box-shadow:0 6px 18px rgba(0,0,0,.18); }
.brand-name{ color:white; font-weight:800; letter-spacing:.2px; font-family: var(--fontTitle); font-size: 18px; }

.nav{ display:flex; flex-wrap: wrap; justify-content:flex-end; gap:8px; }
.nav a{
  color:white; text-decoration:none; font-weight:800;
  padding:8px 12px; border-radius:999px; transition:.25s ease;
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.18);
}
.nav a:hover{ background:rgba(255,255,255,.18); transform:translateY(-1px); }

/* ===== HERO ===== */
.hero{
  background: linear-gradient(135deg, rgba(255,255,255,.18), rgba(255,255,255,.06));
  color: white;
  padding: 62px 0 36px;
  overflow: hidden;
  border-radius: 0 0 26px 26px;
}
.hero-inner{
  display:grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 26px;
  align-items:center;
}
.title-gradient{
  font-family: var(--fontTitle);
  font-size: 48px;
  margin: 0 0 10px;
  background: linear-gradient(90deg, #ffffff, #e8fff3);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0 10px 30px rgba(0,0,0,.15);
}
.title-accent{
  color: transparent;
  background: linear-gradient(90deg, #ffffff, rgba(37,211,102,.95));
  -webkit-background-clip: text;
  background-clip: text;
}
.hero-sub{ margin:0; color: rgba(255,255,255,0.92); font-size: 18px; font-weight: 600; }

.hero-actions{ margin-top: 18px; display:flex; gap: 12px; flex-wrap: wrap; }

.hero-badges{ margin-top: 14px; display:flex; gap:10px; flex-wrap: wrap; }
.badge{
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,.18);
  border: 1px solid rgba(255,255,255,.22);
  font-weight: 700;
  color: rgba(255,255,255,.96);
}

/* Logo direita */
.hero-logo{ display:flex; justify-content:center; align-items:center; }
.hero-logo img{
  width:min(380px, 92%);
  filter: drop-shadow(0 18px 35px rgba(0,0,0,.20));
  animation: flutuar 4s ease-in-out infinite;
}
@keyframes flutuar{
  0%{ transform: translateY(0px) rotate(-.3deg); }
  50%{ transform: translateY(-8px) rotate(.3deg); }
  100%{ transform: translateY(0px) rotate(-.3deg); }
}

/* shimmer */
.shimmer{ position: relative; }
.shimmer::after{
  content:"";
  position:absolute;
  inset:-8px -16px;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,.22), transparent);
  transform: translateX(-60%);
  animation: shimmer 3.8s ease-in-out infinite;
  pointer-events:none;
  border-radius: 14px;
}
@keyframes shimmer{
  0%,100%{ transform: translateX(-60%); opacity: .0; }
  35%{ opacity: .8; }
  55%{ transform: translateX(60%); opacity: .0; }
}

/* ===== BOTÕES ===== */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding: 12px 18px;
  border-radius: 14px;
  font-weight: 800;
  text-decoration:none;
  border: 0;
  cursor:pointer;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
  font-family: var(--fontTitle);
  letter-spacing: .2px;
}
.btn:active{ transform: scale(.98); }
.btn.small{ padding: 10px 14px; border-radius: 12px; }

.btn.primary{
  background: var(--accent);
  color: white;
  box-shadow: 0 10px 25px rgba(37,211,102,.35);
}
.btn.primary:hover{ transform: translateY(-2px); box-shadow: 0 14px 30px rgba(37,211,102,.42); }

/* ghost MAIS LEGÍVEL (não mexe no verde e nem no insta) */
.btn.ghost{
  background: rgba(43, 24, 74, 0.28) !important;
  border: 1px solid rgba(43, 24, 74, 0.30) !important;
  color: rgba(255,255,255,0.95) !important;
  backdrop-filter: blur(8px);
}
.btn.ghost:hover{
  background: rgba(43, 24, 74, 0.38) !important;
  border-color: rgba(43, 24, 74, 0.42) !important;
  transform: translateY(-1px);
}

.btn.whatsapp{
  background: var(--accent);
  color: white;
  padding: 14px 22px;
  border-radius: 16px;
  box-shadow: 0 10px 25px rgba(37,211,102,.35);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.btn-icon{
  width: 18px !important;
  height: 18px !important;
  object-fit: contain;
  filter: drop-shadow(0 4px 10px rgba(0,0,0,.22));
}

.pulse{ animation: pulse 2.6s ease-in-out infinite; }
@keyframes pulse{
  0%,100%{ box-shadow: 0 10px 25px rgba(37,211,102,.30); }
  50%{ box-shadow: 0 10px 36px rgba(37,211,102,.58); }
}

section{ padding: 44px 0; }
.section-tight{ padding: 18px 0 22px; }

/* Títulos */
.section-title{
  font-family: var(--fontTitle);
  font-size: 38px;
  margin: 0 0 10px;
  color: #1c1c22; /* mais escuro */
  text-shadow: 0 10px 28px rgba(0,0,0,.06);
}
.section-accent{ color: var(--accent); }
.section-sub{ margin: 0; color: rgba(25, 25, 35, 0.82); font-weight: 700; }

/* ===== “ESTAMOS ON” DISCRETO ===== */
.banner-strip{
  display:flex;
  gap: 14px;
  align-items:center;
  padding: 12px;
  border-radius: 18px;
  background: rgba(255,255,255,.70);
  border: 1px solid rgba(181,122,255,.20);
  box-shadow: var(--shadow);
  backdrop-filter: blur(10px);
}
.banner-strip-img{
  width: 110px;
  height: 72px;
  object-fit: cover;
  border-radius: 14px;
  box-shadow: 0 10px 22px rgba(0,0,0,.10);
  border: 4px solid rgba(255,255,255,.70);
}
.banner-strip-text{
  display:flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}
.banner-strip-text strong{
  font-family: var(--fontTitle);
  font-size: 18px;
  color: #1c1c22;
}
.banner-strip-text span{
  font-weight: 700;
  color: rgba(25,25,35,0.70);
  line-height: 1.2;
}

/* ===== BANNERS “CARD” ===== */
.banner-card{
  margin-top: 14px;
  background: rgba(255,255,255,.60);
  border: 1px solid rgba(181,122,255,.18);
  border-radius: 22px;
  box-shadow: var(--shadow);
  overflow: hidden;
  backdrop-filter: blur(10px);
}
.banner-img{
  width: 100%;
  height: auto;
  display: block;
  max-height: 280px;
  object-fit: cover;
}
.banner-end{ margin-top: 18px; }

/* ===== QUEM ===== */
.quem-card{
  display:grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 18px;
  padding: 18px;
  border-radius: 24px;
  background: rgba(255,255,255,.62);
  border: 1px solid rgba(181,122,255,.20);
  box-shadow: var(--shadow2);
  backdrop-filter: blur(10px);
}
.chip-top{
  display:inline-flex;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(181,122,255,.14);
  border: 1px solid rgba(181,122,255,.22);
  font-weight: 800;
  color: rgba(28,28,34,.90);
  margin-bottom: 10px;
}
.quem-title{
  font-family: var(--fontTitle);
  font-size: 34px;
  margin: 0 0 8px;
  color: #1c1c22;
}
.quem-title span{ color: var(--roxo1); }
.quem-text{
  margin: 8px 0;
  color: rgba(25,25,35,0.82);
  font-weight: 700;
  line-height: 1.5;
}
.quem-badges{
  display:flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 12px;
}
.quem-badges span{
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(37,211,102,.10);
  border: 1px solid rgba(37,211,102,.18);
  font-weight: 800;
  color: rgba(28,28,34,.88);
}
.quem-actions{ margin-top: 12px; display:flex; gap: 10px; flex-wrap: wrap; }
.quem-right{ display:flex; justify-content:center; align-items:center; }
.quem-photo{
  width: 100%;
  max-width: 360px;
  height: auto;
  border-radius: 22px;
  box-shadow: 0 18px 40px rgba(0,0,0,.18);
  border: 6px solid rgba(255,255,255,.70);
}

/* ===== PRÉVIA DO CATÁLOGO (entre Quem e Categorias) ===== */
.previa-wrap{
  padding: 14px;
  border-radius: 22px;
  background: rgba(255,255,255,.62);
  border: 1px solid rgba(181,122,255,.18);
  box-shadow: var(--shadow);
  backdrop-filter: blur(10px);
}
.previa-head{
  display:flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  padding: 6px 6px 12px;
}
.previa-head strong{
  font-family: var(--fontTitle);
  font-size: 18px;
  color: rgba(28,28,34,.95);
}
.previa-head span{
  font-weight: 800;
  color: rgba(25,25,35,.60);
  font-size: 13px;
  text-align: right;
}
.previa-grid{
  display:flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}
.previa-card{
  width: min(320px, 100%);
  flex: 1 1 260px;
  max-width: 360px;
  background: rgba(255,255,255,.70);
  border: 1px solid rgba(181,122,255,.18);
  border-radius: 18px;
  box-shadow: 0 10px 22px rgba(0,0,0,.08);
  overflow: hidden;
}
.previa-card img{
  width: 100%;
  height: 160px;
  object-fit: contain;
  background: #fff;
  display: block;
}

/* ===== CATEGORIAS ===== */
.categorias-wrap{
  display: flex;
  flex-direction: column;
  gap: 26px;
  margin-top: 18px;
}
.cat-section{
  padding: 16px 14px 6px;
  border-radius: 22px;
  background: rgba(255,255,255,.62);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(181,122,255,.18);
  box-shadow: var(--shadow);
}
.cat-title{
  font-family: var(--fontTitle);
  font-weight: 800;
  color: #7b3fe4;
  font-size: 26px;
  margin: 6px 0 12px;
  text-shadow: 0 12px 28px rgba(123,63,228,.18);
}

/* carro-chefe */
.cat-highlight{
  margin: 6px auto 14px;
  max-width: 860px;
  text-align: center;
  font-weight: 800;
  color: rgba(25,25,35,0.85);
  line-height: 1.35;
}
.cat-highlight strong{ color: rgba(25,25,35,0.95); }
.cat-slogan{
  display: inline-block;
  margin-left: 8px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(255,255,255,.72);
  border: 1px solid rgba(181,122,255,.22);
  box-shadow: 0 6px 16px rgba(0,0,0,.06);
  font-weight: 900;
}

.categorias-grid{
  display:flex;
  gap: 14px;
  justify-content:center;
  padding-bottom: 10px;
  flex-wrap: wrap;
  align-items: center; /* fixa o “Datas” na linha */
}

.categoria-group{
  width: 240px;
  display:flex;
  flex-direction: column;
  gap: 10px;
  align-self: center;
}

.categoria-card{
  width: 240px;
  background: rgba(255,255,255,.92);
  border-radius: 18px;
  padding: 16px 14px;
  cursor:pointer;
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
  font-weight: 900;
  position: relative;
  overflow: hidden;

  opacity: 0;
  transform: translateY(10px);

  border: 1px solid rgba(181,122,255,.45);
  box-shadow:
    0 10px 26px rgba(0,0,0,.08),
    0 0 0 2px rgba(181,122,255,.14),
    0 0 18px rgba(181,122,255,.26);
}
.categoria-card.in{
  opacity: 1;
  transform: translateY(0);
  transition: opacity .5s ease, transform .5s ease, box-shadow .22s ease, border-color .22s ease;
}
.categoria-card::before{
  content:"";
  position:absolute;
  inset:-40%;
  background:
    radial-gradient(circle at 30% 30%, rgba(181,122,255,.22), transparent 45%),
    radial-gradient(circle at 80% 20%, rgba(37,211,102,.12), transparent 45%);
  opacity: .70;
  transform: rotate(10deg);
  pointer-events:none;
}
.categoria-card:hover{
  transform: translateY(-5px);
  border-color: rgba(181,122,255,.80);
  box-shadow:
    0 18px 44px rgba(0,0,0,.12),
    0 0 0 2px rgba(181,122,255,.30),
    0 0 26px rgba(181,122,255,.44);
}
.categoria-card.active{
  border-color: rgba(181,122,255,.95);
  box-shadow:
    0 20px 56px rgba(0,0,0,.14),
    0 0 0 3px rgba(181,122,255,.40),
    0 0 34px rgba(181,122,255,.62);
}

/* destaque Kit Festas */
.categoria-card.is-featured{
  transform: translateY(-2px) scale(1.04);
  border-color: rgba(255, 160, 0, .55);
  box-shadow:
    0 22px 60px rgba(0,0,0,.16),
    0 0 0 3px rgba(255, 180, 0, .22),
    0 0 40px rgba(255, 140, 0, .28);
  animation: featuredPulse 2.4s ease-in-out infinite;
}
.categoria-card.is-featured:hover{
  transform: translateY(-5px) scale(1.06);
  box-shadow:
    0 28px 70px rgba(0,0,0,.18),
    0 0 0 3px rgba(255, 180, 0, .28),
    0 0 54px rgba(255, 140, 0, .38);
}
@keyframes featuredPulse{
  0%,100%{
    box-shadow:
      0 22px 60px rgba(0,0,0,.16),
      0 0 0 3px rgba(255, 180, 0, .22),
      0 0 40px rgba(255, 140, 0, .26);
    filter: saturate(1.03);
  }
  50%{
    box-shadow:
      0 28px 75px rgba(0,0,0,.18),
      0 0 0 3px rgba(255, 180, 0, .30),
      0 0 62px rgba(255, 140, 0, .44);
    filter: saturate(1.08);
  }
}
.categoria-card.is-featured::after{
  content:"";
  position:absolute;
  inset:-45%;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,.65), transparent);
  transform: translateX(-70%);
  animation: featuredShine 3.8s ease-in-out infinite;
  pointer-events:none;
}
@keyframes featuredShine{
  0%,100%{ transform: translateX(-70%); opacity: 0; }
  35%{ opacity: .95; }
  60%{ transform: translateX(70%); opacity: 0; }
}

.categoria-parent{ display:flex; justify-content:center; align-items:center; gap: 8px; min-height:56px; }
.caret{ display:inline-block; transition: transform .25s ease; opacity: .9; }
.categoria-group.open .caret{ transform: rotate(180deg); }

.categoria-sub{
  display:flex;
  flex-direction: column;
  gap: 10px;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: .35s ease;
  transform: translateY(-6px);
}
.categoria-group.open .categoria-sub{
  max-height: 520px;
  opacity: 1;
  transform: translateY(0);
}
.categoria-card.sub{
  padding: 12px 14px;
  font-size: 14px;
  background: rgba(255,255,255,.78);
}

/* ===== PRODUTOS ===== */
.produtos{ padding-top: 18px; }
.produtos-top{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.produtos-actions{ display:flex; gap:10px; flex-wrap: wrap; }

.search-wrap{
  margin-top: 12px;
  display:flex;
  gap: 12px;
  align-items:center;
  flex-wrap: wrap;
}
.search{
  width: min(520px, 100%);
  padding: 12px 14px;
  border-radius: 16px;
  border: 1px solid rgba(0,0,0,.10);
  outline: none;
  background: #fff;
  font-weight: 800;
  color: #111;
}
.counter{
  padding: 10px 12px;
  border-radius: 14px;
  background: #fff;
  border: 1px solid rgba(0,0,0,.06);
  font-weight: 900;
  color: rgba(25,25,35,0.85);
}

.status{
  margin-top: 10px;
  padding: 10px 14px;
  border-radius: 14px;
  background: rgba(255,255,255,.92);
  border: 1px solid rgba(0,0,0,.06);
  display: inline-block;
  font-weight: 900;
  color: rgba(25,25,35,0.85);
}

#subtitulo-produtos{ color: rgba(25,25,35,0.75); font-weight: 800; }

.progress-wrap{
  margin-top: 10px;
  height: 10px;
  border-radius: 999px;
  background: rgba(0,0,0,.06);
  overflow: hidden;
  opacity: 0;
  transition: opacity .25s ease;
}
.progress-bar{
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--roxo1), var(--accent));
  border-radius: 999px;
  transition: width .25s ease;
}

.galeria{
  margin-top: 18px;
  display:grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 14px;
}
.foto-produto{
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: 16px;
  background: #eee;
  box-shadow: 0 10px 22px rgba(0,0,0,.08);
  transition: transform .18s ease, box-shadow .18s ease, filter .18s ease;
  cursor: zoom-in;
}
.foto-produto:hover{
  transform: scale(1.035);
  box-shadow: 0 16px 28px rgba(0,0,0,.12);
  filter: saturate(1.05);
}

/* INFO CARD */
.info-card{
  border-radius: 22px;
  padding: 18px;
  background: rgba(255,255,255,.65);
  border: 1px solid rgba(181,122,255,.18);
  box-shadow: var(--shadow);
  backdrop-filter: blur(10px);
}
.info-title{
  font-family: var(--fontTitle);
  font-size: 28px;
  margin: 0 0 8px;
  color: #1c1c22;
}
.info-text{ margin: 0; color: rgba(25,25,35,0.82); font-weight: 700; }
.info-mini{ margin-top: 10px; color: rgba(25,25,35,0.70); font-weight: 800; }
.info-list{ margin: 12px 0 0; padding-left: 18px; color: rgba(25,25,35,0.78); font-weight: 700; }

/* CONTATO */
.contato{ text-align:center; }
.btn-row{
  display:flex;
  gap:12px;
  justify-content:center;
  flex-wrap:wrap;
  margin-top: 10px;
}
.brand-stamp{
  margin-top: 14px;
  display:flex;
  justify-content:center;
  opacity: .12;
}
.brand-stamp img{
  width: 120px;
  height: 120px;
  object-fit: cover;
  border-radius: 22px;
}

/* FOOTER */
.footer{
  background: #2b184a;
  color: rgba(255,255,255,0.92);
  padding: 18px 0;
  text-align:center;
  margin-top: 16px;
  border-top: 1px solid rgba(255,255,255,.10);
}
.footer-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 12px;
  flex-wrap: wrap;
}
.footer-brand{ display:flex; align-items:center; gap: 10px; }
.footer-logo{
  width: 46px;
  height: 46px;
  border-radius: 14px;
  object-fit: cover;
}

/* link insta no footer */
.footer-insta{
  color: rgba(255,255,255,0.92);
  font-weight: 900;
  text-decoration: none;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.16);
  background: rgba(255,255,255,.08);
  transition: .2s ease;
}
.footer-insta:hover{
  transform: translateY(-1px);
  background: rgba(255,255,255,.12);
  border-color: rgba(255,255,255,.22);
}

/* MODAL */
.modal{
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.86);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 999;
  cursor: zoom-out;
  padding: 20px;
}
.modal img{
  max-width: 92%;
  max-height: 92%;
  border-radius: 18px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.5);
}

/* Reveal */
.reveal{ opacity: 0; transform: translateY(12px); transition: .6s ease; }
.reveal.show{ opacity: 1; transform: translateY(0); }

/* ===== INSTAGRAM BONITINHO ✨ (UMA VEZ SÓ) ===== */
.btn.instagram{
  background: linear-gradient(135deg,
    #833ab4,
    #c13584,
    #e1306c,
    #fd1d1d,
    #f77737,
    #fcb045
  );
  color: #fff;
  border: 0;
  box-shadow:
    0 10px 25px rgba(193,53,132,.35),
    0 0 0 2px rgba(255,255,255,.25),
    0 0 22px rgba(225,48,108,.35);
  position: relative;
  overflow: hidden;
  transition: transform .2s ease, box-shadow .2s ease, filter .2s ease;
}
.btn.instagram:hover{
  transform: translateY(-2px) scale(1.02);
  box-shadow:
    0 16px 38px rgba(193,53,132,.45),
    0 0 0 2px rgba(255,255,255,.35),
    0 0 34px rgba(225,48,108,.55);
  filter: brightness(1.05);
}
.btn.instagram::after{
  content:"";
  position:absolute;
  inset:-40%;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,.35), transparent);
  transform: translateX(-70%);
  animation: instaShine 4.5s ease-in-out infinite;
  pointer-events:none;
}
.btn.instagram::before{
  content:"";
  position:absolute;
  inset:0;
  background: radial-gradient(circle at 30% 20%, rgba(255,255,255,.25), transparent 40%);
  opacity:.7;
  pointer-events:none;
}
@keyframes instaShine{
  0%,100%{ transform: translateX(-70%); opacity: 0; }
  40%{ opacity:.9; }
  60%{ transform: translateX(70%); opacity: 0; }
}

/* badges (legível) */
.badge{
  color: rgba(43, 24, 74, 0.88) !important;
  background: rgba(255,255,255,0.72) !important;
  border: 1px solid rgba(123, 63, 228, 0.22) !important;
  box-shadow:
    0 6px 18px rgba(0,0,0,0.06),
    0 0 0 1px rgba(181,122,255,0.12);
}
.badge:hover{
  background: rgba(255,255,255,0.9) !important;
  color: rgba(43, 24, 74, 0.96) !important;
}

/* responsivo */
@media (max-width: 900px){
  .hero-inner{ grid-template-columns: 1fr; text-align:center; }
  .hero-actions{ justify-content:center; }
  .quem-card{ grid-template-columns: 1fr; }
  .produtos-top{ justify-content:center; text-align:center; }
  .footer-inner{ justify-content:center; text-align:center; }

  .banner-strip{
    flex-direction: column;
    text-align: center;
    align-items: center;
  }
  .banner-strip-img{ width: 100%; max-width: 360px; height: 120px; }
  .banner-img{ max-height: 240px; }
}

@media (max-width: 420px){
  .title-gradient{ font-size: 38px; }
  .section-title{ font-size: 32px; }
  .categoria-card, .categoria-group{ width: 100%; max-width: 320px; }
}

/* em telas médias, diminui levemente pra caber 3 lado a lado */
@media (max-width: 980px){
  #categorias .categoria-card,
  #categorias .categoria-group{
    width: 220px;
  }
}

/* ✅ Transição bonita na Prévia do Catálogo */
.previa-card img{
  transition: opacity .35s ease, transform .35s ease, filter .35s ease;
  will-change: opacity, transform;
}

.previa-card img.is-changing{
  opacity: 0;
  transform: translateY(6px) scale(0.985);
  filter: blur(0.6px);
}