/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

html, body {
  width: 100%;
}

html {
  overflow-x: hidden;
  scroll-behavior: smooth;
}

section { scroll-margin-top: 90px; }

:root {
  --rosa: #D96C8A;
  --azul-bebe: #A8D8FF;
  --amarelo-bebe: #FFF1A8;
  --fundo: #FFF7F9;
  --texto: #444;
}

body {
  background-color: var(--fundo);
  color: var(--texto);
  line-height: 1.6;
}

/* ================= HEADER ================= */
header {
  background: rgba(255, 255, 255, 0.45);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 18px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 8px 32px rgba(0,0,0,0.08);
  border-bottom: 1px solid rgba(255,255,255,0.4);
  gap: 16px;
  width: 100%;
  box-sizing: border-box;
}

/* LOGO */
.logo {
  display: flex;
  align-items: center;
  gap: 14px;
  cursor: pointer;
  flex-shrink: 0;
}

.logo img { width: 52px; transition: transform 0.3s ease; }
.logo:hover img { transform: rotate(-5deg) scale(1.05); }
.logo h1 { color: var(--azul-bebe); font-size: 40px; font-weight: 600; }

.logo-text { display: flex; flex-direction: column; line-height: 1; }

.logo-dominique {
  font-family: 'Magic Donut', cursive;
  font-size: 52px;
  letter-spacing: 1px;
  color: var(--azul-bebe);
}

.logo-personalizados {
  font-family: 'A Little Sunshine', cursive;
  font-size: 30px;
  margin-top: -6px;
  color: var(--rosa);
}

/* ===== HEADER SEARCH BAR ===== */
.header-search {
  display: flex;
  align-items: center;
  background: rgba(255,255,255,0.85);
  border: 1.5px solid rgba(217,108,138,0.25);
  border-radius: 30px;
  padding: 6px 6px 6px 18px;
  gap: 6px;
  flex: 1;
  max-width: 360px;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.header-search:focus-within {
  border-color: var(--rosa);
  box-shadow: 0 0 0 3px rgba(217,108,138,0.12);
}

.header-search input {
  border: none;
  background: transparent;
  outline: none;
  font-size: 14px;
  font-family: 'Poppins', sans-serif;
  color: var(--texto);
  flex: 1;
  min-width: 0;
}

.header-search input::placeholder { color: #bbb; }

.header-search button {
  background: var(--rosa);
  border: none;
  border-radius: 24px;
  padding: 8px 14px;
  color: #fff;
  cursor: pointer;
  font-size: 14px;
  transition: background 0.2s, transform 0.15s;
  white-space: nowrap;
}

.header-search button:hover {
  background: #c4557a;
  transform: scale(1.05);
}

/* NAV */
nav {
  display: flex;
  gap: 20px;
  flex-shrink: 0;
}

nav a {
  position: relative;
  text-decoration: none;
  color: #333;
  font-weight: 500;
  font-size: 15px;
  padding: 6px 0;
  transition: color 0.3s;
  white-space: nowrap;
}

nav a::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 0%;
  height: 3px;
  background-color: var(--rosa);
  border-radius: 10px;
  transition: width 0.3s ease;
}

nav a:hover { color: var(--rosa); }
nav a:hover::after { width: 100%; }

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
}

.menu-toggle span {
  width: 26px; height: 3px;
  background-color: var(--rosa);
  border-radius: 5px;
}

/* ================= SECTIONS ================= */
section { padding: 60px 40px; max-width: 1200px; margin: auto; }
section h2 { color: var(--rosa); margin-bottom: 20px; font-size: 32px; }

/* ================= HOME ================= */
#home {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 25px;
}

#home p { font-size: 20px; max-width: 700px; }

.btn, #contato button {
  background-color: var(--azul-bebe);
  color: #333;
  padding: 12px 28px;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  font-size: 16px;
  transition: 0.3s;
}

.btn:hover, #contato button:hover { background-color: var(--amarelo-bebe); }

/* ================= QUEM SOMOS ================= */
.sobre-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  margin-top: 30px;
}

.sobre-texto p { font-size: 18px; line-height: 1.8; }

