@import url('https://fonts.googleapis.com/css2?family=Bodoni+Moda:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&family=Inter:wght@300;400;500;600&display=swap');

/* ── Variables ──────────────────────────────────────────────────────────────── */
:root {
  --rosa-claro: #FFB3D9;
  --rosa-medio: #FF4DB8;
  --rosa-escuro: #E91E8C;
  --rosa-deep: #C2185B;
  --branco: #FFFFFF;
  --creme: #FFF0F8;
  --fundo: #FDE8F3;
  --texto: #34363A;
  --texto-suave: #8B2252;
  --borda: #F5B8D9;
  --sombra: rgba(217, 17, 128, 0.10);
  --sombra-hover: rgba(217, 17, 128, 0.20);
  --trans: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --header-h: 130px;
  --header-h-mob: 64px;
}

/* ── Reset ──────────────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: var(--texto);
  background: var(--branco);
  line-height: 1.6;
  overflow-x: hidden;
  font-weight: 400;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; color: inherit; }
input, select, textarea { font-family: inherit; }
ul { list-style: none; }
[class*="ph-"] { font-size: 1.25em; line-height: 1; vertical-align: middle; }

/* ── Typography ─────────────────────────────────────────────────────────────── */
.font-display { font-family: 'Bodoni Moda', serif; }
h1, h2, h3 { font-family: 'Bodoni Moda', serif; font-weight: 400; line-height: 1.15; letter-spacing: 0.02em; color: var(--rosa-escuro); }
h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); }

/* ── Layout ─────────────────────────────────────────────────────────────────── */
.container { max-width: 1320px; margin: 0 auto; padding: 0 24px; }
.section { padding: 72px 0; }
.section-sm { padding: 48px 0; }
.section-title {
  font-family: 'Bodoni Moda', serif;
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 500;
  font-style: italic;
  text-align: center;
  letter-spacing: 0.01em;
  text-transform: none;
}
.section-sub {
  text-align: center;
  color: var(--texto-suave);
  font-size: 12px;
  margin-top: 8px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 300;
}
.section-divider { width: 40px; height: 1px; background: var(--rosa-escuro); margin: 20px auto 0; }
.section-header { margin-bottom: 48px; }

/* ── Header ─────────────────────────────────────────────────────────────────── */
.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #ffffff;
  border-bottom: 1px solid rgba(233,30,140,0.15);
  transition: var(--trans);
}
.header-top {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 18px 32px 10px;
  gap: 20px;
}
.header-icons-left, .header-icons-right { display: flex; align-items: center; gap: 4px; }
.header-icons-right { justify-content: flex-end; }
.btn-icon {
  width: 40px; height: 40px;
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--rosa-escuro);
  transition: var(--trans);
  position: relative;
  border-radius: 0;
  font-size: 22px;
}
.btn-icon:hover { color: var(--rosa-deep); transform: translateY(-1px); }
.btn-icon [class*="ph-"] { font-size: 22px; }
.cart-badge {
  position: absolute;
  top: 4px; right: 0;
  background: var(--rosa-escuro);
  color: white;
  font-size: 10px;
  font-weight: 600;
  min-width: 18px; height: 18px;
  padding: 0 5px;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Inter', sans-serif;
}
.logo {
  font-family: 'Bodoni Moda', serif;
  font-size: 2.4rem;
  font-weight: 400;
  letter-spacing: 0.16em;
  color: #ffffff;
  text-transform: uppercase;
  text-align: center;
  white-space: nowrap;
  transition: var(--trans);
}
.logo:hover { color: rgba(255,255,255,0.8); }
.logo-img { display: inline-flex; align-items: center; justify-content: center; }
.logo-img img { height: 70px; width: auto; display: block; }

/* Nav abaixo do logo */
.header-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 36px;
  padding: 8px 32px 14px;
  border-top: 1px solid rgba(233,30,140,0.15);
}
.header-nav a {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--rosa-escuro);
  padding: 4px 0;
  border-bottom: 1px solid transparent;
  transition: var(--trans);
}
.header-nav a:hover, .header-nav a.active { color: var(--rosa-deep); border-bottom-color: var(--rosa-deep); }

.btn-menu { display: none; }
.btn-menu [class*="ph-"] { font-size: 24px; }

/* Search bar */
.search-bar {
  display: none;
  position: absolute;
  top: 100%; left: 0; right: 0;
  background: var(--branco);
  padding: 18px 24px;
  box-shadow: 0 8px 24px var(--sombra);
  z-index: 999;
  border-top: 1px solid var(--borda);
}
.search-bar.open { display: flex; gap: 8px; }
.search-bar input {
  flex: 1;
  padding: 12px 16px;
  border: 1px solid var(--borda);
  font-size: 14px;
  outline: none;
  transition: var(--trans);
  background: transparent;
}
.search-bar input:focus { border-color: var(--rosa-escuro); }

/* Mobile nav drawer */
.nav-drawer {
  position: fixed;
  top: 0; bottom: 0; left: -100%;
  width: min(320px, 100vw);
  height: auto;
  background: var(--branco);
  z-index: 2000;
  transition: left 0.35s cubic-bezier(0.4,0,0.2,1);
  overflow-y: auto;
  display: flex;
  flex-direction: column;
}
.nav-drawer.open { left: 0; }
.drawer-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 24px;
  background: #E91E8C;
  color: white;
}
.drawer-logo { font-family: 'Bodoni Moda', serif; font-size: 1.4rem; font-weight: 400; letter-spacing: 0.12em; text-transform: uppercase; display: inline-flex; }
.drawer-logo img { height: 40px; width: auto; display: block; }
.drawer-close { width: 36px; height: 36px; display: flex; align-items: center; justify-content: center; font-size: 20px; transition: var(--trans); }
.drawer-close:hover { color: var(--rosa-deep); }
.drawer-nav { padding: 24px; flex: 1; }
.drawer-nav a {
  display: flex; align-items: center; gap: 12px;
  padding: 16px 0;
  border-bottom: 1px solid var(--borda);
  font-size: 13px; font-weight: 500;
  color: var(--texto);
  letter-spacing: 0.08em; text-transform: uppercase;
  transition: var(--trans);
}
.drawer-nav a:hover { color: var(--rosa-escuro); padding-left: 6px; }
.drawer-nav a [class*="ph-"] { font-size: 18px; color: var(--rosa-escuro); }
.drawer-section-title { font-size: 10px; text-transform: uppercase; letter-spacing: 0.15em; color: var(--texto-suave); padding: 24px 0 4px; font-weight: 500; }

.overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.4);
  z-index: 1999;
  opacity: 0; pointer-events: none;
  transition: opacity 0.3s;
}
.overlay.open { opacity: 1; pointer-events: all; }

