/* ============================================
   KITTY CARDS — Kawaii Store
   White · Dusty Rose · Sage Green
   ============================================ */

/* --- Tokens da logo --- */
:root {
  --white:        #FFFFFF;
  --blush:        #FDF2F6;
  --blush-deep:   #FAE4EE;

  /* Rosa pó (cor principal — logo) */
  --rose:         #D4849A;
  --rose-hover:   #C2738A;
  --rose-pale:    #F8D5E3;
  --rose-mist:    #FFF0F5;

  /* Sage green (acento pequeno) */
  --sage:         #A8C4A2;
  --sage-pale:    #DFF0DA;

  /* Creme dourado (estrelas da logo) */
  --cream:        #F5E4C0;
  --cream-deep:   #EDD49A;

  /* Texto */
  --text:         #4A2030;
  --text-soft:    #7A4A5C;
  --text-muted:   #B08898;
  --text-light:   #D4AABC;

  /* Bordas */
  --border:       #F0C8D8;
  --border-mid:   #E0A8BC;

  /* Sombras */
  --shadow-sm:  0 2px 12px rgba(212, 132, 154, 0.10);
  --shadow-md:  0 4px 22px rgba(212, 132, 154, 0.16);
  --shadow-lg:  0 8px 40px rgba(212, 132, 154, 0.22);
  --shadow-card: 0 3px 16px rgba(212, 132, 154, 0.13);

  --radius-sm: 12px;
  --radius-md: 18px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --radius-pill: 100px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* --- Reset --- */
*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Nunito Sans', 'Nunito', sans-serif;
  background: var(--white);
  color: var(--text);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, .nav-logo, .filter-btn, .btn { font-family: 'Nunito', sans-serif; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
ul { list-style: none; }

::-webkit-scrollbar { width: 7px; }
::-webkit-scrollbar-track { background: var(--blush); }
::-webkit-scrollbar-thumb { background: var(--rose); border-radius: 10px; }

/* ── ícones SVG ── */
svg { display: inline-block; vertical-align: middle; fill: currentColor; flex-shrink: 0; }
.inline-icon  { color: var(--rose); position: relative; top: -1px; }
.title-icon   { color: var(--rose); }
.list-icon    { color: var(--rose); margin-right: 0.35rem; }
.trust-svg    { color: var(--rose); }
.announce-icon{ color: var(--rose); animation: spinFloat 4s ease-in-out infinite alternate; }
.announce-icon:last-child { animation-direction: alternate-reverse; }

/* ============================================
   BOTÕES
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.72rem 1.8rem;
  border-radius: var(--radius-pill);
  font-weight: 700;
  font-size: 0.95rem;
  transition: var(--transition);
  cursor: pointer;
  white-space: nowrap;
}

.btn-primary {
  background: var(--rose);
  color: white;
  border: 2px solid var(--rose);
  box-shadow: 0 4px 14px rgba(212,132,154,0.38);
}
.btn-primary:hover {
  background: var(--rose-hover);
  border-color: var(--rose-hover);
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 7px 22px rgba(212,132,154,0.44);
}

.btn-ghost {
  background: white;
  color: var(--rose);
  border: 2px solid var(--border);
}
.btn-ghost:hover {
  border-color: var(--rose);
  background: var(--rose-mist);
  transform: translateY(-2px);
}

.btn-lg { padding: 0.9rem 2.3rem; font-size: 1.05rem; }

/* ============================================
   PÉTALAS CAINDO
   ============================================ */
#petalLayer {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  overflow: hidden;
}

.petal {
  position: absolute;
  top: -60px;
  opacity: 0;
  animation: petalFall linear infinite;
  will-change: transform, opacity;
}

.petal svg { display: block; }

@keyframes petalFall {
  0%   { transform: translateY(0) rotate(0deg) translateX(0);   opacity: 0; }
  5%   { opacity: 0.75; }
  80%  { opacity: 0.6; }
  100% { transform: translateY(110vh) rotate(540deg) translateX(40px); opacity: 0; }
}

/* ============================================
   FLORES PARALLAX LATERAIS
   ============================================ */
#floatFlowers {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.par-flower {
  position: absolute;
  opacity: 0.35;
  will-change: transform;
  animation: floatSway ease-in-out infinite alternate;
}