.sobre-imagem {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.sobre-imagem::before {
  content: "";
  position: absolute;
  width: 320px; height: 320px;
  background: linear-gradient(135deg, var(--azul-bebe), var(--amarelo-bebe));
  border-radius: 50%;
  filter: blur(35px);
  opacity: 0.7;
  z-index: 0;
}

.sobre-imagem img {
  width: 100%;
  max-width: 360px;
  position: relative;
  z-index: 1;
  transition: transform 0.4s ease;
}

.sobre-imagem img:hover { transform: scale(1.05); }

/* ================= PRODUTOS (HOME) ================= */
.produtos-container {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 24px;
  margin-top: 30px;
}

.produto-card {
  height: 190px;
  background: #fff;
  border: 2px solid var(--azul-bebe);
  border-radius: 20px;
  text-decoration: none;
  color: var(--texto);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.produto-card span { font-size: 36px; }
.produto-card h3 { font-size: 16px; font-weight: 500; text-align: center; padding: 0 8px; }
.produto-card:hover { transform: translateY(-6px); box-shadow: 0 15px 30px rgba(0,0,0,0.12); }

/* ================= CATÁLOGO HEADER ================= */
.catalogo-header {
  max-width: 1200px;
  margin: auto;
  margin-bottom: 0;
  padding: 24px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  position: sticky;
  top: 0;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(12px);
  z-index: 900;
  border-bottom: 1px solid rgba(255,255,255,0.5);
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}

.catalogo-header h2 { color: var(--rosa); font-size: 24px; flex-shrink: 0; }

/* Search bar no header do catálogo */
.catalogo-header .header-search {
  max-width: 280px;
}

.voltar, .carrinho-link {
  text-decoration: none;
  font-size: 18px;
  color: var(--rosa);
  font-weight: 500;
  flex-shrink: 0;
}

.catalogo { max-width: 1200px; margin: auto; padding: 40px 40px 60px; }

.catalogo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 30px;
}

/* ================= BUSCA ================= */
.busca-section {
  max-width: 1200px;
  margin: auto;
  padding: 40px 40px 60px;
}

.busca-header {
  margin-bottom: 32px;
}

.busca-header h2 {
  color: var(--rosa);
  font-size: 28px;
  margin-bottom: 16px;
}

.busca-input-group {
  display: flex;
  gap: 10px;
  max-width: 500px;
}

.busca-input-group input {
  flex: 1;
  padding: 12px 18px;
  border: 2px solid rgba(217,108,138,0.25);
  border-radius: 30px;
  font-size: 15px;
  font-family: 'Poppins', sans-serif;
  outline: none;
  transition: border-color 0.2s;
  background: #fff;
}

.busca-input-group input:focus { border-color: var(--rosa); }

.busca-input-group button {
  padding: 12px 24px;
  background: var(--rosa);
  color: #fff;
  border: none;
  border-radius: 30px;
  font-size: 15px;
  font-family: 'Poppins', sans-serif;
  cursor: pointer;
  transition: background 0.2s;
}

.busca-input-group button:hover { background: #c4557a; }

#busca-titulo {
  font-size: 15px;
  color: #888;
  margin-bottom: 24px;
  display: block;
}

/* ================= CARD DO PRODUTO (CATÁLOGO) ================= */
.produto-item {
  background: #fff;
  border-radius: 18px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  transition: transform 0.3s ease;
}

.produto-item:hover { transform: translateY(-6px); }

.img-produto {
  width: 100%;
  max-height: 200px;
  object-fit: contain;
  margin-bottom: 15px;
  border-radius: 10px;
}

.produto-item h3 { color: var(--rosa); font-size: 18px; margin-bottom: 10px; }
.produto-item p { font-size: 15px; margin-bottom: 12px; }
.produto-item .preco { font-size: 18px; font-weight: 600; margin-bottom: 15px; }

.produto-botoes { display: flex; gap: 10px; }

.produto-botoes button, .produto-botoes a {
  flex: 1;
  padding: 10px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  text-align: center;
  cursor: pointer;
}

.produto-botoes button { background-color: var(--azul-bebe); border: none; }
.produto-botoes button:hover { background-color: var(--amarelo-bebe); }
.btn-whatsapp { background-color: #25d366; color: #fff; }
.btn-whatsapp:hover { opacity: 0.85; }

/* ================= CAROUSEL ================= */
.carousel {
  position: relative;
  width: 100%;
  overflow: hidden;
  border-radius: 12px;
  margin-bottom: 15px;
  background: #f8f8f8;
  aspect-ratio: 4/3;
}

.carousel-track {
  display: flex;
  height: 100%;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

.carousel-img {
  min-width: 100%;
  width: 100%;
  height: 100%;
  object-fit: contain;
  cursor: zoom-in;
  user-select: none;
  -webkit-user-drag: none;
}

/* Botões prev/next */
.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.88);
  border: none;
  border-radius: 50%;
  width: 34px;
  height: 34px;
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 10px rgba(0,0,0,0.15);
  transition: background 0.2s, transform 0.15s;
  color: var(--rosa);
  font-weight: bold;
  padding: 0;
}

.carousel-btn:hover {
  background: #fff;
  transform: translateY(-50%) scale(1.1);
}

.carousel-prev { left: 8px; }
.carousel-next { right: 8px; }

/* Dots */
.carousel-dots {
  position: absolute;
  bottom: 8px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 5px;
  z-index: 10;
}

.carousel-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(255,255,255,0.6);
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}

