/* ===== Tokens ===== */
:root {
  --bg: #FFFBF6;
  --ink: #566da2;
  --ink-soft: #6B4B5A;
  --brand: #e6328c;
  --brand-dark: #A6015A;
  --gold: #F2A93B;
  --blush: #FCE7EF;
  --line: rgba(46, 10, 31, 0.12);
  --radius: 18px;

  --font-display: "Baloo 2", system-ui, sans-serif;
  --font-body: "Inter", system-ui, sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

.wrap {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

a { color: inherit; }

h1, h2, h3 { font-family: var(--font-display); margin: 0; }

.eyebrow {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--brand);
  margin: 0 0 8px;
}

/* ===== Header ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 251, 246, 0.9);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}

.logo {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.4rem;
  text-decoration: none;
  color: var(--ink);
}
.logo span { color: var(--brand); }

.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}
.main-nav a {
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--ink);
}
.nav-cta {
  background: var(--brand);
  color: #fff !important;
  padding: 10px 18px;
  border-radius: 999px;
  transition: transform 0.15s ease, background 0.15s ease;
}
.nav-cta:hover { background: var(--brand-dark); transform: translateY(-1px); }

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 26px;
  border-radius: 999px;
  font-weight: 700;
  text-decoration: none;
  font-size: 1rem;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.btn-primary {
  background: var(--brand);
  color: #fff;
  box-shadow: 0 8px 20px rgba(226, 1, 119, 0.25);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 10px 24px rgba(226, 1, 119, 0.32); }
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border: 2px solid var(--ink);
}
.btn-ghost:hover { transform: translateY(-2px); background: var(--ink); color: #fff; }

/* ===== Hero ===== */
.hero { padding: 72px 0 96px; overflow: hidden; }
.hero-inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
}
.hero-copy h1 {
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  line-height: 1.1;
  font-weight: 700;
  margin-bottom: 20px;
}
.hero-copy h1 em {
  font-style: normal;
  color: var(--brand);
  position: relative;
}
.hero-sub {
  font-size: 1.08rem;
  color: var(--ink-soft);
  max-width: 46ch;
  margin-bottom: 32px;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }

.hero-tags {
  position: relative;
  height: 380px;
}
.poloroid-tag {
  position: absolute;
  background: #fff;
  border-radius: 14px;
  padding: 10px 10px 14px;
  box-shadow: 0 16px 32px rgba(46, 10, 31, 0.15);
  width: 168px;
  text-align: center;
}
.poloroid-tag::before {
  content: "";
  position: absolute;
  top: -9px;
  left: 50%;
  transform: translateX(-50%);
  width: 10px;
  height: 10px;
  background: var(--bg);
  border: 2px solid var(--line);
  border-radius: 50%;
}
.poloroid-tag img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 8px;
  display: block;
}
.poloroid-tag span {
  display: block;
  margin-top: 8px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.85rem;
}
.tag-1 { top: 0; left: 10%; transform: rotate(-6deg); }
.tag-2 { top: 130px; right: 5%; transform: rotate(5deg); z-index: 2; }
.tag-3 { bottom: 0; left: 22%; transform: rotate(-3deg); }

/* ===== Section shell ===== */
.section { padding: 88px 0; }
.section-head { max-width: 640px; margin-bottom: 48px; }
.section-head h2 { font-size: clamp(1.8rem, 3vw, 2.4rem); margin-bottom: 12px; }
.section-sub { color: var(--ink-soft); font-size: 1.02rem; }
.section-sub a { color: var(--brand); font-weight: 600; text-decoration: none; }

.instagram-section { background: var(--blush); }

/* ===== Catálogo — cartões em formato de etiqueta ===== */
.grid-produtos {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
  gap: 28px 22px;
}