@keyframes floatSway {
  0%   { transform: translateY(0) rotate(-8deg); }
  100% { transform: translateY(-18px) rotate(8deg); }
}

/* ============================================
   ANNOUNCE BAR
   ============================================ */
.announce-bar {
  background: var(--rose-pale);
  color: var(--rose-hover);
  text-align: center;
  padding: 0.55rem 1rem;
  font-family: 'Nunito', sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  border-bottom: 1.5px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.announce-flower { font-size: 1rem; animation: spinFloat 4s ease-in-out infinite alternate; }
.announce-flower:nth-child(3) { animation-delay: 2s; }

@keyframes spinFloat {
  0%   { transform: rotate(-15deg) translateY(0); }
  100% { transform: rotate(15deg) translateY(-3px); }
}

/* ============================================
   NAV
   ============================================ */
.nav {
  position: sticky;
  top: 0;
  width: 100%;
  z-index: 1000;
  padding: 0.6rem 2rem;
  background: rgba(255,255,255,0.94);
  backdrop-filter: blur(18px);
  border-bottom: 1.5px solid var(--border);
  transition: var(--transition);
}

.nav.scrolled { box-shadow: var(--shadow-sm); }

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo { display: flex; align-items: center; }
.nav-logo-img {
  height: 52px;
  width: 52px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--border);
  transition: var(--transition);
}
.nav-logo-img:hover { border-color: var(--rose); transform: scale(1.05) rotate(5deg); }

.nav-links {
  display: flex;
  gap: 2.2rem;
  align-items: center;
}

.nav-links a {
  font-family: 'Nunito', sans-serif;
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--text-muted);
  transition: var(--transition);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 2.5px;
  background: var(--rose);
  border-radius: 2px;
  transition: var(--transition);
}

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

.nav-actions { display: flex; align-items: center; gap: 0.7rem; }

.nav-tiktok {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--rose-pale);
  color: var(--rose);
  border: 1.5px solid var(--border);
  transition: var(--transition);
}
.nav-tiktok:hover { background: var(--rose); color: white; border-color: var(--rose); }

/* Hamburger */
.hamburger { display: none; flex-direction: column; gap: 5px; padding: 4px; }
.hamburger span { width: 24px; height: 2.5px; background: var(--rose); transition: var(--transition); border-radius: 4px; }
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile menu */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(20px);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.8rem;
}
.mobile-menu.active { display: flex; }

.mobile-logo {
  width: 90px; height: 90px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--border);
  margin-bottom: 0.5rem;
}

.mobile-menu a {
  font-family: 'Nunito', sans-serif;
  font-size: 1.7rem;
  font-weight: 800;
  color: var(--text-muted);
  transition: var(--transition);
}
.mobile-menu a:hover { color: var(--rose); }
.mobile-tiktok { font-size: 1.1rem !important; color: var(--rose) !important; }

/* ============================================
   HERO
   ============================================ */
.hero {
  min-height: 88vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  padding: 4rem 2rem 5rem;
  background: radial-gradient(ellipse at 50% 0%, var(--blush-deep) 0%, var(--white) 65%);
}

/* Flores decorativas cantos */
.hero-deco {
  position: absolute;
  opacity: 0.5;
}
.hero-deco .deco-flower { width: 110px; height: 110px; }
.hero-deco .deco-flower--sm { width: 70px; height: 70px; }

.hero-deco--tl { top: 5%; left: 4%; animation: floatSway 5s ease-in-out infinite alternate; }
.hero-deco--tr { top: 8%; right: 4%; animation: floatSway 6s ease-in-out infinite alternate-reverse; }
.hero-deco--bl { bottom: 10%; left: 7%; animation: floatSway 7s ease-in-out infinite alternate; }
.hero-deco--br { bottom: 8%; right: 6%; animation: floatSway 5.5s ease-in-out infinite alternate-reverse; }

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 640px;
}

/* Sparkles */
.hero-sparkles { position: relative; height: 0; }
.spark {
  position: absolute;
  font-size: 1.2rem;
  color: var(--cream-deep);
  animation: sparkPop 2.5s ease-in-out infinite;
}
.spark-1 { top: -60px; left: -80px; animation-delay: 0s; font-size: 1rem; }
.spark-2 { top: -80px; right: -60px; animation-delay: 0.8s; font-size: 1.4rem; }
.spark-3 { top: -30px; left: -140px; animation-delay: 1.6s; font-size: 0.8rem; }
.spark-4 { top: -30px; right: -130px; animation-delay: 0.4s; font-size: 1rem; }