.carousel-dot.active {
  background: var(--rosa);
  transform: scale(1.3);
}

/* ================= CONTATO ================= */
#contato form {
  max-width: 500px;
  margin: auto;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

#contato input, #contato textarea {
  padding: 12px;
  border-radius: 10px;
  border: 1px solid #ccc;
}

/* ================= FOOTER ================= */
footer {
  background-color: var(--azul-bebe);
  text-align: center;
  padding: 20px;
  margin-top: 40px;
}

/* FLOATS */
.instagram-float {
  position: fixed;
  bottom: 20px; right: 20px;
  width: 60px; height: 60px;
  background: linear-gradient(45deg, #feda75, #fa7e1e, #d62976, #962fbf, #4f5bd5);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: #fff;
  text-decoration: none;
  box-shadow: 0 8px 25px rgba(0,0,0,0.3);
  z-index: 999;
  transition: transform 0.3s ease;
}

.instagram-float:hover { transform: scale(1.1); }

.whatsapp-float {
  position: fixed;
  bottom: 20px; right: 90px;
  width: 60px; height: 60px;
  background-color: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: #fff;
  text-decoration: none;
  box-shadow: 0 8px 25px rgba(0,0,0,0.3);
  z-index: 999;
  transition: transform 0.3s ease;
}

.whatsapp-float:hover { transform: scale(1.1); }

/* ================= INSTRUÇÕES ================= */
#instrucoes {
  background: linear-gradient(135deg, rgba(168,216,255,0.35), rgba(255,241,168,0.35));
  border-radius: 24px;
  padding: 60px 40px;
  margin: 40px auto;
}

.instrucoes-box {
  max-width: 820px;
  margin: auto;
  background: #fff;
  padding: 40px;
  border-radius: 22px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.08);
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.instrucoes-box p { font-size: 17px; line-height: 1.7; }
.instrucoes-box strong { color: var(--rosa); }

.instrucoes-box .pagamento {
  background: rgba(168,216,255,0.25);
  padding: 16px 18px;
  border-radius: 14px;
}

/* ================= BADGE DO CARRINHO ================= */
.carrinho-header { position: relative; }

.cart-badge {
  position: absolute;
  top: -8px; right: -14px;
  background: #ff4d6d;
  color: #fff;
  font-size: 12px;
  font-weight: bold;
  padding: 3px 7px;
  border-radius: 50%;
  display: none;
}

/* ================= TOAST ================= */
#toast {
  position: fixed;
  bottom: 90px; right: 20px;
  background: #4caf50;
  color: #fff;
  padding: 14px 20px;
  border-radius: 12px;
  font-size: 14px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(20px);
  transition: all 0.4s ease;
  box-shadow: 0 8px 20px rgba(0,0,0,0.25);
  z-index: 9999;
}

#toast.show { opacity: 1; transform: translateY(0); }