/* ── Buttons ─────────────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 8px; padding: 14px 32px;
  font-size: 12px; font-weight: 500;
  letter-spacing: 0.15em; text-transform: uppercase;
  transition: var(--trans); cursor: pointer;
  border: 1px solid transparent;
  font-family: 'Inter', sans-serif;
}
.btn-primary { background: var(--texto); color: var(--branco); border-color: var(--texto); }
.btn-cart-add { background: var(--rosa-escuro); color: var(--branco); border-color: var(--rosa-escuro); }
.btn-cart-add:hover { background: var(--rosa-deep); border-color: var(--rosa-deep); }
.btn-primary:hover { background: var(--rosa-deep); border-color: var(--rosa-deep); }
.btn-outline { background: transparent; border-color: var(--texto); color: var(--texto); }
.btn-outline:hover { background: var(--texto); color: var(--branco); }
.btn-ghost { background: transparent; color: var(--texto); }
.btn-ghost:hover { color: var(--rosa-deep); }
.btn-verde { background: var(--rosa-escuro); color: white; border-color: var(--rosa-escuro); }
.btn-verde:hover { background: var(--rosa-deep); border-color: var(--rosa-deep); }
.btn-whatsapp { background: #25D366; color: white; border-color: #25D366; }
.btn-whatsapp:hover { background: #1daa4f; border-color: #1daa4f; }
.btn-full { width: 100%; }
.btn-lg { padding: 17px 40px; font-size: 12px; }
.btn-sm { padding: 9px 20px; font-size: 11px; }
.btn [class*="ph-"] { font-size: 14px; }

/* ── Flash Messages ───────────────────────────────────────────────────────────── */
.flash-container { position: fixed; top: 20px; right: 20px; z-index: 3000; display: flex; flex-direction: column; gap: 8px; }
.flash {
  display: flex; align-items: center; gap: 12px;
  padding: 14px 20px; font-size: 13px; font-weight: 500;
  box-shadow: 0 4px 24px rgba(0,0,0,0.12);
  max-width: 360px; animation: slideIn 0.3s ease;
  background: white; border-left: 3px solid var(--rosa-escuro);
}
.flash [class*="ph-"] { font-size: 18px; color: var(--rosa-escuro); }
.flash-error { border-left-color: #E53E3E; }
.flash-error [class*="ph-"] { color: #E53E3E; }
@keyframes slideIn { from { opacity: 0; transform: translateX(100%); } to { opacity: 1; transform: translateX(0); } }

/* ── HERO / CAROUSEL ────────────────────────────────────────────────────────── */
/* ── Index Hero ──────────────────────────────────────────────────────────── */
.idx-hero {
  position: relative; overflow: hidden;
  aspect-ratio: 16 / 9;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(160deg, #f472b6 0%, #ec4899 55%, #db2777 100%);
}
.idx-slide {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; visibility: hidden;
  transition: opacity .8s ease, visibility .8s;
  pointer-events: none;
}
.idx-slide.is-active {
  opacity: 1; visibility: visible;
  pointer-events: auto;
}
.idx-slide-img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  display: block;
}
.idx-hero-bg {
  position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(ellipse 70% 60% at 50% 40%, rgba(255,255,255,.10) 0%, transparent 70%);
  animation: idx-pulse 6s ease-in-out infinite alternate;
}
@keyframes idx-pulse {
  from { opacity: .6; transform: scale(1); }
  to   { opacity: 1;  transform: scale(1.08); }
}
.idx-hero-lines {
  position: absolute; inset: 0; pointer-events: none;
}
.idx-hero-lines svg { width: 100%; height: 100%; }
.idx-line {
  fill: none; stroke: rgba(255,255,255,.12); stroke-width: 1.5;
  stroke-dasharray: 2000; stroke-dashoffset: 2000;
  animation: idx-draw 3s ease forwards;
}
.idx-line-2 { animation-delay: .4s; }
.idx-line-3 { animation-delay: .8s; }
@keyframes idx-draw {
  to { stroke-dashoffset: 0; }
}
.idx-hero-content {
  position: relative; z-index: 2;
  display: flex; flex-direction: column; align-items: center;
  text-align: center; padding: 40px 24px 90px;
  animation: idx-rise 1s cubic-bezier(0.16,1,0.3,1) both;
}
@keyframes idx-rise {
  from { opacity: 0; transform: translateY(32px); }
  to   { opacity: 1; transform: translateY(0); }
}
.idx-hero-logo {
  width: clamp(220px, 45vw, 500px);
  height: auto;
  filter: brightness(0) invert(1);
  margin-bottom: 28px;
}
.idx-hero-sub {
  font-family: 'Inter', sans-serif;
  font-size: clamp(11px, 1.4vw, 14px);
  font-weight: 300; letter-spacing: 0.45em;
  text-transform: uppercase; color: rgba(255,255,255,.75);
  margin-bottom: 40px;
  animation: idx-rise 1s .25s cubic-bezier(0.16,1,0.3,1) both;
}
.idx-hero-btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 15px 36px;
  border: 1.5px solid rgba(255,255,255,.6);
  color: #fff; font-family: 'Inter', sans-serif;
  font-size: 11px; font-weight: 500; letter-spacing: 0.3em;
  text-transform: uppercase; text-decoration: none;
  transition: background .3s, border-color .3s;
  animation: idx-rise 1s .45s cubic-bezier(0.16,1,0.3,1) both;
}
.idx-hero-btn:hover { background: rgba(255,255,255,.15); border-color: #fff; }
.idx-hero-stats {
  display: flex; align-items: center; gap: 32px;
  margin-top: 40px;
  animation: idx-rise 1s .6s cubic-bezier(0.16,1,0.3,1) both;
}
.idx-hero-stat {
  display: flex; flex-direction: column; align-items: center; gap: 4px;
}
.idx-hero-stat-num {
  font-family: 'Bodoni Moda', serif;
  font-size: clamp(1.1rem, 2.5vw, 1.6rem);
  font-weight: 500; color: #fff; letter-spacing: 0.06em;
}
.idx-hero-stat-label {
  font-family: 'Inter', sans-serif;
  font-size: 9px; font-weight: 400;
  letter-spacing: 0.35em; text-transform: uppercase;
  color: rgba(255,255,255,.6);
}
.idx-hero-stat-divider {
  width: 1px; height: 36px;
  background: rgba(255,255,255,.3);
}
.idx-hero-wave {
  position: absolute; bottom: -1px; left: 0; right: 0;
  line-height: 0; z-index: 1; overflow: hidden;
}
.idx-hero-wave svg { width: 100%; height: 60px; display: block; }

.idx-hero-dots {
  position: absolute; bottom: 80px; left: 50%; transform: translateX(-50%);
  z-index: 2; display: flex; gap: 10px; align-items: center;
}
.idx-hero-dots span {
  display: block; border-radius: 50%; background: rgba(255,255,255,0.5);
  animation: idx-dot-pulse 1.8s ease-in-out infinite;
}
.idx-hero-dots span:nth-child(1) { width: 6px; height: 6px; animation-delay: 0s; }
.idx-hero-dots span:nth-child(2) { width: 8px; height: 8px; animation-delay: .2s; }
.idx-hero-dots span:nth-child(3) { width: 10px; height: 10px; animation-delay: .4s; }
.idx-hero-dots span:nth-child(4) { width: 8px; height: 8px; animation-delay: .6s; }
.idx-hero-dots span:nth-child(5) { width: 6px; height: 6px; animation-delay: .8s; }
@keyframes idx-dot-pulse {
  0%, 100% { opacity: 0.35; transform: scale(1); }
  50%       { opacity: 1;    transform: scale(1.3); }
}

.idx-hero-scroll {
  position: absolute; bottom: 72px; left: 50%; transform: translateX(-50%);
  z-index: 2;
}
.idx-hero-scroll span {
  display: block; width: 1px; height: 60px;
  background: linear-gradient(to bottom, transparent, rgba(255,255,255,.6));
  margin: 0 auto;
  animation: idx-scroll 1.8s ease-in-out infinite;
}
@keyframes idx-scroll {
  0%   { transform: scaleY(0); transform-origin: top; opacity: 0; }
  40%  { transform: scaleY(1); transform-origin: top; opacity: 1; }
  60%  { transform: scaleY(1); transform-origin: bottom; opacity: 1; }
  100% { transform: scaleY(0); transform-origin: bottom; opacity: 0; }
}

.hero {
  position: relative;
  min-height: min(60vh, 520px);
  background: linear-gradient(180deg, #FFB3D9 0%, #FF4DB8 40%, #E91E8C 100%);
  overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}

/* Orbes */
.hero-orb {
  position: absolute; border-radius: 50%;
  pointer-events: none; will-change: transform; z-index: 1;
}
.hero-orb-1 {
  width: 65%; height: 70%; top: -25%; left: -15%;
  background: radial-gradient(circle at 40% 40%, rgba(255,204,214,0.55) 0%, rgba(247,168,198,0.20) 45%, transparent 70%);
  filter: blur(72px); animation: orb1 26s ease-in-out infinite alternate;
}
.hero-orb-2 {
  width: 55%; height: 60%; bottom: -20%; right: -10%;
  background: radial-gradient(circle at 60% 60%, rgba(217,17,128,0.20) 0%, rgba(247,168,198,0.10) 45%, transparent 70%);
  filter: blur(88px); animation: orb2 22s ease-in-out infinite alternate;
}
.hero-orb-3 {
  width: 40%; height: 50%; top: 20%; right: 5%;
  background: radial-gradient(circle at 50% 50%, rgba(255,230,240,0.60) 0%, rgba(255,204,214,0.20) 50%, transparent 70%);
  filter: blur(60px); animation: orb3 30s ease-in-out infinite alternate;
}
.hero-orb-4 {
  width: 30%; height: 35%; bottom: 10%; left: 20%;
  background: radial-gradient(circle at 50% 50%, rgba(247,168,198,0.40) 0%, transparent 65%);
  filter: blur(50px); animation: orb4 18s ease-in-out infinite alternate;
}
@keyframes orb1 { from { transform: translate(0,0) scale(1); } to { transform: translate(12%,18%) scale(1.18); } }
@keyframes orb2 { from { transform: translate(0,0) scale(1); } to { transform: translate(-10%,-14%) scale(0.88); } }
@keyframes orb3 { from { transform: translate(0,0) scale(1); } to { transform: translate(-8%,16%) scale(1.12); } }
@keyframes orb4 { from { transform: translate(0,0) scale(1); } to { transform: translate(14%,-10%) scale(1.20); } }

/* Linhas SVG */
.hero-lines { position: absolute; inset: 0; pointer-events: none; z-index: 2; }
.hero-lines svg { width: 100%; height: 100%; }
.hero-lines .line {
  fill: none; stroke: rgba(196,99,122,0.14); stroke-width: 0.6; stroke-linecap: round;
  stroke-dasharray: 1400; stroke-dashoffset: 1400;
  animation: drawLine 10s ease-in-out infinite alternate;
}
.hero-lines .line-2 { stroke: rgba(217,17,128,0.10); stroke-width: 0.5; animation-delay: 2s; }
.hero-lines .line-3 { stroke: rgba(196,99,122,0.09); stroke-width: 0.4; animation-delay: 4s; }
.hero-lines .line-4 { stroke: rgba(217,17,128,0.10); stroke-width: 0.5; animation-delay: 6s; }
@keyframes drawLine {
  0% { stroke-dashoffset: 1400; opacity: 0; } 15% { opacity: 1; } 85% { opacity: 1; }
  100% { stroke-dashoffset: -1400; opacity: 0; }
}

/* ── Carousel ─────────────────────────────────────────────────────────────── */
.carousel {
  position: relative; width: 100%;
  overflow: hidden;
}
.carousel-track {
  display: flex; width: 100%;
  transition: transform 0.65s cubic-bezier(0.77,0,0.18,1);
  will-change: transform;
  align-items: stretch;
}
.carousel-slide {
  min-width: 100%; position: relative;
  display: flex; align-items: center; justify-content: center;
  min-height: calc(100svh - var(--header-h));
}

/* Slide logo full screen */
.carousel-slide-logo {
  background: #ffffff;
  position: relative;
}
.carousel-logo-full {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
  /* qualquer espaço residual some pois o fundo #fff = fundo da logo */
}
.carousel-logo-overlay {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 60px;
  background: linear-gradient(to top, rgba(255,255,255,0.65) 0%, transparent 40%);
}
.carousel-logo-cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}

.carousel-btn {
  position: absolute; top: 50%; transform: translateY(-50%);
  z-index: 10; width: 48px; height: 48px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,0.7); border: 1px solid var(--borda);
  color: var(--texto); font-size: 22px;
  transition: var(--trans); backdrop-filter: blur(4px);
}
.carousel-btn:hover { background: var(--texto); color: white; border-color: var(--texto); }
.carousel-btn-prev { left: 20px; }
.carousel-btn-next { right: 20px; }

.carousel-nav {
  position: absolute; bottom: 24px; left: 50%; transform: translateX(-50%);
  z-index: 10; display: flex; align-items: center; gap: 8px;
}
.carousel-dot {
  width: 8px; height: 8px; border-radius: 0;
  background: rgba(26,26,26,0.2); cursor: pointer;
  transition: var(--trans);
}
.carousel-dot.active { background: var(--texto); width: 24px; }

/* ── Slide Banner Top Fitt ───────────────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Dancing+Script:wght@600;700&display=swap');

.cs-banner-topfitt {
  background: #fff;
  overflow: hidden;
  position: relative;
}

/* Stripe corner blocks */
.cs-stripe {
  position: absolute;
  background: repeating-linear-gradient(
    -50deg,
    #FF2882 0px, #FF2882 10px,
    transparent 10px, transparent 24px
  );
  border-radius: 4px;
}
.cs-stripe-tl { width: 160px; height: 160px; top: -35px; left: -35px; opacity: .85; }
.cs-stripe-br { width: 140px; height: 140px; bottom: -30px; right: -30px; opacity: .85; }
.cs-stripe-tr { width: 100px; height: 100px; top: -20px; right: 20%; opacity: .6; }
.cs-stripe-bl { width: 85px;  height: 85px;  bottom: -18px; left: 22%; opacity: .55; }

/* Radial background glow */
.cs-bg-glow {
  position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(ellipse 55% 75% at 65% 50%, rgba(255,40,130,.07) 0%, transparent 60%),
    radial-gradient(ellipse 30% 45% at 14% 50%, rgba(255,40,130,.05) 0%, transparent 60%);
}

/* Particles canvas */
.cs-particles {
  position: absolute; inset: 0; width: 100%; height: 100%; pointer-events: none;
}

/* Frame lines */
.cs-hline {
  position: absolute; left: 5%; right: 5%; height: 1.5px;
  background: linear-gradient(90deg, transparent, rgba(255,40,130,.35) 12%, rgba(255,40,130,.35) 88%, transparent);
}
.cs-hline-top    { top: 8%; }
.cs-hline-bottom { bottom: 8%; }
.cs-divider {
  position: absolute; left: 50%; top: 10%; bottom: 10%; width: 1px;
  background: linear-gradient(180deg, transparent 0%, rgba(255,40,130,.2) 20%, rgba(255,40,130,.2) 80%, transparent);
}
.cs-corner {
  position: absolute; width: 6px; height: 6px;
  border-radius: 50%; background: #FF2882;
}
.cs-c-tl { top: calc(8% - 3px);    left: calc(5% - 3px); }
.cs-c-tr { top: calc(8% - 3px);    right: calc(5% - 3px); }
.cs-c-bl { bottom: calc(8% - 3px); left: calc(5% - 3px); }
.cs-c-br { bottom: calc(8% - 3px); right: calc(5% - 3px); }

/* Floating × marks */
.cs-deco { position: absolute; color: #FF2882; pointer-events: none; }
.cs-x {
  font-size: 28px; font-weight: 700; opacity: .5;
  animation: csDeco 5s ease-in-out infinite alternate;
}
.cs-x:nth-child(2) { animation-delay: -1s; }
.cs-x:nth-child(3) { animation-delay: -2.5s; }
.cs-x:nth-child(4) { animation-delay: -3.5s; }
.cs-x:nth-child(5) { animation-delay: -.8s; }
@keyframes csDeco {
  from { transform: translateY(0) rotate(0deg); }
  to   { transform: translateY(-8px) rotate(12deg); }
}

/* Wave SVGs */
.cs-wave {
  position: absolute;
  fill: none; stroke: #FF2882; stroke-width: 2.5; stroke-linecap: round;
  opacity: .4;
  animation: csWave 4s ease-in-out infinite alternate;
}
@keyframes csWave { from { opacity: .25; } to { opacity: .55; } }

/* Dot groups */
.cs-dots {
  position: absolute; display: flex; gap: 6px; opacity: .5;
}
.cs-dot {
  display: block; width: 8px; height: 8px; border-radius: 50%;
  background: #FF2882;
  animation: csDeco 4s ease-in-out infinite alternate;
}

/* Ring around logo */
.cs-logo-ring { display: none; }

/* Logo */
.cs-logo-wrap {
  position: absolute;
  right: 5%; top: 50%; transform: translateY(-50%);
  width: min(46%, 520px);
  display: flex; align-items: center; justify-content: center;
  filter: drop-shadow(0 4px 32px rgba(255,40,130,.15));
  animation: csLogoFloat 8s ease-in-out infinite;
}
.cs-logo-img { width: 100%; height: auto; object-fit: contain; }
@keyframes csLogoFloat {
  0%,100% { transform: translateY(-50%) scale(1); }
  50%      { transform: translateY(calc(-50% - 8px)) scale(1.01); }
}

/* Left text */
.cs-left-content {
  position: absolute;
  left: 8%; top: 50%; transform: translateY(-50%);
  display: flex; flex-direction: column; align-items: flex-start;
  z-index: 2; max-width: 44%;
}
.cs-eyebrow {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(9px, 1.1vw, 13px); font-weight: 600;
  letter-spacing: .55em; color: #FF2882;
  text-transform: uppercase; margin-bottom: 16px;
}
.cs-headline {
  font-family: 'Bodoni Moda', Georgia, serif;
  font-size: clamp(3.2rem, 8.5vw, 8rem); font-weight: 300;
  line-height: .92; color: #E91E8C;
  letter-spacing: 0.02em;
  text-shadow: 1px 2px 0 rgba(233,30,140,.08);
}
.cs-accent-line {
  width: 64px; height: 3px;
  background: linear-gradient(90deg, #FF2882, rgba(255,40,130,.15));
  border-radius: 2px; margin: 18px 0 14px;
}
.cs-tagline {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(8px, 1vw, 13px); font-weight: 300;
  letter-spacing: .55em; color: #999;
  text-transform: uppercase; margin-bottom: 28px;
}
.cs-actions { display: flex; gap: 12px; flex-wrap: wrap; }

/* Bottom label */
.cs-bottom-label {
  position: absolute; bottom: 11%; right: 8%;
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(9px, 1vw, 12px); font-weight: 500;
  letter-spacing: .4em; color: rgba(255,40,130,.5);
  text-transform: uppercase; z-index: 2;
}

/* Slide 1 – logo */
.slide-logo-content {
  position: relative; z-index: 2;
  display: flex; flex-direction: column; align-items: center;
  text-align: center; padding: 60px 24px;
}
.slide-logo-pdf-wrap {
  width: min(420px, 80vw);
  height: min(420px, 80vw);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 12px;
}
.slide-logo-pdf-wrap embed,
.slide-logo-pdf-wrap object {
  width: 100%; height: 100%; border: none; background: transparent; pointer-events: none;
}
.slide-logo-text-fallback {
  font-family: 'Bodoni Moda', serif;
  font-size: clamp(5rem, 16vw, 10rem);
  font-weight: 300; line-height: 0.9;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--texto);
}
.slide-logo-sub {
  font-size: 11px; letter-spacing: 0.45em; text-transform: uppercase;
  color: var(--texto-suave); margin-bottom: 32px; font-weight: 300;
}

/* Outros slides */
.slide-content {
  position: relative; z-index: 2; max-width: 700px;
  padding: 60px 24px; text-align: center;
}
.hero-eyebrow {
  font-size: 11px; letter-spacing: 0.4em; text-transform: uppercase;
  color: var(--rosa-deep); margin-bottom: 24px; font-weight: 500;
  animation: fadeUp 1s 0.2s both;
}
.hero-title {
  font-family: 'Bodoni Moda', serif;
  font-size: clamp(2.2rem, 6vw, 4.5rem);
  font-weight: 300; line-height: 1; letter-spacing: 0.06em;
  text-transform: uppercase; color: var(--texto); margin-bottom: 8px;
  animation: fadeUp 1s 0.4s both;
}
.hero-script {
  display: block;
  font-family: 'Bodoni Moda', serif;
  font-style: italic; font-weight: 400;
  font-size: clamp(4.5rem, 14vw, 10rem);
  line-height: 0.9; letter-spacing: -0.01em;
  background: linear-gradient(115deg,
    #E91E8C 0%, #C2185B 15%, #E91E8C 30%, #FFB3D9 42%,
    #FFFFFF 50%, #FFB3D9 58%, #E91E8C 70%, #C2185B 85%, #E91E8C 100%);
  background-size: 300% auto;
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  filter: drop-shadow(0 4px 18px rgba(217,17,128,0.30));
  animation: shimmerSweep 8.5s ease-in-out infinite;
}
@keyframes shimmerSweep {
  0% { background-position: 100% center; }
  29% { background-position: 0% center; }
  100% { background-position: 0% center; }
}
.hero-desc {
  max-width: 480px; margin: 24px auto 36px;
  font-size: 14px; color: var(--texto-suave);
  letter-spacing: 0.04em; line-height: 1.8;
  animation: fadeUp 1s 0.8s both;
}
.hero-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; animation: fadeUp 1s 1s both; }
@keyframes fadeUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }

/* Logo hero mark (para splash animado) */
.hero-logo-wrap { display: flex; justify-content: center; margin: 12px 0 32px; }
.hero-mark {
  position: relative; width: min(44vw, 460px); max-width: 88vw;
  aspect-ratio: 1; filter: drop-shadow(0 22px 50px rgba(27,94,32,0.12));
}
.hero-mark .mark-stack { position: relative; width: 100%; height: 100%; }
.hero-mark .logo-mark {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: contain; pointer-events: none; user-select: none;
}
.anim-shimmer .logo-mark {
  opacity: 0;
  animation: shimmerMarkIn 1.6s 0.2s cubic-bezier(0.2,0.6,0.2,1) forwards,
             markFloat 9s 1.8s ease-in-out infinite;
}
@keyframes shimmerMarkIn { 0% { opacity:0; transform:scale(1.025); filter:blur(6px); } 100% { opacity:1; transform:scale(1); filter:blur(0); } }
@keyframes markFloat { 0%,100% { transform:scale(1) translateY(0); } 50% { transform:scale(1.012) translateY(-6px); } }
.anim-shimmer .halo {
  position: absolute; inset: -22%;
  background: radial-gradient(ellipse at 50% 48%, rgba(255,200,220,0.55) 0%, rgba(247,168,198,0.28) 26%, rgba(247,168,198,0.08) 48%, transparent 65%);
  filter: blur(6px); animation: haloPulse 7s ease-in-out infinite;
  pointer-events: none; z-index: 0;
}
@keyframes haloPulse { 0%,100% { opacity:0.55; transform:scale(1); } 50% { opacity:1; transform:scale(1.06); } }
.dust { position: absolute; inset: -10% -10%; pointer-events: none; z-index: 3; }
.dust i {
  position: absolute; width: 3px; height: 3px; border-radius: 50%;
  background: radial-gradient(circle, rgba(255,245,225,0.95) 0%, rgba(255,245,225,0) 70%);
  filter: blur(0.4px); opacity: 0; animation: dustRise 9s linear infinite;
}
@keyframes dustRise {
  0% { opacity:0; transform:translate3d(0,40px,0) scale(0.6); }
  10% { opacity:0.9; } 85% { opacity:0.75; }
  100% { opacity:0; transform:translate3d(var(--dx,0px),-380px,0) scale(1); }
}

/* ── Category Strip ──────────────────────────────────────────────────────────── */
/* ── Category tiles ──────────────────────────────────────────────────────── */
/* ── Category circles ────────────────────────────────────────────────────── */
.cat-circles-wrap {
  position: relative; z-index: 10;
  padding: 36px 0 48px;
  background: var(--branco);
  overflow: hidden;
}
.cat-circles-wrap + .section { padding-top: 28px; }
.cat-circles {
  display: flex; justify-content: center; flex-wrap: wrap;
  gap: 32px; padding: 0 24px;
  max-width: 1100px; margin: 0 auto;
}
@media (max-width: 768px) {
  .idx-hero-content { padding: 12px 16px 36px; }
  .idx-hero-logo { width: clamp(120px, 38vw, 170px); margin-bottom: 12px; }
  .idx-hero-btn { padding: 8px 18px; font-size: 9px; gap: 6px; }
  .idx-hero-wave { overflow: hidden; }
  .idx-hero-wave svg { transform: scaleX(1.6); transform-origin: center; height: 26px; }
  .cat-circles-wrap { overflow-x: auto; overflow-y: hidden; padding: 24px 0 12px; }
  .cat-circles-wrap::-webkit-scrollbar { display: none; }
  .cat-circles { flex-wrap: nowrap; justify-content: flex-start; max-width: none; padding: 0 20px; gap: 16px; }
  .cat-circles-wrap + .section { padding-top: 12px; }
  .section { padding: 36px 0; }
  .section-header { margin-bottom: 28px; }
}
.cat-circle {
  display: flex; flex-direction: column; align-items: center;
  gap: 12px; text-decoration: none;
}
.cat-circle-img {
  width: 110px; height: 110px; border-radius: 50%;
  overflow: hidden; border: 3px solid #fff;
  transition: transform 0.3s, box-shadow 0.3s;
  background: var(--rosa-claro);
}
.cat-circle-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.5s;
}
.cat-circle:hover .cat-circle-img {
  transform: translateY(-4px);
  box-shadow: 0 8px 28px rgba(233,30,140,.30);
}
.cat-circle:hover .cat-circle-img img { transform: scale(1.08); }
.cat-circle-placeholder {
  width: 100%; height: 100%;
  background: linear-gradient(135deg, var(--rosa-claro), var(--rosa-medio));
}
.cat-circle-name {
  font-family: 'Inter', sans-serif;
  font-size: 11px; font-weight: 500;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--texto); text-align: center;
  transition: color 0.3s;
}
.cat-circle:hover .cat-circle-name { color: var(--rosa-escuro); }
@media (max-width: 768px) {
  .cat-circle { gap: 8px; }
  .cat-circle-img { width: 82px; height: 82px; }
  .cat-circle-name { font-size: 10px; }
}