@keyframes sparkPop {
  0%,100% { opacity: 0.3; transform: scale(0.8) rotate(-10deg); }
  50%      { opacity: 1;   transform: scale(1.2) rotate(10deg); }
}

.hero-logo {
  width: 210px;
  height: 210px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 1.8rem;
  border: 4px solid var(--rose-pale);
  box-shadow: 0 0 0 8px var(--blush), var(--shadow-lg);
  animation: logoPulse 4s ease-in-out infinite;
}

@keyframes logoPulse {
  0%,100% { box-shadow: 0 0 0 8px var(--blush), var(--shadow-lg); }
  50%      { box-shadow: 0 0 0 14px var(--rose-pale), var(--shadow-lg); }
}

.hero-sub {
  font-family: 'Nunito', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-muted);
  margin-bottom: 2rem;
  line-height: 1.6;
}

.hero-btns {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.hero-badges {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  flex-wrap: wrap;
}

.hero-badges span {
  background: white;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-pill);
  padding: 0.3rem 0.9rem;
  font-family: 'Nunito', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--text-soft);
  box-shadow: var(--shadow-sm);
}

/* ============================================
   TRUST BAR
   ============================================ */
.trust-bar {
  background: var(--blush);
  border-top: 1.5px solid var(--border);
  border-bottom: 1.5px solid var(--border);
}

.trust-bar-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 1.1rem 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.4rem 1.8rem;
}
.trust-svg { width: 28px; height: 28px; color: var(--rose); }
.trust-item div { display: flex; flex-direction: column; line-height: 1.3; }
.trust-item strong { font-size: 0.82rem; font-weight: 700; color: var(--text); font-family: 'Nunito', sans-serif; }
.trust-item span { font-size: 0.72rem; color: var(--text-muted); }

.trust-dot { color: var(--rose-pale); flex-shrink: 0; display: flex; align-items: center; }

/* ============================================
   SECTIONS
   ============================================ */
.section {
  padding: 5rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}

.section-alt {
  max-width: 100%;
  background: var(--blush);
  padding: 5rem 2rem;
  border-top: 1.5px solid var(--border);
  border-bottom: 1.5px solid var(--border);
  position: relative;
}

.section-alt .section-header,
.section-alt .steps-grid,
.section-alt .steps-note {
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

.section-header {
  text-align: center;
  margin-bottom: 2.8rem;
}

.section-flowers {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  margin-bottom: 0.7rem;
  animation: floatSway 5s ease-in-out infinite alternate;
}

.section-eyebrow {
  display: inline-block;
  font-family: 'Nunito', sans-serif;
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  color: var(--rose);
  margin-bottom: 0.5rem;
}

.section-header h2 {
  font-size: clamp(2rem, 4vw, 2.7rem);
  font-weight: 900;
  color: var(--rose);
  margin-bottom: 0.6rem;
}

.section-header p {
  color: var(--text-muted);
  font-size: 0.97rem;
  max-width: 440px;
  margin: 0 auto;
}

/* ============================================
   FILTROS
   ============================================ */
.filters {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-bottom: 2.5rem;
}

.filter-btn {
  padding: 0.45rem 1.3rem;
  border-radius: var(--radius-pill);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-muted);
  background: white;
  border: 1.5px solid var(--border);
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}

.filter-btn:hover { border-color: var(--rose); color: var(--rose); transform: translateY(-1px); }
.filter-btn.active {
  background: var(--rose);
  color: white;
  border-color: var(--rose);
  box-shadow: 0 4px 14px rgba(212,132,154,0.35);
}

/* ============================================
   CARDS DE PRODUTO
   ============================================ */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(235px, 1fr));
  gap: 1.5rem;
}

.product-card {
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1.5px solid var(--border);
  transition: var(--transition);
  cursor: pointer;
  box-shadow: var(--shadow-card);
}

.product-card:hover {
  transform: translateY(-7px) rotate(0.5deg);
  border-color: var(--rose-pale);
  box-shadow: var(--shadow-lg);
}

.product-card-img {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
  background: var(--blush);
}

.product-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.55s ease;
}

.product-card:hover .product-card-img img { transform: scale(1.07); }