/* ================= ANIMAÇÕES ================= */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes bounce {
  0%   { transform: scale(1); }
  40%  { transform: scale(1.05); }
  100% { transform: scale(1); }
}

@keyframes fadeOut {
  to { opacity: 0; transform: translateX(20px); }
}

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50%       { transform: scale(1.2); }
}

section { animation: fadeUp 0.9s ease forwards; }

.produto-animado   { animation: bounce 0.4s ease; }
.carrinho-pulse    { animation: pulse 0.4s ease; }

.carrinho-item.removendo { animation: fadeOut 0.4s ease forwards; }

/* ================= VISIT COUNTER ================= */
#visit-counter {
  display: inline-block;
  margin-top: 10px;
  font-size: 12px;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.3px;
  transition: color 0.2s;
}

#visit-counter:hover { color: rgba(255,255,255,0.85); }

/* ================= ADMIN LINK ================= */
.admin-link {
  display: inline-block;
  margin-top: 12px;
  font-size: 13px;
  font-weight: 500;
  color: #1a3a5c;
  text-decoration: none;
  letter-spacing: 0.4px;
  padding: 5px 14px;
  border-radius: 20px;
  background: rgba(255,255,255,0.25);
  transition: background 0.2s, color 0.2s;
}

.admin-link:hover { background: rgba(255,255,255,0.45); color: #0d2238; }

/* ================= BANNER — integrado ao hero (ver #home) ================= */
/* ================= HERO MELHORADO ================= */
#home {
  position: relative;
  overflow: hidden;
  min-height: 85vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 100px 40px 80px;
  background: none;
}

/* SVG cobre 100% do hero */
.hero-bg-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  pointer-events: none;
}

/* Animações dos balões — sobem na entrada */
@keyframes balaoBirthEsq {
  0%   { transform: translateY(80px); opacity: 0; }
  60%  { opacity: 1; }
  100% { transform: translateY(0); opacity: 1; }
}
@keyframes balaoBirthCentro {
  0%   { transform: translateY(90px); opacity: 0; }
  60%  { opacity: 1; }
  100% { transform: translateY(0); opacity: 1; }
}
@keyframes balaoBirthDir {
  0%   { transform: translateY(80px); opacity: 0; }
  60%  { opacity: 1; }
  100% { transform: translateY(0); opacity: 1; }
}
@keyframes balaoFlutua {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-9px); }
}

.baloes-esq {
  animation:
    balaoBirthEsq 1s cubic-bezier(0.22, 1, 0.36, 1) 0.2s both,
    balaoFlutua   3.5s ease-in-out 1.2s infinite;
  transform-origin: 80px 300px;
}
.baloes-centro {
  animation:
    balaoBirthCentro 1s cubic-bezier(0.22, 1, 0.36, 1) 0.5s both,
    balaoFlutua      4s   ease-in-out 1.5s infinite;
  transform-origin: 580px 460px;
}
.baloes-dir {
  animation:
    balaoBirthDir 1s cubic-bezier(0.22, 1, 0.36, 1) 0.8s both,
    balaoFlutua   3.8s ease-in-out 1.8s infinite;
  transform-origin: 1110px 300px;
}

/* Decos antigos — não usados mais */
.hero-decos, .deco { display: none; }

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 20px;
  max-width: 720px;
  position: relative;
  z-index: 1;
}

.hero-pilula { display: none; } /* removida */

#home h2 {
  font-size: clamp(28px, 4.5vw, 48px);
  font-weight: 700;
  color: #2a2a2a;
  line-height: 1.2;
  margin: 0;
  animation: fadeUp 0.7s ease 0.1s both;
  letter-spacing: -0.5px;
}

#home h2 em {
  font-style: normal;
  color: var(--rosa);
  font-family: 'A Little Sunshine', cursive;
  font-size: 1.15em;
}

#home > .hero-content > p {
  font-size: 17px;
  color: #666;
  line-height: 1.75;
  animation: fadeUp 0.7s ease 0.2s both;
  max-width: 540px;
}

.hero-cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
  animation: fadeUp 0.7s ease 0.3s both;
}