.tag-card {
  position: relative;
  background: #fff;
  border-radius: var(--radius);
  padding: 18px 16px 20px;
  box-shadow: 0 10px 24px rgba(46, 10, 31, 0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.tag-card:nth-child(odd) { transform: rotate(-1.2deg); }
.tag-card:nth-child(even) { transform: rotate(1.2deg); }
.tag-card:hover {
  transform: rotate(0deg) translateY(-4px);
  box-shadow: 0 18px 34px rgba(46, 10, 31, 0.14);
}
.tag-card::before {
  content: "";
  position: absolute;
  top: -8px;
  left: 22px;
  width: 14px;
  height: 14px;
  background: var(--bg);
  border: 2px solid var(--line);
  border-radius: 50%;
}
.carrossel {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 12px;
}

.carrossel-track {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  border-radius: 12px;
}
.carrossel-track::-webkit-scrollbar { display: none; }

.carrossel-slide {
  flex: 0 0 100%;
  scroll-snap-align: start;
}
.carrossel-slide img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  display: block;
  background: var(--blush);
}

.carrossel-seta {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 30px;
  height: 30px;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.85);
  color: var(--ink);
  font-size: 1.1rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.15s ease, background 0.15s ease;
}
.carrossel:hover .carrossel-seta { opacity: 1; }
.carrossel-seta:hover { background: #fff; }
.seta-prev { left: 8px; }
.seta-next { right: 8px; }

.carrossel-dots {
  position: absolute;
  bottom: 8px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 5px;
}
.dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.6);
  cursor: pointer;
  padding: 0;
}
.dot.ativo { background: #fff; width: 16px; border-radius: 3px; transition: width 0.15s ease; }

@media (hover: none) {
  /* touch: setas sempre visíveis já que não existe hover */
  .carrossel-seta { opacity: 0.9; }
}
.tag-card h3 {
  font-size: 0.98rem;
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 8px;
  min-height: 2.6em;
}
.tabela-precos {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 12px;
  font-size: 0.85rem;
}
.tabela-precos th {
  text-align: left;
  font-weight: 600;
  color: var(--ink-soft);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  padding-bottom: 6px;
  border-bottom: 1px solid var(--line);
}
.tabela-precos td {
  padding: 5px 0;
  border-bottom: 1px dashed var(--line);
}
.tabela-precos tr:last-child td { border-bottom: none; }
.tabela-precos td:first-child { color: var(--ink-soft); }
.tabela-precos td:last-child {
  text-align: right;
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--brand-dark);
}
.tag-card a.ver-produto {
  display: inline-block;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--brand);
  text-decoration: none;
}
.tag-card a.ver-produto:hover { text-decoration: underline; }

/* ===== Instagram grid ===== */
.grid-instagram {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 18px;
}
.grid-instagram a {
  display: block;
  aspect-ratio: 1;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 8px 18px rgba(46, 10, 31, 0.1);
}
.grid-instagram img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}
.grid-instagram a:hover img { transform: scale(1.06); }

.ig-skeleton {
  aspect-ratio: 1;
  border-radius: 14px;
  background: linear-gradient(90deg, #f3d8e5 25%, #f8e8ef 37%, #f3d8e5 63%);
  background-size: 400% 100%;
  animation: shimmer 1.4s ease infinite;
}
@keyframes shimmer {
  0% { background-position: 100% 0; }
  100% { background-position: 0 0; }
}

.ig-fallback {
  margin-top: 20px;
  color: var(--ink-soft);
}
.ig-fallback a { color: var(--brand); font-weight: 600; text-decoration: none; }

/* ===== Footer ===== */
.site-footer {
  padding: 40px 0;
  border-top: 1px solid var(--line);
}
.footer-inner p {
  margin: 4px 0;
  font-size: 0.88rem;
  color: var(--ink-soft);
}

/* ===== WhatsApp flutuante ===== */
.whatsapp-float {
  position: fixed;
  bottom: 22px;
  right: 22px;
  width: 58px;
  height: 58px;
  background: #25D366;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 24px rgba(37, 211, 102, 0.4);
  z-index: 100;
  transition: transform 0.15s ease;
}
.whatsapp-float:hover { transform: scale(1.08); }

/* ===== Responsivo ===== */
@media (max-width: 880px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-tags { height: 260px; margin-top: 12px; }
  .tag-1 { left: 0; }
  .tag-2 { right: 0; top: 90px; }
  .tag-3 { left: 30%; }
  .main-nav { gap: 16px; }
  .main-nav a:not(.nav-cta) { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; }
}