.card-overlay {
  position: absolute;
  inset: 0;
  background: rgba(212, 132, 154, 0.5);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 1rem;
  opacity: 0;
  transition: var(--transition);
}
.product-card:hover .card-overlay { opacity: 1; }

.quick-buy {
  background: white;
  color: var(--rose);
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: 0.85rem;
  padding: 0.6rem 1.2rem;
  border-radius: var(--radius-pill);
  width: 100%;
  text-align: center;
  transition: var(--transition);
  border: 2px solid white;
  box-shadow: var(--shadow-md);
}
.quick-buy:hover { background: var(--rose); color: white; }

/* Badges */
.card-badge {
  position: absolute;
  top: 10px; left: 10px;
  font-family: 'Nunito', sans-serif;
  font-size: 0.68rem;
  font-weight: 800;
  padding: 0.26rem 0.7rem;
  border-radius: var(--radius-pill);
  z-index: 2;
  letter-spacing: 0.3px;
}
.badge-rare { background: var(--text-soft); color: white; }
.badge-new  { background: var(--rose);      color: white; }

.product-card-info {
  padding: 1rem 1.2rem 1.25rem;
  border-top: 1.5px solid var(--border);
}

.product-card-info .member-tag {
  font-family: 'Nunito', sans-serif;
  font-size: 0.7rem;
  font-weight: 800;
  color: var(--rose);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0.28rem;
}

.product-card-info h3 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.55rem;
}

.price-row { display: flex; align-items: baseline; gap: 0.55rem; }

.product-card-info .price {
  font-size: 1.12rem;
  font-weight: 900;
  color: var(--rose);
}

.product-card-info .price-old {
  font-size: 0.8rem;
  color: var(--text-light);
  text-decoration: line-through;
}

/* CTA catálogo */
.catalog-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.2rem;
  flex-wrap: wrap;
  text-align: center;
  margin-top: 3rem;
  padding: 2.2rem 2rem;
  background: var(--blush);
  border-radius: var(--radius-xl);
  border: 1.5px solid var(--border);
}

.catalog-cta p { color: var(--text-muted); font-size: 0.95rem; font-weight: 600; }
.cta-flower { flex-shrink: 0; animation: floatSway 4s ease-in-out infinite alternate; }
.cta-flower:last-child { animation-direction: alternate-reverse; }

/* ============================================
   COMO COMPRAR
   ============================================ */
.steps-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: center;
  gap: 0;
}

.step-card {
  position: relative;
  text-align: center;
  padding: 2.4rem 1.4rem 2rem;
  background: white;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  transition: var(--transition);
  overflow: hidden;
}

.step-card:hover {
  transform: translateY(-5px);
  border-color: var(--rose-pale);
  box-shadow: var(--shadow-md);
}

.step-flower {
  position: absolute;
  top: -12px; right: -12px;
  opacity: 0.35;
  animation: floatSway 5s ease-in-out infinite alternate;
}

.step-arrow {
  padding: 0 1rem;
  flex-shrink: 0;
  color: var(--rose-pale);
  animation: floatSway 3s ease-in-out infinite alternate;
}

.step-icon {
  width: 58px; height: 58px;
  border-radius: 50%;
  background: var(--rose-pale);
  border: 2px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 0.9rem;
  color: var(--rose);
}

.step-number {
  font-family: 'Nunito', sans-serif;
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--rose-pale);
  line-height: 1;
  margin-bottom: 0.4rem;
}

.step-card h3 {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--rose);
  margin-bottom: 0.45rem;
}

.step-card p { color: var(--text-muted); font-size: 0.86rem; line-height: 1.55; }

.steps-note {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 2.5rem;
  padding: 0.9rem 1.8rem;
  background: white;
  border-radius: var(--radius-pill);
  border: 1.5px solid var(--border);
  font-size: 0.88rem;
  color: var(--text-muted);
  font-weight: 600;
  max-width: fit-content;
  margin-left: auto;
  margin-right: auto;
  box-shadow: var(--shadow-sm);
}
.steps-note a { color: var(--rose); font-weight: 800; }
.steps-note a:hover { text-decoration: underline; }

/* ============================================
   SOBRE
   ============================================ */
.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.text-pink { color: var(--rose); }

.about-text h2 {
  font-size: clamp(1.9rem, 3.5vw, 2.5rem);
  font-weight: 900;
  margin-bottom: 1rem;
  color: var(--text);
  line-height: 1.25;
}