.btn-wpp-hero {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #25d366;
  color: #fff;
  text-decoration: none;
  padding: 16px 30px;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 600;
  box-shadow: 0 8px 28px rgba(37,211,102,0.35);
  transition: transform 0.2s, box-shadow 0.2s;
}

.btn-wpp-hero i { font-size: 20px; }

.btn-wpp-hero:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 36px rgba(37,211,102,0.45);
}

.btn-ver-catalogo {
  display: inline-flex;
  align-items: center;
  padding: 16px 26px;
  border-radius: 50px;
  border: 2px solid rgba(217,108,138,0.35);
  color: var(--rosa);
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  background: rgba(255,255,255,0.6);
  transition: all 0.2s;
}

.btn-ver-catalogo:hover {
  background: rgba(217,108,138,0.08);
  border-color: var(--rosa);
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 24px;
  background: rgba(255,255,255,0.7);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(217,108,138,0.12);
  border-radius: 20px;
  padding: 16px 30px;
  animation: fadeUp 0.7s ease 0.4s both;
  flex-wrap: wrap;
  justify-content: center;
}

.hero-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}

.hero-stat strong {
  font-size: 22px;
  font-weight: 700;
  color: var(--rosa);
  line-height: 1;
}

.hero-stat span {
  font-size: 12px;
  color: #999;
  white-space: nowrap;
}

.hero-stat-sep {
  width: 1px;
  height: 32px;
  background: rgba(217,108,138,0.2);
}

/* ================= COMO FUNCIONA ================= */
#como-funciona {
  background: linear-gradient(135deg, rgba(168,216,255,0.18) 0%, rgba(255,241,168,0.18) 100%);
  border-radius: 28px;
  margin: 0 auto 0;
  max-width: 1200px;
  padding: 60px 40px;
}

.secao-sub {
  text-align: center;
  color: #888;
  font-size: 15px;
  margin-top: -12px;
  margin-bottom: 40px;
}

.steps-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.step-card {
  background: #fff;
  border-radius: 22px;
  padding: 32px 28px;
  text-align: center;
  flex: 1;
  min-width: 200px;
  max-width: 260px;
  box-shadow: 0 8px 30px rgba(217,108,138,0.1);
  border: 1px solid rgba(217,108,138,0.1);
  position: relative;
  transition: transform 0.25s, box-shadow 0.25s;
}

.step-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(217,108,138,0.16);
}

.step-numero {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--rosa);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 20px;
  letter-spacing: 1px;
}

.step-icon {
  font-size: 40px;
  display: block;
  margin-bottom: 14px;
  margin-top: 8px;
}

.step-card h4 {
  font-size: 16px;
  font-weight: 600;
  color: #333;
  margin-bottom: 10px;
}

.step-card p {
  font-size: 13px;
  color: #888;
  line-height: 1.6;
}

.step-seta {
  font-size: 28px;
  color: rgba(217,108,138,0.35);
  font-weight: 300;
  flex-shrink: 0;
}

/* ================= SOBRE — botão novo ================= */
.sobre-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 20px;
  background: #25d366;
  color: #fff;
  padding: 12px 22px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 6px 20px rgba(37,211,102,0.3);
}

.sobre-btn:hover { transform: translateY(-2px); box-shadow: 0 10px 28px rgba(37,211,102,0.4); }

/* ================= PRODUTOS — subtítulo ================= */
#produtos > .secao-sub { margin-bottom: 24px; }

/* ================= BADGE DOS PRODUTOS ================= */
.produto-item { position: relative; }

.produto-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 10;
  font-size: 11px;
  font-weight: 700;
  padding: 5px 10px;
  border-radius: 20px;
  letter-spacing: 0.3px;
  pointer-events: none;
  backdrop-filter: blur(4px);
}