/* ── Category tiles ──────────────────────────────────────────────────────── */
.cat-section { background: var(--branco); padding: 56px 0 72px; }

.cat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
  gap: 16px;
}

.cat-tile {
  position: relative;
  display: block;
  text-decoration: none;
  overflow: hidden;
  border-radius: 4px;
  aspect-ratio: 3 / 4;
  background: #111;
}

.cat-tile img,
.cat-tile-placeholder {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94), filter 0.7s;
  filter: brightness(0.72);
}
.cat-tile-placeholder {
  background: linear-gradient(135deg, #c2185b 0%, #880e4f 100%);
}
.cat-tile:hover img { transform: scale(1.07); filter: brightness(0.55); }

.cat-tile-info {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  padding: 28px 20px;
  background: linear-gradient(to top, rgba(0,0,0,0.55) 0%, transparent 55%);
  transition: background 0.4s;
}
.cat-tile:hover .cat-tile-info {
  background: linear-gradient(to top, rgba(180,0,80,0.6) 0%, transparent 60%);
}

.cat-tile-name {
  font-family: 'Bodoni Moda', serif;
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  font-weight: 500;
  color: #fff;
  letter-spacing: 0.08em;
  text-align: center;
  line-height: 1.2;
  margin-bottom: 10px;
}

.cat-tile-cta {
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  display: flex;
  align-items: center;
  gap: 6px;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.3s, transform 0.3s;
}
.cat-tile:hover .cat-tile-cta { opacity: 1; transform: translateY(0); }

@media (max-width: 640px) {
  .cat-grid { grid-template-columns: repeat(2, 1fr); padding: 0 16px; gap: 10px; }
}

.category-strip { background: var(--branco); padding: 28px 0; border-bottom: 1px solid var(--borda); }
.category-scroll {
  display: flex; gap: 32px; overflow-x: auto;
  padding: 4px 24px; scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
  justify-content: center; flex-wrap: wrap;
}
@media (max-width: 768px) {
  .category-scroll { flex-wrap: nowrap; justify-content: flex-start; gap: 22px; padding: 4px 16px; }
}
.category-scroll::-webkit-scrollbar { display: none; }
.cat-pill {
  display: inline-flex; align-items: center; gap: 8px; padding: 8px 4px;
  font-size: 11px; font-weight: 500; color: var(--texto); white-space: nowrap;
  transition: var(--trans); text-transform: uppercase; letter-spacing: 0.18em;
  cursor: pointer; border-bottom: 1px solid transparent;
}
.cat-pill:hover, .cat-pill.active { color: var(--rosa-deep); border-bottom-color: var(--rosa-escuro); }

/* ── Product Grid ───────────────────────────────────────────────────────────── */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 32px 24px;
}
.product-card {
  background: var(--branco); overflow: hidden; transition: var(--trans);
  position: relative; display: flex; flex-direction: column; border: 0;
}
.product-card:hover .product-card-image img { transform: scale(1.04); }
.product-card-image {
  position: relative; aspect-ratio: 3/4; overflow: hidden; background: var(--fundo);
}
.product-card-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.product-card-image .img-hover { position: absolute; inset: 0; opacity: 0; transition: opacity 0.55s ease, transform 0.6s ease; }
.product-card-image:hover .img-hover { opacity: 1; }
.product-card-badge {
  position: absolute; top: 12px; left: 12px;
  padding: 5px 12px; background: var(--branco); color: var(--texto);
  font-size: 10px; font-weight: 500; letter-spacing: 0.15em; text-transform: uppercase;
}
.product-card-badge.novo { background: var(--texto); color: white; }
.product-card-actions {
  position: absolute; bottom: 0; left: 0; right: 0;
  transform: translateY(100%); transition: var(--trans);
}
.product-card:hover .product-card-actions { transform: translateY(0); }
.product-card-actions .btn { width: 100%; padding: 14px; background: #E91E8C; color: white; border-radius: 0; font-size: 11px; letter-spacing: 0.2em; }
.product-card-info { padding: 16px 4px 0; flex: 1; display: flex; flex-direction: column; }
.product-card-cat { font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--rosa-escuro); font-weight: 600; margin-bottom: 4px; }
.product-card-name { font-size: 12px; font-weight: 500; color: var(--rosa-escuro); letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 8px; }
.product-card-price { font-size: 14px; font-weight: 500; color: var(--rosa-escuro); margin-top: auto; }
.product-card-sizes { display: flex; gap: 5px; margin-top: 8px; flex-wrap: wrap; }
.size-tag {
  padding: 2px 8px; border: 1px solid var(--borda);
  font-size: 10px; font-weight: 500; color: var(--texto-suave); letter-spacing: 0.05em;
}