.about-text p { color: var(--text-muted); margin-bottom: 0.9rem; font-size: 0.97rem; line-height: 1.75; }

.about-stats {
  display: flex;
  gap: 0;
  margin: 1.8rem 0 1.5rem;
  background: var(--blush);
  border-radius: var(--radius-md);
  border: 1.5px solid var(--border);
  overflow: hidden;
}

.stat {
  display: flex; flex-direction: column; align-items: center;
  text-align: center; flex: 1;
  padding: 1.1rem 0.8rem;
  border-right: 1.5px solid var(--border);
}
.stat:last-child { border-right: none; }
.stat strong { font-family: 'Nunito', sans-serif; font-size: 1.2rem; font-weight: 900; color: var(--rose); }
.stat span   { font-size: 0.72rem; color: var(--text-muted); margin-top: 0.2rem; }

.about-visual {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.about-deco-flower { opacity: 0.55; }
.about-deco-flower--top { animation: floatSway 5s ease-in-out infinite alternate; }
.about-deco-flower--bot { animation: floatSway 6s ease-in-out infinite alternate-reverse; }

.about-card-stack {
  position: relative;
  width: 240px; height: 320px;
}

.about-card-stack img {
  position: absolute;
  width: 210px; height: 292px;
  object-fit: cover;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  border: 4px solid white;
}

.about-card-stack img:nth-child(1) { transform: rotate(-8deg) translate(-22px, 12px); z-index: 1; }
.about-card-stack img:nth-child(2) { transform: rotate(2deg)  translate(8px, -6px);   z-index: 2; }
.about-card-stack img:nth-child(3) { transform: rotate(11deg) translate(38px, 16px);  z-index: 3; }

.about-card-stack:hover img:nth-child(1) { transform: rotate(-14deg) translate(-44px, 0); }
.about-card-stack:hover img:nth-child(2) { transform: rotate(0deg)   translate(0, -18px); }
.about-card-stack:hover img:nth-child(3) { transform: rotate(14deg)  translate(44px, 6px); }

.tiktok-link {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.7rem 1.6rem;
  background: white;
  border: 1.5px solid var(--border-mid);
  border-radius: var(--radius-pill);
  font-family: 'Nunito', sans-serif;
  font-weight: 700; font-size: 0.9rem;
  color: var(--rose);
  transition: var(--transition);
}
.tiktok-link:hover { background: var(--rose); border-color: var(--rose); color: white; }

/* ============================================
   CTA BANNER
   ============================================ */
.cta-banner {
  position: relative;
  overflow: hidden;
  background: var(--rose-pale);
  border-top: 1.5px solid var(--border);
  border-bottom: 1.5px solid var(--border);
  padding: 4.5rem 2rem;
  text-align: center;
}

.cta-banner-flowers {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2rem;
  opacity: 0.3;
  pointer-events: none;
}

.cta-banner-flowers svg:nth-child(odd)  { animation: floatSway 5s ease-in-out infinite alternate; }
.cta-banner-flowers svg:nth-child(even) { animation: floatSway 6s ease-in-out infinite alternate-reverse; }

.cta-banner-inner {
  position: relative;
  z-index: 1;
  max-width: 500px;
  margin: 0 auto;
}

.cta-logo {
  width: 80px; height: 80px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid white;
  box-shadow: var(--shadow-md);
  margin: 0 auto 1.2rem;
}

.cta-banner h2 {
  font-size: clamp(1.7rem, 3.5vw, 2.3rem);
  font-weight: 900;
  color: var(--rose-hover);
  margin-bottom: 0.7rem;
}

.cta-banner p { color: var(--text-soft); font-size: 0.97rem; margin-bottom: 1.8rem; line-height: 1.6; }

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--blush);
  border-top: 1.5px solid var(--border);
  padding-top: 0;
}

.footer-flowers {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.2rem;
  padding: 1.8rem 2rem 0;
  opacity: 0.45;
}

.footer-flowers svg:nth-child(odd)  { animation: floatSway 5s ease-in-out infinite alternate; }
.footer-flowers svg:nth-child(even) { animation: floatSway 7s ease-in-out infinite alternate-reverse; }

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 2rem 2rem 3rem;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
}