.badge-mais-vendido {
  background: linear-gradient(135deg, #ffb700, #ff8c00);
  color: #fff;
  box-shadow: 0 4px 12px rgba(255,140,0,0.35);
}

.badge-em-alta {
  background: linear-gradient(135deg, var(--rosa), #ff6ba8);
  color: #fff;
  box-shadow: 0 4px 12px rgba(217,108,138,0.35);
}

.badge-novo {
  background: linear-gradient(135deg, #34c77b, #00a86b);
  color: #fff;
  box-shadow: 0 4px 12px rgba(0,168,107,0.35);
}

/* ================= DEPOIMENTOS ================= */
#depoimentos {
  text-align: center;
  padding: 60px 40px;
  background: radial-gradient(ellipse at 50% 0%, rgba(217,108,138,0.07) 0%, transparent 70%), var(--fundo);
}

#depoimentos h2 { margin-bottom: 0; }

.depo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-bottom: 36px;
  text-align: left;
}

.depo-card {
  background: #fff;
  border-radius: 22px;
  padding: 28px;
  box-shadow: 0 6px 28px rgba(0,0,0,0.06);
  border: 1px solid rgba(217,108,138,0.1);
  transition: transform 0.25s, box-shadow 0.25s;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.depo-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 40px rgba(217,108,138,0.14);
}

.depo-destaque {
  background: linear-gradient(145deg, rgba(217,108,138,0.05), rgba(168,216,255,0.08));
  border-color: rgba(217,108,138,0.22);
  box-shadow: 0 8px 32px rgba(217,108,138,0.12);
}

.depo-estrelas {
  color: #f5a623;
  font-size: 17px;
  letter-spacing: 2px;
}

.depo-texto {
  font-size: 14px;
  color: #555;
  line-height: 1.7;
  flex: 1;
  font-style: italic;
}

.depo-autor {
  display: flex;
  align-items: center;
  gap: 12px;
  border-top: 1px solid rgba(0,0,0,0.05);
  padding-top: 14px;
}

.depo-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
}

.depo-autor strong {
  display: block;
  font-size: 14px;
  color: #333;
}

.depo-autor small {
  font-size: 12px;
  color: #aaa;
}

.depo-cta {
  display: flex;
  justify-content: center;
}

.btn-wpp-depo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, #25d366, #1fae58);
  color: #fff;
  text-decoration: none;
  padding: 15px 32px;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 600;
  box-shadow: 0 8px 24px rgba(37,211,102,0.3);
  transition: transform 0.2s, box-shadow 0.2s;
}

.btn-wpp-depo:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 32px rgba(37,211,102,0.4);
}

/* ================================================
   RESPONSIVO — mobile-first
   1200px  desktop grande
    900px  tablet/desktop pequeno
    768px  tablet portrait / celular grande
    480px  celular médio
    360px  celular pequeno
================================================ */

/* ─── 900px ─── */
@media (max-width: 900px) {
  .header-search { max-width: 200px; }
  nav a { font-size: 14px; }
  nav { gap: 16px; }
}