/* ── Produto Detail ──────────────────────────────────────────────────────────── */
.product-detail { padding-top: 20px; padding-bottom: 80px; }
.product-detail-grid {
  display: grid; grid-template-columns: 1.1fr 1fr; gap: 60px; align-items: start;
}
@media (max-width: 768px) { .product-detail-grid { grid-template-columns: 1fr; gap: 32px; } }
.product-gallery { position: sticky; top: calc(var(--header-h) + 16px); }
@media (max-width: 768px) { .product-gallery { position: static; } }
.product-main-img { width: 100%; aspect-ratio: 3/4; object-fit: cover; background: var(--fundo); cursor: zoom-in; }
.product-thumbs { display: flex; gap: 8px; margin-top: 10px; overflow-x: auto; scrollbar-width: none; }
.product-thumb {
  flex: 0 0 72px; width: 72px; height: 90px; object-fit: cover; background: var(--fundo);
  cursor: pointer; border: 1px solid transparent; transition: border-color var(--trans);
}
.product-thumb.active, .product-thumb:hover { border-color: var(--texto); }
.product-cat-tag { font-size: 11px; text-transform: uppercase; letter-spacing: 0.2em; color: var(--texto-suave); margin-bottom: 12px; font-weight: 500; }
.product-name { font-size: clamp(1.6rem, 3.5vw, 2.2rem); font-weight: 400; margin-bottom: 12px; letter-spacing: 0.06em; text-transform: uppercase; font-family: 'Bodoni Moda', serif; }
.product-price { font-size: 1.6rem; font-weight: 500; color: var(--texto); margin-bottom: 24px; }
.product-sizes-label { font-size: 11px; font-weight: 500; text-transform: uppercase; letter-spacing: 0.2em; margin-bottom: 12px; color: var(--texto); }
.size-selector { display: flex; gap: 6px; flex-wrap: wrap; margin-bottom: 24px; }
.size-btn {
  min-width: 44px; padding: 10px 16px;
  border: 1px solid var(--borda); font-size: 12px; font-weight: 500;
  letter-spacing: 0.1em; cursor: pointer; transition: var(--trans); background: white;
}
.size-btn:hover { border-color: var(--texto); }
.size-btn.selected { border-color: var(--texto); background: var(--texto); color: white; }
.product-desc { margin-top: 24px; padding-top: 24px; border-top: 1px solid var(--borda); font-size: 13px; color: var(--texto-suave); line-height: 1.8; letter-spacing: 0.02em; }
.product-info-list { display: flex; flex-direction: column; gap: 12px; margin-top: 24px; padding-top: 24px; border-top: 1px solid var(--borda); }
.product-info-list div { display: flex; align-items: center; gap: 10px; font-size: 12px; color: var(--texto-suave); letter-spacing: 0.04em; }
.product-info-list [class*="ph-"] { font-size: 18px; color: var(--rosa-escuro); }