.footer-logo-img {
  width: 70px; height: 70px;
  border-radius: 50%;
  object-fit: cover;
  border: 2.5px solid var(--border);
  margin-bottom: 1rem;
}

.footer-brand p {
  font-size: 0.84rem;
  line-height: 1.7;
  color: var(--text-muted);
  max-width: 260px;
  margin-bottom: 1.1rem;
}

.footer-tiktok {
  display: inline-flex; align-items: center; gap: 0.45rem;
  padding: 0.5rem 1.1rem;
  background: white;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-pill);
  font-family: 'Nunito', sans-serif;
  font-size: 0.82rem; font-weight: 700;
  color: var(--rose);
  transition: var(--transition);
}
.footer-tiktok:hover { background: var(--rose); color: white; border-color: var(--rose); }

.footer-col h4 {
  font-family: 'Nunito', sans-serif;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--text-light);
  margin-bottom: 1.1rem;
}

.footer-col ul { display: flex; flex-direction: column; gap: 0.7rem; }
.footer-col ul li a,
.footer-col ul li span { font-size: 0.87rem; color: var(--text-muted); transition: var(--transition); }
.footer-col ul li a:hover { color: var(--rose); }

.footer-bottom {
  border-top: 1.5px solid var(--border);
  padding: 1.3rem 2rem;
  text-align: center;
}
.footer-bottom p { font-size: 0.8rem; color: var(--text-light); font-family: 'Nunito', sans-serif; font-weight: 600; }

/* ============================================
   MODAL
   ============================================ */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(253, 242, 246, 0.88);
  backdrop-filter: blur(16px);
  z-index: 2000;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}
.modal-overlay.active { display: flex; }

.modal-content {
  max-width: 360px;
  width: 100%;
  animation: modalIn 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

@keyframes modalIn {
  from { opacity: 0; transform: scale(0.88) translateY(18px); }
  to   { opacity: 1; transform: scale(1)    translateY(0); }
}

.modal-content img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  border: 4px solid white;
}

.modal-actions { text-align: center; }
.modal-actions .btn-primary { width: 100%; justify-content: center; }

.modal-close {
  position: absolute;
  top: 1.5rem; right: 1.5rem;
  color: var(--rose);
  font-size: 1.1rem;
  background: white;
  width: 42px; height: 42px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition);
  border: 1.5px solid var(--border);
  box-shadow: var(--shadow-sm);
}
.modal-close:hover { background: var(--rose); color: white; border-color: var(--rose); }

/* ============================================
   REVEAL ANIMATION
   ============================================ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   RESPONSIVO
   ============================================ */
@media (max-width: 900px) {
  .steps-grid {
    grid-template-columns: 1fr;
    max-width: 420px;
    gap: 1rem;
  }
  .step-arrow { display: none; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-brand p { max-width: 100%; }
}

@media (max-width: 768px) {
  .nav-links  { display: none; }
  .nav-tiktok { display: none; }
  .hamburger  { display: flex; }

  .hero-deco .deco-flower { width: 70px; height: 70px; }
  .hero-deco .deco-flower--sm { width: 48px; height: 48px; }

  .products-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; }

  .about-content { grid-template-columns: 1fr; text-align: center; }
  .about-visual  { order: -1; }
  .tiktok-link   { justify-content: center; }
  .about-stats   { justify-content: center; }

  .trust-dot  { display: none; }
  .trust-item { padding: 0.4rem 0.9rem; }

  .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
  .cta-banner-flowers { opacity: 0.15; }

  .section     { padding: 3.5rem 1.2rem; }
  .section-alt { padding: 3.5rem 1.2rem; }
}

@media (max-width: 480px) {
  .products-grid { grid-template-columns: repeat(2, 1fr); gap: 0.7rem; }
  .product-card-info { padding: 0.75rem; }
  .product-card-info h3 { font-size: 0.82rem; }
  .product-card-info .price { font-size: 1rem; }
  .hero-logo { width: 165px; height: 165px; }
  .hero-btns { flex-direction: column; }
  .about-stats { flex-direction: column; }
  .stat { border-right: none; border-bottom: 1.5px solid var(--border); }
  .stat:last-child { border-bottom: none; }
  .spark { display: none; }
}

/* ============================================
   CARRINHO + CHECKOUT
   ============================================ */