/* ─── 768px ─── */
@media (max-width: 768px) {
  /* Header */
  header {
    padding: 12px 18px;
    gap: 10px;
  }
  .header-search { display: none; }
  nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(255,255,255,0.97);
    backdrop-filter: blur(12px);
    border-radius: 0 0 20px 20px;
    padding: 16px 20px;
    display: none;
    flex-direction: column;
    gap: 14px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.12);
    z-index: 999;
  }
  nav.active { display: flex; }
  nav a { font-size: 16px; }
  .menu-toggle { display: flex; }

  /* Logo */
  .logo-dominique { font-size: 38px; }
  .logo-personalizados { font-size: 22px; }
  .mascote { width: 42px !important; }

  /* Banner */
  .banner-svg { height: 140px; }
  .baloes-esq, .baloes-centro, .baloes-dir { display: none; }

  /* Hero */
  #home { padding: 80px 20px 60px; min-height: 75vh; }
  #home h2 { font-size: 26px; }
  #home > .hero-content > p { font-size: 15px; }
  /* balões menores no tablet */
  .baloes-esq, .baloes-dir { display: block; }
  .baloes-centro { display: none; }
  .hero-cta { flex-direction: column; align-items: center; gap: 10px; }
  .btn-wpp-hero { width: 100%; max-width: 340px; justify-content: center; font-size: 15px; padding: 14px 20px; }
  .btn-ver-catalogo { width: 100%; max-width: 340px; justify-content: center; font-size: 14px; padding: 12px 20px; }
  .hero-stats { gap: 12px; padding: 12px 18px; flex-wrap: wrap; justify-content: center; }
  .hero-stat-sep { display: none; }
  .hero-stat strong { font-size: 18px; }

  /* Como funciona */
  #como-funciona { padding: 36px 20px; border-radius: 20px; margin: 0 12px; }
  .steps-row { flex-direction: column; align-items: center; gap: 14px; }
  .step-seta { transform: rotate(90deg); font-size: 22px; }
  .step-card { max-width: 100%; width: 100%; }

  /* Seções gerais */
  section { padding: 40px 20px; }
  section h2 { font-size: 26px; }
  .secao-sub { font-size: 14px; }

  /* Quem somos */
  .sobre-container { grid-template-columns: 1fr; text-align: center; gap: 24px; }
  .sobre-imagem::before { width: 200px; height: 200px; }
  .sobre-imagem img { max-width: 260px; margin: auto; }
  .sobre-btn { justify-content: center; }

  /* Produtos */
  .produtos-container { grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); gap: 14px; }
  .produto-card { height: 150px; }
  .produto-card span { font-size: 28px; }
  .produto-card h3 { font-size: 13px; }

  /* Catálogo grid */
  .catalogo-grid { grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 20px; }
  .catalogo-header { padding: 14px 18px; gap: 10px; }
  .catalogo-header h2 { font-size: 18px; }
  .catalogo { padding: 20px 18px 40px; }

  /* Depoimentos */
  #depoimentos { padding: 40px 20px; }
  .depo-grid { grid-template-columns: 1fr; gap: 16px; }

  /* Instruções */
  #instrucoes { padding: 40px 20px; }
  .instrucoes-box { padding: 24px 18px; }
  .instrucoes-box p { font-size: 15px; }

  /* Busca */
  .busca-section { padding: 24px 18px 40px; }
  .busca-input-group { flex-direction: column; gap: 8px; }
  .busca-header h2 { font-size: 22px; }
}