/* ── Cart Sidebar ────────────────────────────────────────────────────────────── */
.cart-sidebar {
  position: fixed; top: 0; bottom: 0; right: -440px;
  width: min(440px, 86vw); height: auto;
  background: var(--branco); z-index: 2000;
  display: flex; flex-direction: column;
  box-shadow: -8px 0 60px rgba(0,0,0,0.12);
  transition: right 0.4s cubic-bezier(0.4,0,0.2,1);
}
.cart-sidebar.open { right: 0; }
.cart-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 24px; background: #E91E8C; color: white;
}
.cart-header h3 { font-family: 'Bodoni Moda', serif; font-size: 1.4rem; font-weight: 400; letter-spacing: 0.12em; text-transform: uppercase; color: #fff; }
.cart-items { flex: 1; overflow-y: auto; padding: 20px 24px; }
.cart-item { display: flex; gap: 14px; padding: 18px 0; border-bottom: 1px solid var(--borda); }
.cart-item-img { width: 80px; height: 100px; overflow: hidden; flex-shrink: 0; background: var(--fundo); }
.cart-item-img img { width: 100%; height: 100%; object-fit: cover; }
.cart-item-info { flex: 1; }
.cart-item-name { font-size: 12px; font-weight: 500; margin-bottom: 4px; letter-spacing: 0.08em; text-transform: uppercase; }
.cart-item-variant { font-size: 11px; color: var(--texto-suave); margin-bottom: 8px; }
.cart-item-price { font-size: 14px; font-weight: 500; }
.cart-item-remove { margin-left: auto; color: var(--texto-suave); font-size: 18px; transition: var(--trans); align-self: flex-start; }
.cart-item-remove:hover { color: #E53E3E; }
.cart-empty { text-align: center; padding: 80px 20px; color: var(--texto-suave); }
.cart-empty [class*="ph-"] { font-size: 56px; color: var(--rosa-medio); margin-bottom: 16px; display: block; }
.cart-empty p { font-size: 13px; margin-bottom: 20px; letter-spacing: 0.06em; text-transform: uppercase; }
.cart-footer { padding: 20px 24px; padding-bottom: calc(20px + env(safe-area-inset-bottom)); border-top: 1px solid var(--borda); background: var(--branco); }
.cart-total-row { display: flex; justify-content: space-between; align-items: center; margin-bottom: 16px; }
.cart-total-row .label { font-size: 11px; color: var(--texto-suave); text-transform: uppercase; letter-spacing: 0.2em; }
.cart-total-row .value { font-size: 20px; font-weight: 500; color: var(--texto); }

/* ── Carrinho Page ───────────────────────────────────────────────────────────── */
.cart-page { padding-top: 20px; padding-bottom: 80px; }
.cart-page-title { font-family: 'Bodoni Moda', serif; font-size: clamp(1.8rem, 4vw, 2.6rem); font-weight: 400; letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 40px; }
.cart-page-grid { display: grid; grid-template-columns: 1fr 380px; gap: 48px; align-items: start; }
@media (max-width: 900px) { .cart-page-grid { grid-template-columns: 1fr; } }

.cart-page-items { background: var(--branco); border: 1px solid var(--borda); }
.cart-page-item { display: flex; gap: 20px; padding: 22px; border-bottom: 1px solid var(--borda); align-items: center; }
.cart-page-item:last-child { border-bottom: none; }
.cart-page-item-img { width: 90px; height: 110px; overflow: hidden; flex-shrink: 0; background: var(--fundo); }
.cart-page-item-img img { width: 100%; height: 100%; object-fit: cover; }
.cart-page-item-name { font-size: 13px; font-weight: 500; margin-bottom: 4px; letter-spacing: 0.1em; text-transform: uppercase; }
.cart-page-item-meta { font-size: 12px; color: var(--texto-suave); margin-bottom: 14px; }
.cart-page-item-controls { display: flex; align-items: center; gap: 16px; }
.qty-ctrl { display: inline-flex; align-items: center; border: 1px solid var(--borda); }
.qty-ctrl button { width: 34px; height: 38px; display: flex; align-items: center; justify-content: center; font-size: 16px; transition: var(--trans); background: white; }
.qty-ctrl button:hover { background: var(--texto); color: white; }
.qty-ctrl span { width: 40px; height: 38px; display: flex; align-items: center; justify-content: center; font-size: 13px; font-weight: 500; border-left: 1px solid var(--borda); border-right: 1px solid var(--borda); }
.cart-page-item-price { font-size: 16px; font-weight: 500; color: var(--texto); margin-left: auto; }
.cart-page-item-remove { color: var(--texto-suave); font-size: 20px; transition: var(--trans); }
.cart-page-item-remove:hover { color: #E53E3E; }

.cart-summary { background: var(--branco); border: 1px solid var(--borda); padding: 28px; position: sticky; top: calc(var(--header-h) + 16px); }
.cart-summary h3 { font-family: 'Bodoni Moda', serif; font-size: 1.3rem; margin-bottom: 24px; padding-bottom: 16px; border-bottom: 1px solid var(--borda); font-weight: 400; letter-spacing: 0.12em; text-transform: uppercase; }
.summary-row { display: flex; justify-content: space-between; margin-bottom: 10px; font-size: 13px; letter-spacing: 0.02em; color: var(--texto-suave); }
.summary-row.total { font-size: 16px; font-weight: 500; color: var(--texto); border-top: 1px solid var(--borda); padding-top: 16px; margin-top: 8px; text-transform: uppercase; letter-spacing: 0.1em; }
.summary-row.total .val { color: var(--texto); }

/* Formulário do cliente */
.customer-form { margin-top: 24px; border-top: 1px solid var(--borda); padding-top: 24px; }
.customer-form h4 { font-size: 10px; font-weight: 500; text-transform: uppercase; letter-spacing: 0.2em; margin-bottom: 16px; color: var(--texto-suave); }
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 14px; }
.form-label { font-size: 10px; font-weight: 500; text-transform: uppercase; letter-spacing: 0.15em; color: var(--texto-suave); }
.form-control {
  padding: 12px 14px; border: 1px solid var(--borda);
  font-size: 13px; outline: none; transition: var(--trans);
  background: var(--branco); color: var(--texto);
}
.form-control:focus { border-color: var(--texto); }
textarea.form-control { min-height: 80px; resize: vertical; }

/* ── Banner meio ────────────────────────────────────────────────────────────── */
.banner-fitness {
  background: linear-gradient(180deg, var(--rosa-claro), var(--rosa-medio));

  padding: 80px 0; text-align: center; position: relative; overflow: hidden;
  border-top: 1px solid var(--borda); border-bottom: 1px solid var(--borda);
}
.banner-fitness .container { position: relative; z-index: 2; }
.banner-fitness-title {
  font-family: 'Bodoni Moda', serif;
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 300; color: var(--texto);
  letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 20px;
}

/* ── Diferenciais ─────────────────────────────────────────────────────────────── */
.features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 40px; text-align: center; }

/* ── Vantagens (abaixo do hero) ──────────────────────────────────────────── */
.benefits-bar { background: var(--branco); padding: 26px 0; }
.benefits-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.benefit-item { display: flex; align-items: center; justify-content: center; gap: 12px; }
.benefit-item [class*="ph-"] { font-size: 30px; color: var(--rosa-deep); flex-shrink: 0; }
.benefit-item strong { display: block; font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase; font-weight: 600; color: var(--rosa-deep); }
.benefit-item span { display: block; font-size: 11px; color: var(--rosa-deep); opacity: 0.85; letter-spacing: 0.03em; }
@media (max-width: 768px) {
  .benefits-bar { padding: 18px 0; }
  .benefits-grid { gap: 8px; }
  .benefit-item { flex-direction: column; text-align: center; gap: 6px; }
  .benefit-item [class*="ph-"] { font-size: 22px; }
  .benefit-item strong { font-size: 9px; letter-spacing: 0.06em; }
  .benefit-item span { font-size: 8.5px; }
}
.feature-icon { font-size: 38px; color: var(--rosa-escuro); display: block; margin-bottom: 14px; }
.feature-title { display: block; margin-bottom: 6px; font-size: 12px; letter-spacing: 0.15em; text-transform: uppercase; font-weight: 500; }
.feature-desc { font-size: 12px; color: var(--texto-suave); letter-spacing: 0.04em; }

/* ── Footer ──────────────────────────────────────────────────────────────────── */
.footer { background: var(--branco); color: var(--texto-suave); padding: 72px 0 32px; border-top: 1px solid var(--borda); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 56px; margin-bottom: 48px; }
.footer-logo { display: inline-block; margin-bottom: 16px; }
.footer-logo img { height: 64px; width: auto; display: block; }
.footer-brand p { font-size: 13px; color: var(--texto-suave); line-height: 1.8; max-width: 320px; letter-spacing: 0.04em; }
.footer-social { display: flex; gap: 12px; margin-top: 24px; }
.social-btn { width: 38px; height: 38px; background: var(--fundo); border: 1px solid var(--borda); display: flex; align-items: center; justify-content: center; font-size: 16px; transition: var(--trans); color: var(--texto-suave); }
.social-btn:hover { background: var(--rosa-escuro); color: white; border-color: var(--rosa-escuro); transform: translateY(-2px); }
.footer-col h4 { font-size: 11px; font-weight: 500; text-transform: uppercase; letter-spacing: 0.2em; color: var(--texto); margin-bottom: 20px; }
.footer-col a { display: block; font-size: 12px; color: var(--texto-suave); padding: 5px 0; transition: var(--trans); letter-spacing: 0.04em; }
.footer-col a:hover { color: var(--rosa-escuro); }
.footer-bottom { border-top: 1px solid var(--borda); padding-top: 24px; display: flex; align-items: center; justify-content: space-between; font-size: 11px; color: var(--texto-suave); letter-spacing: 0.1em; text-transform: uppercase; }

/* ── WhatsApp Button ─────────────────────────────────────────────────────────── */
.whatsapp-btn {
  position: fixed; bottom: 28px; right: 28px;
  width: 58px; height: 58px; background: #25D366;
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 24px rgba(37,211,102,0.45); z-index: 1500;
  transition: var(--trans); color: white;
}
.whatsapp-btn [class*="ph-"] { font-size: 32px; }
.whatsapp-btn:hover { transform: scale(1.08); box-shadow: 0 10px 32px rgba(37,211,102,0.6); }
.whatsapp-btn::before {
  content: ''; position: absolute; inset: -6px; border-radius: 50%;
  border: 2px solid #25D366; opacity: 0.5;
  animation: pulseRing 2s ease-out infinite;
}
@keyframes pulseRing { 0% { transform:scale(0.95); opacity:0.5; } 100% { transform:scale(1.25); opacity:0; } }

/* ── Produtos page ──────────────────────────────────────────────────────────── */
.produtos-header { padding-top: 18px; padding-bottom: 20px; text-align: center; }
.produtos-title { font-family: 'Bodoni Moda', serif; font-size: clamp(1.8rem,4vw,2.6rem); font-weight: 400; letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 4px; }
.produtos-count { font-size: 12px; color: var(--texto-suave); letter-spacing: 0.1em; }
@media (max-width: 768px) {
  .produtos-header { padding-top: 12px; padding-bottom: 14px; text-align: center; }
  .produtos-title { font-size: 1.5rem; letter-spacing: 0.06em; }
  .category-strip { padding: 18px 0; }
}

/* ── Breadcrumb ──────────────────────────────────────────────────────────────── */
.breadcrumb { display: flex; align-items: center; gap: 8px; font-size: 11px; color: var(--texto-suave); padding: 24px 0; letter-spacing: 0.1em; text-transform: uppercase; flex-wrap: wrap; }
.breadcrumb a { color: var(--texto-suave); transition: var(--trans); }
.breadcrumb a:hover { color: var(--texto); }

/* ── Empty state ─────────────────────────────────────────────────────────────── */
.empty-state { padding: 80px 20px; text-align: center; color: var(--texto-suave); }
.empty-state [class*="ph-"] { font-size: 64px; color: var(--rosa-medio); margin-bottom: 20px; display: block; }
.empty-state h3 { font-family: 'Bodoni Moda', serif; font-size: 1.6rem; margin-bottom: 8px; font-weight: 400; }
.empty-state p { font-size: 13px; color: var(--texto-suave); }

/* ── Admin ───────────────────────────────────────────────────────────────────── */
.admin-layout { display: flex; min-height: 100vh; }
.admin-sidebar {
  width: 260px; background: var(--texto); color: white;
  display: flex; flex-direction: column; flex-shrink: 0;
  position: sticky; top: 0; height: 100vh; overflow-y: auto;
}
.admin-sidebar-brand {
  padding: 28px 24px; border-bottom: 1px solid rgba(255,255,255,0.1);
  font-family: 'Bodoni Moda', serif;
  font-size: 1.4rem; letter-spacing: 0.16em; text-transform: uppercase;
}
.admin-brand-logo { height: 64px; width: auto; display: block; }
.admin-sidebar-brand .sub { display: block; font-family: 'Inter', sans-serif; font-size: 10px; color: rgba(255,255,255,0.4); letter-spacing: 0.2em; text-transform: uppercase; margin-top: 6px; }
.admin-nav { padding: 16px 0; flex: 1; }
.admin-nav .nav-sep { padding: 18px 24px 8px; font-size: 10px; text-transform: uppercase; letter-spacing: 0.2em; color: rgba(255,255,255,0.35); font-weight: 500; }
.admin-nav a {
  display: flex; align-items: center; gap: 12px;
  padding: 11px 24px; font-size: 13px; color: rgba(255,255,255,0.7);
  transition: var(--trans); border-left: 2px solid transparent; letter-spacing: 0.04em;
}
.admin-nav a:hover, .admin-nav a.active { background: rgba(255,255,255,0.08); color: white; border-left-color: var(--rosa-medio); }
.admin-nav a [class*="ph-"] { font-size: 16px; }
.admin-main { flex: 1; background: #F8F8F8; min-height: 100vh; overflow-y: auto; }
.admin-topbar {
  background: white; border-bottom: 1px solid #E5E7EB;
  padding: 0 32px; height: 64px;
  display: flex; align-items: center; justify-content: space-between;
  position: sticky; top: 0; z-index: 100;
}
.admin-topbar-title { font-size: 1.1rem; font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase; font-family: 'Bodoni Moda', serif; }
.admin-content { padding: 32px; }
.admin-menu-toggle { display: none; align-items: center; justify-content: center; width: 36px; height: 36px; font-size: 22px; cursor: pointer; }
.stat-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-bottom: 32px; }
.stat-card { background: white; padding: 24px; border: 1px solid #EEE; }
.stat-card .label { font-size: 10px; text-transform: uppercase; letter-spacing: 0.18em; color: #6B7280; margin-bottom: 10px; }
.stat-card .value { font-size: 1.8rem; font-weight: 500; color: var(--texto); font-family: 'Bodoni Moda', serif; }
.stat-card .icon { font-size: 28px; margin-bottom: 12px; color: var(--rosa-escuro); }
.admin-card { background: white; border: 1px solid #EEE; overflow: hidden; margin-bottom: 24px; }
.admin-card-header { display: flex; align-items: center; justify-content: space-between; padding: 16px 24px; border-bottom: 1px solid #EEE; }
.admin-card-header h3 { font-size: 13px; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase; }
.admin-table-wrap { overflow-x: auto; }
.admin-table { width: 100%; border-collapse: collapse; }
.admin-table th { padding: 14px 16px; text-align: left; font-size: 10px; text-transform: uppercase; letter-spacing: 0.15em; color: #6B7280; background: #FAFAFA; border-bottom: 1px solid #EEE; font-weight: 500; }
.admin-table td { padding: 14px 16px; border-bottom: 1px solid #F3F4F6; font-size: 13px; vertical-align: middle; }
.admin-table tr:last-child td { border-bottom: none; }
.admin-table tr:hover td { background: #FAFAFA; }
.badge { display: inline-block; padding: 3px 10px; font-size: 10px; font-weight: 500; letter-spacing: 0.15em; text-transform: uppercase; }
.badge-green { background: #d4edda; color: #155724; }
.badge-yellow { background: #fff3cd; color: #856404; }
.badge-red { background: #f8d7da; color: #721c24; }
.badge-gray { background: #E5E7EB; color: #6B7280; }
.badge-neon { background: var(--fundo); color: var(--rosa-deep); border: 1px solid var(--borda); }
.admin-form-grid { display: grid; gap: 18px; }
.admin-form-grid.cols2 { grid-template-columns: 1fr 1fr; }
.form-check { display: flex; align-items: center; gap: 10px; margin-bottom: 8px; }
.form-check input[type=checkbox] { width: 16px; height: 16px; accent-color: var(--rosa-escuro); cursor: pointer; }
.form-check label { font-size: 13px; color: var(--texto); cursor: pointer; }
.img-preview-grid { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 8px; }
.img-preview-item { position: relative; width: 84px; height: 100px; }
.img-preview-item img { width: 100%; height: 100%; object-fit: cover; border: 1px solid var(--borda); }
.img-preview-remove {
  position: absolute; top: -6px; right: -6px;
  width: 20px; height: 20px; background: #E53E3E; color: white;
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: 10px; cursor: pointer; z-index: 2;
}
.img-preview-item:has(.img-preview-remove input:checked) img {
  opacity: 0.35; filter: grayscale(1);
}
.img-preview-item:has(.img-preview-remove input:checked) {
  outline: 2px solid #E53E3E; outline-offset: 1px;
}
.img-preview-item:has(.img-preview-remove input:checked) .img-preview-remove {
  background: #16a34a;
}

/* ── Autocomplete de cores (variações) ───────────────────────────────────── */
.color-suggest {
  display: none; position: absolute; top: calc(100% + 2px); left: 0; right: 0;
  max-height: 220px; overflow-y: auto; z-index: 500;
  background: var(--branco); border: 1px solid var(--borda); border-radius: 8px;
  box-shadow: 0 8px 28px rgba(0,0,0,.14);
}
.color-suggest-item {
  display: flex; align-items: center; gap: 10px;
  padding: 8px 12px; font-size: 13px; cursor: pointer;
}
.color-suggest-item:hover { background: var(--fundo); }
.color-dot {
  width: 16px; height: 16px; border-radius: 50%; flex-shrink: 0;
  border: 1px solid rgba(0,0,0,0.15);
}
@media (max-width: 768px) {
  .variant-row { flex-wrap: wrap !important; }
  .variant-row .variant-cell { flex: 1 1 100% !important; min-width: 0 !important; }
  .variant-row .v-sizes { flex: 1 1 auto !important; min-width: 0 !important; }
}

/* ── Seletor visual de produto (categorias) ──────────────────────────────── */
.prod-picker { position: relative; width: 100%; }
.prod-picker-trigger {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 8px;
  padding: 8px 10px; border: 1px solid var(--borda); border-radius: 8px;
  background: var(--branco); font-size: 12px; color: var(--texto); text-align: left;
}
.prod-picker-current { display: flex; align-items: center; gap: 8px; overflow: hidden; white-space: nowrap; text-overflow: ellipsis; }
.prod-picker-current img { width: 26px; height: 26px; border-radius: 50%; object-fit: cover; flex-shrink: 0; }
.prod-picker-panel {
  display: none; position: fixed; z-index: 3000;
  background: var(--branco); border: 1px solid var(--borda); border-radius: 8px;
  box-shadow: 0 8px 28px rgba(0,0,0,.14); overflow: hidden;
}
.prod-picker.open .prod-picker-panel { display: block; }
.prod-picker-search {
  width: 100%; padding: 9px 12px; border: none; border-bottom: 1px solid var(--borda);
  font-size: 12px; outline: none; font-family: inherit;
}
.prod-picker-list { max-height: 240px; overflow-y: auto; }
.prod-picker-option {
  display: flex; align-items: center; gap: 10px; padding: 8px 12px; cursor: pointer;
  font-size: 12px; transition: background .15s;
}
.prod-picker-option:hover { background: var(--fundo); }
.prod-picker-option.selected { background: var(--rosa-claro); }
.prod-picker-option img { width: 34px; height: 34px; border-radius: 6px; object-fit: cover; flex-shrink: 0; }
.prod-picker-opt-name { overflow: hidden; white-space: nowrap; text-overflow: ellipsis; }

/* Admin Login */
.admin-login-page { min-height: 100vh; display: flex; align-items: center; justify-content: center; padding: 20px; background: var(--branco); }
.admin-login-card { width: 100%; max-width: 460px; background: transparent; border: none; padding: 56px 48px; }
.admin-login-brand { text-align: center; margin-bottom: 4px; }
.admin-login-brand img { display: block; max-width: 180px; width: 100%; height: auto; margin: 0 auto; }
.admin-login-sub { font-size: 11px; color: var(--texto-suave); text-align: center; letter-spacing: 0.2em; text-transform: uppercase; margin-bottom: 36px; }
.error-msg { background: #fff5f5; border: 1px solid #fed7d7; padding: 12px 16px; font-size: 13px; color: #c53030; margin-bottom: 16px; }

/* ── Splash Screen ───────────────────────────────────────────────────────────── */
.splash-screen {
  position: fixed; inset: 0; z-index: 99999;
  background: #ffffff;
  display: flex; align-items: center; justify-content: center;
  pointer-events: none;
}
.splash-mono {
  position: relative; font-family: 'Bodoni Moda', Georgia, serif;
  font-weight: 300; color: var(--rosa-escuro); line-height: 1;
  user-select: none; animation: mono-in 0.7s cubic-bezier(0.16,1,0.3,1) both;
  text-align: center;
}
.splash-logo { display: block; width: clamp(180px,38vmin,380px); height: auto; object-fit: contain; }
.splash-brand { font-size: clamp(2.5rem,8vmin,5rem); letter-spacing: 0.2em; text-transform: uppercase; }
.splash-sub { font-size: clamp(0.7rem,2vmin,0.9rem); letter-spacing: 0.5em; text-transform: uppercase; opacity: 0.7; margin-top: 12px; }
@keyframes mono-in { from { opacity:0; transform:scale(1.08); } to { opacity:1; transform:scale(1); } }
.splash-screen.hiding { animation: splash-out 0.9s cubic-bezier(0.4,0,1,1) forwards; }
@keyframes splash-out { from { opacity:1; } to { opacity:0; } }

/* ── Responsive ──────────────────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .stat-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .admin-sidebar { width: 220px; }
  .admin-content { padding: 20px; }
}
@media (max-width: 900px) {
  /* Sidebar vira bottom bar no celular */
  .admin-sidebar {
    position: fixed; top: auto; bottom: 0; left: 0; right: 0;
    width: 100%; height: auto; z-index: 300;
    flex-direction: row; overflow: visible;
    border-top: 1px solid rgba(255,255,255,0.12);
    padding-bottom: env(safe-area-inset-bottom);
  }
  .admin-sidebar-brand { display: none; }
  .admin-nav {
    display: flex; flex-direction: row; align-items: stretch;
    justify-content: space-around; padding: 0; width: 100%;
  }
  .admin-nav .nav-sep { display: none; }
  /* Ver Loja e Sair ja existem na topbar */
  .admin-nav a:nth-last-of-type(-n+2) { display: none; }
  .admin-nav a {
    flex: 1; flex-direction: column; gap: 4px;
    padding: 10px 4px 8px; font-size: 9.5px;
    justify-content: center; text-align: center;
    letter-spacing: 0.02em;
    border-left: none; border-top: 2px solid transparent;
  }
  .admin-nav a:hover, .admin-nav a.active {
    border-left: none; border-top-color: var(--rosa-medio);
  }
  .admin-nav a [class*="ph-"] { font-size: 20px; }
  .admin-main { margin-left: 0; }
  .admin-menu-toggle { display: none !important; }
  .admin-topbar { padding: 0 16px; }
  /* espaco para a bottom bar nao cobrir o conteudo */
  .admin-content { padding-bottom: 96px; }
}
@media (max-width: 768px) {
  :root { --header-h: var(--header-h-mob); }
  .header-top { grid-template-columns: auto 1fr auto; padding: 12px 16px; }
  .header-nav { display: none; }
  .logo { font-size: 1.5rem; letter-spacing: 0.14em; }
  .btn-menu { display: inline-flex; }
  .hero { min-height: 70vh; }
  .product-grid { grid-template-columns: repeat(2, 1fr); gap: 24px 14px; }
  .footer { padding: 48px 0 24px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px 24px; margin-bottom: 32px; }
  .footer-brand { grid-column: 1 / -1; display: flex; flex-direction: column; align-items: center; text-align: center; }
  .footer-brand p { max-width: 340px; margin: 0 auto; font-size: 12px; }
  .footer-logo img { height: 54px; margin: 0 auto; }
  .footer-social { justify-content: center; }
  .footer-col h4 { margin-bottom: 14px; }
  .footer-col a { padding: 6px 0; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .stat-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .admin-form-grid.cols2 { grid-template-columns: 1fr; }
  .container { padding: 0 16px; }
  .admin-login-card { padding: 36px 24px; }
  .cart-page-grid { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .product-grid { grid-template-columns: repeat(2, 1fr); gap: 18px 8px; }
  .hero-actions { flex-direction: column; align-items: stretch; max-width: 280px; margin: 0 auto; }
  .whatsapp-btn { bottom: 18px; right: 18px; width: 52px; height: 52px; }
  .section { padding: 32px 0; }
  .slide-logo-pdf-wrap { width: min(280px, 85vw); height: min(280px, 85vw); }
}

@media (max-width: 768px) {
  .cart-page-title { text-align: center; }
  .cart-page { padding-top: 14px; padding-bottom: 60px; }
  .cart-summary { position: static; }
  .cart-page-item { gap: 14px; padding: 16px; }
  .cart-page-item-img { width: 70px; height: 85px; }
  .cart-page-item-price { font-size: 14px; }
  .cart-page-item-controls { gap: 10px; flex-wrap: wrap; }
}