/* Ícone carrinho no nav */
.nav-cart {
  position: relative;
  display: flex; align-items: center; justify-content: center;
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--rose-pale);
  color: var(--rose);
  border: 1.5px solid var(--border);
  transition: var(--transition);
}
.nav-cart:hover { background: var(--rose); color: white; border-color: var(--rose); }

.cart-badge {
  position: absolute;
  top: -4px; right: -4px;
  min-width: 18px; height: 18px;
  background: var(--rose);
  color: white;
  border-radius: 50px;
  font-family: 'Nunito', sans-serif;
  font-size: .68rem;
  font-weight: 900;
  display: flex; align-items: center; justify-content: center;
  padding: 0 4px;
  border: 2px solid white;
}

/* Overlay */
.cart-overlay {
  display: none;
  position: fixed; inset: 0;
  background: rgba(61,18,36,.35);
  z-index: 1100;
  backdrop-filter: blur(2px);
}
.cart-overlay.open { display: block; }

/* Drawer */
.cart-drawer {
  position: fixed;
  top: 0; right: -420px;
  width: 100%; max-width: 400px;
  height: 100vh;
  background: white;
  z-index: 1200;
  display: flex; flex-direction: column;
  box-shadow: -4px 0 30px rgba(61,18,36,.15);
  transition: right .35s cubic-bezier(.4,0,.2,1);
  border-left: 1.5px solid var(--border-light);
}
.cart-drawer.open { right: 0; }

.cart-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.2rem 1.4rem;
  border-bottom: 1.5px solid var(--border-light);
  flex-shrink: 0;
}
.cart-header h3 {
  font-family: 'Nunito', sans-serif;
  font-size: 1.05rem; font-weight: 800;
  color: var(--text); display: flex; align-items: center; gap: .5rem;
}
.cart-header h3 svg { color: var(--rose); }

.cart-close {
  width: 36px; height: 36px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--text-muted); border: 1.5px solid var(--border-light);
  transition: var(--transition);
}
.cart-close:hover { background: var(--rose); color: white; border-color: var(--rose); }

.cart-items { flex: 1; overflow-y: auto; padding: 1rem 1.2rem; }

.cart-empty {
  display: flex; flex-direction: column; align-items: center;
  justify-content: center; gap: .8rem;
  height: 100%; text-align: center; padding: 3rem 1rem;
  color: var(--text-muted);
}
.cart-empty p { font-weight: 600; }
.btn-sm { padding: .45rem 1.1rem; font-size: .82rem; }

.cart-item {
  display: flex; align-items: center; gap: .85rem;
  padding: .85rem 0;
  border-bottom: 1.5px solid var(--border-light);
}
.cart-item:last-child { border-bottom: none; }

.cart-item img {
  width: 54px; height: 72px;
  object-fit: cover; border-radius: 10px;
  border: 1.5px solid var(--border-light);
  flex-shrink: 0;
}