/* ─── 480px — celular médio ─── */
@media (max-width: 480px) {
  /* Header */
  header { padding: 10px 14px; }
  .logo-dominique { font-size: 30px; }
  .logo-personalizados { font-size: 17px; }
  .mascote { width: 36px !important; }

  /* Banner */
  .banner-svg { height: 110px; }

  /* Hero */
  #home { padding: 70px 16px 50px; min-height: 70vh; }
  #home h2 { font-size: 22px; line-height: 1.3; }
  #home > .hero-content > p { font-size: 14px; }
  .btn-wpp-hero { font-size: 14px; padding: 13px 16px; }
  .btn-wpp-hero i { font-size: 17px; }
  .hero-stats { padding: 10px 14px; gap: 10px; }
  .hero-stat strong { font-size: 16px; }
  .hero-stat span { font-size: 11px; }

  /* Como funciona */
  #como-funciona { margin: 0 8px; padding: 28px 16px; }
  .step-card { padding: 24px 18px; }
  .step-icon { font-size: 32px; }

  /* Seções */
  section { padding: 32px 16px; }
  section h2 { font-size: 22px; }

  /* Produtos */
  .produtos-container { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .produto-card { height: 140px; }
  .produto-card span { font-size: 26px; }
  .produto-card h3 { font-size: 12px; }

  /* Catálogo */
  .catalogo-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .produto-item { padding: 14px; }
  .produto-item h3 { font-size: 15px; }
  .produto-item p { font-size: 13px; }
  .produto-item .preco { font-size: 15px; }
  .produto-botoes button, .produto-botoes a { font-size: 12px; padding: 9px 6px; }
  .img-produto { max-height: 160px; }

  /* Depoimentos */
  .depo-card { padding: 20px; }
  .depo-texto { font-size: 13px; }
  .btn-wpp-depo { font-size: 14px; padding: 13px 22px; }

  /* Instruções */
  .instrucoes-box { padding: 20px 14px; gap: 14px; }
  .instrucoes-box p { font-size: 14px; }

  /* Contato */
  #contato form { gap: 12px; }
  #contato input, #contato textarea { padding: 11px; font-size: 14px; }

  /* Footer */
  footer { padding: 16px; font-size: 13px; }

  /* Floats — junta os dois botões mais juntos */
  .instagram-float { width: 52px; height: 52px; font-size: 24px; right: 16px; bottom: 16px; }
  .whatsapp-float  { width: 52px; height: 52px; font-size: 24px; right: 78px; bottom: 16px; }

  /* Carousel */
  .carousel-btn { width: 28px; height: 28px; font-size: 16px; }
}

/* ─── 360px — celular pequeno ─── */
@media (max-width: 360px) {
  header { padding: 10px 12px; }
  .logo-dominique { font-size: 26px; }
  .logo-personalizados { font-size: 15px; }
  .mascote { width: 32px !important; }

  #home h2 { font-size: 20px; }
  .btn-wpp-hero { font-size: 13px; padding: 12px 14px; }

  .produtos-container { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .produto-card { height: 130px; }
  .produto-card span { font-size: 22px; }
  .produto-card h3 { font-size: 11px; }

  .catalogo-grid { grid-template-columns: 1fr; }

  section { padding: 28px 14px; }
  section h2 { font-size: 20px; }
}


/* ================================================
   NOSSOS KITS — GALERIA CARROSSEL
================================================ */
#nossos-kits {
  padding: 60px 40px;
  text-align: center;
  background: linear-gradient(160deg, #fff9fc 0%, #f0f7ff 100%);
}

.galeria-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
  max-width: 900px;
  margin: 32px auto 16px;
}

.galeria-track-outer {
  flex: 1;
  overflow: hidden;
  border-radius: 20px;
  box-shadow: 0 8px 32px rgba(217,108,138,0.13);
  background: #fce4ec;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.galeria-track {
  width: 100%;
  position: relative;
}

.galeria-slide {
  display: none;
  position: relative;
}
.galeria-slide.ativa { display: block; }

.galeria-slide img {
  width: 100%;
  max-height: 480px;
  object-fit: cover;
  border-radius: 20px;
  display: block;
}

.galeria-legenda {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(transparent, rgba(0,0,0,0.55));
  color: white;
  font-size: 15px;
  font-weight: 500;
  padding: 24px 20px 14px;
  border-radius: 0 0 20px 20px;
  text-align: left;
}

.galeria-vazia {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 60px 30px;
  color: #bbb;
}
.galeria-vazia span { font-size: 48px; }
.galeria-vazia p    { font-size: 15px; }

.galeria-btn {
  background: white;
  border: 2px solid #f0c0d0;
  color: #D96C8A;
  width: 48px; height: 48px;
  border-radius: 50%;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  flex-shrink: 0;
  transition: all .2s;
  box-shadow: 0 3px 12px rgba(0,0,0,0.08);
  display: flex; align-items: center; justify-content: center;
}
.galeria-btn:hover { background: #D96C8A; color: white; border-color: #D96C8A; }

.galeria-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 10px;
}
.galeria-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: #f0c0d0;
  cursor: pointer;
  transition: all .25s;
}
.galeria-dot.ativa { background: #D96C8A; transform: scale(1.3); }

.galeria-cta { margin-top: 24px; }

/* Mobile galeria */
@media (max-width: 768px) {
  #nossos-kits { padding: 40px 16px; }
  .galeria-track-outer { min-height: 260px; border-radius: 16px; }
  .galeria-slide img { max-height: 320px; border-radius: 16px; }
  .galeria-btn { width: 38px; height: 38px; font-size: 22px; }
}
@media (max-width: 480px) {
  .galeria-track-outer { min-height: 220px; }
  .galeria-slide img   { max-height: 260px; }
  .galeria-btn         { width: 32px; height: 32px; font-size: 18px; }
}

/* ================================================
   DEPOIMENTOS — spinner de loading
================================================ */
.depo-loading {
  grid-column: 1 / -1;
  display: flex;
  justify-content: center;
  padding: 40px;
}
.depo-spinner {
  width: 36px; height: 36px;
  border: 4px solid #f0c0d0;
  border-top-color: #D96C8A;
  border-radius: 50%;
  animation: spin .7s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* estrela vazia em depoimentos */
.depo-estrelas { color: #D96C8A; font-size: 18px; letter-spacing: 2px; }