.cart-item-info { flex: 1; min-width: 0; }
.cart-item-member { font-size: .68rem; font-weight: 800; color: var(--rose); text-transform: uppercase; letter-spacing: .8px; display: block; }
.cart-item-info strong { display: block; font-size: .88rem; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.cart-item-price { font-size: .9rem; font-weight: 800; color: var(--rose); display: block; margin-top: .2rem; }

.cart-item-qty {
  display: flex; align-items: center; gap: .3rem;
  background: var(--bg-soft); border-radius: 50px;
  padding: .2rem .4rem;
  flex-shrink: 0;
}
.cart-item-qty button {
  width: 26px; height: 26px; border-radius: 50%;
  background: white; border: 1.5px solid var(--border-light);
  display: flex; align-items: center; justify-content: center;
  color: var(--rose); transition: var(--transition);
}
.cart-item-qty button:hover { background: var(--rose); color: white; }
.cart-item-qty span { font-weight: 800; font-size: .88rem; min-width: 20px; text-align: center; }

.cart-item-remove {
  width: 30px; height: 30px; border-radius: 50%; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  color: var(--text-light); transition: var(--transition);
  border: 1.5px solid var(--border-light);
}
.cart-item-remove:hover { color: #E53935; border-color: #E53935; background: #FEE2E2; }

.cart-footer {
  flex-direction: column; gap: .75rem;
  padding: 1.2rem 1.4rem;
  border-top: 1.5px solid var(--border-light);
  flex-shrink: 0;
}
.cart-footer.open, .cart-footer[style*="flex"] { display: flex !important; }

.cart-total {
  display: flex; align-items: center; justify-content: space-between;
  font-size: .95rem;
}
.cart-total span { color: var(--text-muted); font-weight: 600; }
.cart-total strong { font-family: 'Nunito', sans-serif; font-size: 1.2rem; font-weight: 900; color: var(--rose); }

.cart-note { font-size: .73rem; color: var(--text-light); text-align: center; font-weight: 600; }

/* Checkout modal */
.checkout-modal {
  background: white;
  border-radius: 24px;
  width: 100%; max-width: 540px;
  max-height: 92vh;
  overflow-y: auto;
  position: relative;
  box-shadow: 0 20px 60px rgba(61,18,36,.2);
  animation: modalIn .3s ease;
}

.checkout-header {
  text-align: center;
  padding: 2rem 2rem 1.2rem;
  border-bottom: 1.5px solid var(--border-light);
}
.checkout-header svg { margin-bottom: .5rem; }
.checkout-header h2 { font-size: 1.4rem; font-weight: 900; color: var(--text); margin-bottom: .3rem; }
.checkout-header p  { color: var(--text-muted); font-size: .9rem; }

#orderForm { padding: 1.5rem 2rem 2rem; }

.form-group { display: flex; flex-direction: column; gap: .35rem; margin-bottom: 1rem; }
.form-group label { font-size: .72rem; font-weight: 800; text-transform: uppercase; letter-spacing: 1px; color: var(--text-muted); }
.form-group input,
.form-group select,
.form-group textarea {
  padding: .7rem 1rem;
  border: 1.5px solid var(--border-light);
  border-radius: 12px;
  font-size: .92rem;
  font-family: 'Nunito Sans', sans-serif;
  color: var(--text);
  outline: none;
  transition: var(--transition);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--rose);
  box-shadow: 0 0 0 3px rgba(212,132,154,.12);
}
.form-group textarea { resize: vertical; min-height: 72px; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

.checkout-summary {
  background: var(--bg-soft);
  border-radius: 14px;
  border: 1.5px solid var(--border-light);
  padding: 1rem 1.2rem;
  margin-bottom: 1.2rem;
}
.checkout-summary h4 {
  font-size: .72rem; font-weight: 800; text-transform: uppercase;
  letter-spacing: 1px; color: var(--text-muted); margin-bottom: .75rem;
}
.summary-row {
  display: flex; justify-content: space-between;
  font-size: .85rem; padding: .25rem 0;
  border-bottom: 1px solid var(--border-light);
  color: var(--text-muted);
}
.summary-row:last-of-type { border-bottom: none; }
.summary-total {
  display: flex; justify-content: space-between; align-items: center;
  margin-top: .6rem; padding-top: .6rem;
  border-top: 1.5px solid var(--border-light);
  font-size: .95rem;
}
.summary-total strong { color: var(--rose); font-size: 1.1rem; font-weight: 900; }
.summary-note {
  display: flex; align-items: center; gap: .3rem;
  font-size: .73rem; color: var(--text-light);
  margin-top: .5rem; font-weight: 600;
}
.summary-note svg { color: var(--rose); }

.form-error {
  background: #FEE2E2; color: #B91C1C;
  padding: .65rem 1rem; border-radius: 10px;
  font-size: .83rem; margin-bottom: 1rem;
  font-weight: 600;
}

/* Sucesso */
.success-screen {
  display: flex; flex-direction: column; align-items: center;
  text-align: center; padding: 3rem 2rem;
  gap: .75rem;
}
.success-check { color: var(--rose); }
.success-screen h2 { font-size: 1.5rem; font-weight: 900; color: var(--text); }
.success-screen p { color: var(--text-muted); font-weight: 600; }
.success-sub { font-size: .85rem; color: var(--text-muted); max-width: 380px; line-height: 1.6; font-weight: 400 !important; }

/* Loading state products */
.products-loading {
  grid-column: 1 / -1;
  display: flex; flex-direction: column; align-items: center; gap: 1rem;
  padding: 3rem; color: var(--text-muted);
}
.loading-spinner { animation: floatSway 2s ease-in-out infinite alternate; }

@media (max-width: 480px) {
  .cart-drawer { max-width: 100%; }
  .form-row { grid-template-columns: 1fr; }
  #orderForm { padding: 1rem 1.2rem 1.5rem; }
}
