@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@400;600;700;800;900&family=Dancing+Script:wght@700;800&family=Pacifico&display=swap');

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --pink:       #e2498a;
  --pink-dark:  #c03070;
  --pink-light: #ff83b3;
  --pink-bg:    #fff5fb;
  --pink-soft:  #fce8f3;
  --gold:       #f1b51e;
  --green:      #25d366;
  --text:       #24272d;
  --text-2:     #6b7280;
  --border:     #f0e0ea;
  --white:      #ffffff;
  --radius:     12px;
  /* compat aliases for old pages */
  --rose:         #e2498a;
  --rose-dark:    #c03070;
  --rose-light:   #ff83b3;
  --rose-bg:      #fff5fb;
  --rose-soft:    #fce8f3;
  --purple:       #e2498a;
  --purple-dark:  #c03070;
  --bg:           #fff5fb;
  --yellow:       #f1b51e;
  --text-muted:   #6b7280;
}

html { scroll-behavior: smooth; }
body { font-family: 'Nunito', sans-serif; background: #fff; color: var(--text); line-height: 1.6; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; }

/* ══ TOPBAR ══════════════════════════════════════════════════════ */
.topbar {
  background: var(--pink); color: white; text-align: center;
  padding: 8px 16px; font-size: 0.8rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center; gap: 8px;
}
.topbar span { font-weight: 400; opacity: .9; }

/* ══ HEADER ══════════════════════════════════════════════════════ */
header {
  background: white;
  border-bottom: 2px solid var(--pink-soft);
  position: sticky; top: 0; z-index: 300;
  box-shadow: 0 2px 12px rgba(226,73,138,0.08);
}
.header-inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 24px; height: 82px; gap: 16px;
}

/* LOGO */
.logo { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.logo-img { max-height: 90px; max-width: 260px; object-fit: contain; display: block; }
.logo-text-wrap { line-height: 1.2; }
.logo-name {
  font-family: 'Dancing Script', cursive;
  font-size: 1.6rem; font-weight: 800; color: var(--text); letter-spacing: -0.5px;
}
.logo-tag {
  display: inline-block;
  background: var(--pink); color: white;
  font-size: 0.62rem; font-weight: 800; text-transform: uppercase;
  letter-spacing: 1px; padding: 2px 10px; border-radius: 20px; margin-top: 2px;
}
/* fallback avatar */
.logo-avatar {
  width: 52px; height: 52px; border-radius: 50%;
  background: linear-gradient(135deg, var(--pink), var(--pink-dark));
  display: flex; align-items: center; justify-content: center;
  color: white; font-size: 1rem; font-weight: 900; flex-shrink: 0;
  font-family: 'Pacifico', cursive;
}
.logo-sub { font-size: 0.67rem; font-weight: 700; color: var(--text-2); }

/* NAV */
nav { display: flex; align-items: center; gap: 2px; }
nav a {
  padding: 8px 13px; border-radius: 8px;
  font-weight: 700; font-size: 0.82rem; color: var(--text-2); transition: all 0.18s;
}
nav a:hover { color: var(--pink); background: var(--pink-soft); }
nav a.btn-nav {
  background: linear-gradient(135deg, #ff6ec7, var(--pink), var(--pink-dark));
  color: white; padding: 10px 22px; border-radius: 30px;
  font-weight: 800; letter-spacing: 0.2px;
  box-shadow: 0 4px 16px rgba(226,73,138,0.40);
  position: relative;
  white-space: nowrap; flex-shrink: 0;
}
nav a.btn-nav:hover {
  box-shadow: 0 8px 24px rgba(226,73,138,0.55), 0 0 0 4px rgba(226,73,138,0.12);
}

/* SUBNAV / CATEGORY ROW */
.subnav {
  background: var(--pink-soft); border-bottom: 1px solid var(--border);
  overflow-x: auto; white-space: nowrap;
  scrollbar-width: none; -ms-overflow-style: none;
}
.subnav::-webkit-scrollbar { display: none; }
.subnav-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 24px;
  display: flex; gap: 0;
}
.subnav a {
  display: inline-block; padding: 9px 16px; font-size: 0.78rem; font-weight: 700;
  color: var(--pink-dark); transition: all 0.18s; white-space: nowrap; border-bottom: 2px solid transparent;
}
.subnav a:hover { color: var(--pink); background: white; border-bottom-color: var(--pink); }

/* ══ HERO ════════════════════════════════════════════════════════ */
.hero {
  background: linear-gradient(135deg, #fff0f8 0%, #fce8f3 60%, #ffd6ee 100%);
  padding: 0; overflow: hidden; position: relative;
}
.hero-inner {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 380px; align-items: end;
  min-height: 380px;
}
.hero-content { padding: 52px 32px 52px 0; }
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: white; border: 1.5px solid #f9b8d8; border-radius: 30px;
  padding: 5px 15px; font-size: 0.76rem; font-weight: 800; color: var(--pink-dark);
  margin-bottom: 18px;
}
.hero h1 {
  font-family: 'Nunito', sans-serif;
  font-size: clamp(1.7rem, 3.5vw, 2.6rem); font-weight: 900; line-height: 1.2;
  color: var(--text); margin-bottom: 14px;
}
.hero h1 em { font-style: normal; color: var(--pink); }
.hero p { font-size: 0.95rem; color: var(--text-2); max-width: 480px; margin-bottom: 28px; line-height: 1.7; }
.hero-btns { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 20px; }
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: linear-gradient(135deg, var(--pink), var(--pink-dark));
  color: white; padding: 13px 26px; border-radius: 30px;
  font-weight: 800; font-size: 0.9rem;
  box-shadow: 0 5px 18px rgba(226,73,138,0.4); transition: all 0.2s;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(226,73,138,0.55); }
.btn-secondary {
  display: inline-flex; align-items: center; gap: 8px;
  background: white; color: var(--pink); padding: 13px 26px; border-radius: 30px;
  font-weight: 800; font-size: 0.9rem; border: 2px solid var(--pink);
  transition: all 0.2s;
}
.btn-secondary:hover { background: var(--pink-soft); }
.hero-badges { display: flex; gap: 18px; flex-wrap: wrap; }
.hero-badge-item { display: flex; align-items: center; gap: 6px; font-size: 0.78rem; font-weight: 700; color: var(--pink-dark); }
.hero-badge-item span { font-size: 1rem; }

/* HERO VISUAL */
.hero-visual {
  display: flex; align-items: flex-end; justify-content: center;
  position: relative;
}
.hero-char-img {
  height: 340px; width: auto; object-fit: contain; object-position: bottom;
  display: block; filter: drop-shadow(0 8px 24px rgba(226,73,138,0.2));
}
.hero-avatar-big {
  width: 200px; height: 200px; border-radius: 50%; margin-bottom: 40px;
  background: linear-gradient(135deg, var(--pink-light), var(--pink));
  display: flex; align-items: center; justify-content: center;
  color: white; font-family: 'Pacifico', cursive; font-size: 3rem;
  box-shadow: 0 10px 36px rgba(226,73,138,0.35);
}
.float-card {
  position: absolute; background: white; border-radius: 12px;
  padding: 10px 14px; box-shadow: 0 6px 20px rgba(0,0,0,0.10);
  font-size: 0.75rem; font-weight: 700;
}
.float-card.f1 { bottom: 50px; left: -10px; }
.float-card.f2 { top: 40px; right: -10px; }
.float-card .fc-big { font-size: 1.2rem; font-weight: 900; color: var(--pink); }
.float-card .fc-sm  { color: var(--text-2); font-size: 0.68rem; }

/* WAVE */
.hero-wave { line-height: 0; margin-top: -2px; }
.hero-wave svg { width: 100%; display: block; }

/* ══ BANNER ══════════════════════════════════════════════════════ */
.banner-section { background: white; padding: 28px 24px 0; }
.banner-inner { max-width: 1200px; margin: 0 auto; }
.banner-img {
  width: 100%; height: auto; border-radius: 16px; display: block;
  box-shadow: 0 4px 24px rgba(226,73,138,0.10); transition: transform 0.3s;
}
.banner-img:hover { transform: scale(1.004); }

/* ══ TRUST BAR ══════════════════════════════════════════════════ */
.trust-bar { background: white; padding: 28px 24px; border-bottom: 1px solid var(--border); }
.trust-inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; align-items: center; justify-content: center;
  gap: 40px; flex-wrap: wrap;
}
.trust-item { display: flex; align-items: center; gap: 12px; }
.trust-icon { font-size: 1.6rem; }
.trust-label strong { display: block; font-size: 0.85rem; font-weight: 800; color: var(--text); }
.trust-label span  { font-size: 0.72rem; color: var(--text-2); }

/* ══ SECTIONS ════════════════════════════════════════════════════ */
.section-inner { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section-header { text-align: center; margin-bottom: 36px; }
.section-tag {
  display: inline-block; background: var(--pink-soft); color: var(--pink-dark);
  font-size: 0.72rem; font-weight: 800; text-transform: uppercase;
  letter-spacing: 1.5px; padding: 4px 14px; border-radius: 20px; margin-bottom: 10px;
}
.section-header h2 {
  font-family: 'Nunito', sans-serif; font-size: clamp(1.4rem,2.5vw,1.9rem);
  font-weight: 900; color: var(--text);
}
.section-header p { color: var(--text-2); margin-top: 6px; font-size: 0.9rem; }

/* ══ CATEGORIES ══════════════════════════════════════════════════ */
.cats-section { padding: 48px 24px 20px; background: white; }
.cats-grid {
  display: flex; flex-wrap: wrap; gap: 10px;
  justify-content: center; margin-top: 8px;
}
/* Single-row horizontal scroll chips (loja page) */
.cats-scroll {
  display: flex; gap: 8px; overflow-x: auto; flex-wrap: nowrap;
  scrollbar-width: none; -ms-overflow-style: none;
  padding-bottom: 2px;
}
.cats-scroll::-webkit-scrollbar { display: none; }
.cat-chip {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 7px 16px; border-radius: 30px; font-size: 0.78rem; font-weight: 700;
  background: var(--pink-soft); color: var(--pink-dark); border: 1.5px solid #f9b8d8;
  transition: all 0.18s; white-space: nowrap; flex-shrink: 0;
}
.cat-chip:hover, .cat-chip.active {
  background: var(--pink); color: white; border-color: var(--pink);
  box-shadow: 0 3px 10px rgba(226,73,138,0.3); transform: translateY(-1px);
}

/* ══ PRODUCTS GRID ═══════════════════════════════════════════════ */
.products-section { padding: 28px 20px 80px; background: #f7f4fd; }
.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.product-card {
  background: white; border-radius: 18px;
  border: none;
  overflow: hidden;
  transition: transform 0.32s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.3s ease;
  display: flex; flex-direction: column;
  box-shadow: 0 2px 14px rgba(80,40,120,0.08);
}
.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 44px rgba(226,73,138,0.2);
}
.product-img {
  aspect-ratio: 3/4; overflow: hidden; background: var(--pink-bg);
  position: relative; flex-shrink: 0;
}
.product-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.4s ease;
}
.product-card:hover .product-img img { transform: scale(1.07); }

.product-info { padding: 10px 12px 12px; flex: 1; display: flex; flex-direction: column; gap: 6px; }
.product-cat {
  display: inline-block; align-self: flex-start;
  font-size: 0.58rem; font-weight: 800; text-transform: uppercase;
  letter-spacing: 0.6px; color: var(--pink-dark);
  background: var(--pink-soft); border-radius: 20px;
  padding: 2px 8px;
}
.product-name {
  font-size: 0.82rem; font-weight: 800; color: var(--text);
  line-height: 1.32; flex: 1;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.product-footer { display: flex; align-items: center; gap: 8px; }
.product-price { font-size: 0.9rem; font-weight: 900; color: var(--pink-dark); white-space: nowrap; }
.btn-cart {
  flex: 1; height: 32px; border-radius: 20px; font-size: 0;
  background: linear-gradient(135deg, var(--pink), var(--pink-dark));
  border: none; cursor: pointer; color: white;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.18s; box-shadow: 0 3px 10px rgba(226,73,138,0.3);
}
.btn-cart::before { content: 'Comprar'; font-size: 0.7rem; font-weight: 800; font-family: 'Nunito', sans-serif; }
.btn-cart:hover { transform: scale(1.04); box-shadow: 0 5px 14px rgba(226,73,138,0.5); }

/* ══ PLANS SECTION ═══════════════════════════════════════════════ */
.plans-section {
  background: linear-gradient(145deg, #3a1856 0%, #6b2c91 50%, #a84d8e 100%);
  padding: 64px 24px;
}
.plans-grid {
  display: grid; grid-template-columns: repeat(2,1fr);
  gap: 24px; max-width: 780px; margin: 0 auto;
}
.plan-card {
  background: white; border-radius: 20px; padding: 32px 28px;
  position: relative; border: 2px solid transparent; text-align: center;
  transition: all 0.2s;
}
.plan-card.featured { border-color: var(--gold); box-shadow: 0 8px 32px rgba(241,181,30,0.25); }
.plan-badge {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--gold); color: #1f1235; padding: 4px 20px; border-radius: 20px;
  font-size: 0.72rem; font-weight: 800; white-space: nowrap;
}
.plan-name { font-size: 1rem; font-weight: 800; color: var(--text-2); margin-bottom: 8px; }
.plan-price { font-size: 2.6rem; font-weight: 900; color: var(--text); line-height: 1; margin-bottom: 4px; }
.plan-features { list-style: none; text-align: left; margin: 18px 0 22px; }
.plan-features li {
  padding: 6px 0; font-size: 0.83rem; display: flex; align-items: flex-start; gap: 8px;
  border-bottom: 1px solid #f3e8ff;
}
.plan-features li::before { content: '✓'; color: var(--green); font-weight: 900; flex-shrink: 0; }
.btn-plan {
  display: block; width: 100%; padding: 13px; border-radius: 30px; text-align: center;
  background: linear-gradient(135deg, var(--pink), var(--pink-dark));
  color: white; font-weight: 800; font-size: 0.9rem;
  box-shadow: 0 4px 14px rgba(226,73,138,0.35); transition: all 0.2s;
}
.btn-plan:hover { transform: translateY(-2px); box-shadow: 0 7px 20px rgba(226,73,138,0.5); }

/* ══ TESTIMONIALS ════════════════════════════════════════════════ */
.testimonials-section { padding: 64px 24px; background: var(--pink-bg); }
.testi-screenshots-grid {
  display: grid; grid-template-columns: repeat(4,1fr); gap: 16px; margin-top: 8px;
}
.testi-screenshot-wrap {
  border-radius: 14px; overflow: hidden;
  box-shadow: 0 4px 18px rgba(0,0,0,0.09); background: #f9fafb;
  transition: transform 0.3s, box-shadow 0.3s;
}
.testi-screenshot-wrap:hover {
  transform: translateY(-4px); box-shadow: 0 10px 28px rgba(226,73,138,0.15);
}
.testi-screenshot-wrap img { width:100%; height:360px; object-fit:cover; object-position:top; display:block; }
.testimonials-grid {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; margin-top: 40px;
}
.testimonial-card {
  background: white; border-radius: 16px; padding: 24px;
  box-shadow: 0 4px 20px rgba(226,73,138,0.07); border: 1.5px solid var(--border);
}
.testi-stars { color: var(--gold); font-size: 1.1rem; margin-bottom: 12px; }
.testi-text { font-size: 0.86rem; color: var(--text-2); line-height: 1.65; margin-bottom: 18px; font-style: italic; }
.testi-author { display: flex; align-items: center; gap: 10px; }
.testi-av {
  width: 38px; height: 38px; border-radius: 50%; flex-shrink: 0;
  background: linear-gradient(135deg, var(--pink-light), var(--pink));
  display: flex; align-items: center; justify-content: center;
  color: white; font-size: 0.75rem; font-weight: 800;
}
.testi-name strong { display:block; font-size:0.82rem; color:var(--text); }
.testi-name span   { font-size:0.72rem; color:var(--text-2); }

/* ══ FAQ ══════════════════════════════════════════════════════════ */
.faq-section { padding: 64px 24px; background: white; }
.faq-list { max-width: 720px; margin: 0 auto; }
.faq-item {
  border: 1.5px solid var(--border); border-radius: 12px; margin-bottom: 10px; overflow: hidden;
}
.faq-q {
  padding: 16px 20px; font-weight: 800; font-size: 0.9rem; cursor: pointer;
  display: flex; align-items: center; justify-content: space-between;
  color: var(--text); transition: background 0.18s; user-select: none;
}
.faq-q::after { content: '+'; font-size: 1.3rem; color: var(--pink); flex-shrink: 0; }
.faq-item.open .faq-q { background: var(--pink-soft); color: var(--pink-dark); }
.faq-item.open .faq-q::after { content: '−'; }
.faq-a {
  display: none; padding: 0 20px 16px;
  font-size: 0.86rem; color: var(--text-2); line-height: 1.7;
}
.faq-item.open .faq-a { display: block; }

/* ══ LOJA HERO ════════════════════════════════════════════════════ */
.loja-hero {
  background: linear-gradient(135deg, #1a0633 0%, #4a1272 35%, #8e2c8e 65%, #e2498a 100%);
  padding: 52px 20px 60px; text-align: center;
  position: relative; overflow: hidden;
}
.loja-hero::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 15% 60%, rgba(255,100,200,0.18) 0%, transparent 55%),
    radial-gradient(ellipse at 85% 25%, rgba(90,0,160,0.25) 0%, transparent 55%);
  pointer-events: none;
}
.loja-hero-inner { position: relative; max-width: 580px; margin: 0 auto; }
.loja-hero-badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(255,255,255,0.12); backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.22); border-radius: 30px;
  padding: 6px 18px; font-size: 0.74rem; font-weight: 800; color: rgba(255,255,255,0.95);
  margin-bottom: 20px; letter-spacing: 0.2px;
}
.loja-hero-title {
  font-size: clamp(1.65rem, 4.5vw, 2.7rem); font-weight: 900;
  color: white; line-height: 1.15; margin-bottom: 14px;
}
.loja-hero-title em { font-style: normal; color: #ffb3d9; }
.loja-hero-sub {
  color: rgba(255,255,255,0.75); font-size: 0.9rem; line-height: 1.65;
  max-width: 400px; margin: 0 auto 28px;
}
.loja-hero-stats {
  display: flex; justify-content: center;
  background: rgba(255,255,255,0.1); backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.18); border-radius: 16px;
  overflow: hidden; max-width: 300px; margin: 0 auto;
}
.loja-stat {
  flex: 1; padding: 13px 10px; text-align: center;
  border-right: 1px solid rgba(255,255,255,0.13);
}
.loja-stat:last-child { border-right: none; }
.loja-stat span { display: block; font-size: 1.05rem; font-weight: 900; color: white; line-height: 1; }
.loja-stat small { display: block; font-size: 0.62rem; color: rgba(255,255,255,0.6); font-weight: 600; margin-top: 3px; letter-spacing: 0.2px; }

/* ══ LOJA FILTER BAR ══════════════════════════════════════════════ */
.loja-filter-wrap {
  background: white; padding: 16px 20px 14px;
  border-bottom: 1px solid var(--border);
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
}
.loja-filter-inner { max-width: 1200px; margin: 0 auto; }
.loja-search-bar { display: flex; gap: 10px; margin-bottom: 12px; }
.loja-search-bar input {
  flex: 1; max-width: 500px; padding: 11px 20px;
  border: 2px solid var(--border); border-radius: 30px;
  font-size: 0.9rem; font-family: inherit; outline: none;
  transition: border-color 0.2s, box-shadow 0.2s; background: #fafafa;
}
.loja-search-bar input:focus {
  border-color: var(--pink); background: white;
  box-shadow: 0 0 0 3px rgba(226,73,138,0.1);
}
.loja-search-bar button {
  background: linear-gradient(135deg, var(--pink), var(--pink-dark));
  color: white; border: none; padding: 11px 24px;
  border-radius: 30px; font-weight: 800; font-size: 0.82rem; cursor: pointer;
  transition: all 0.18s; box-shadow: 0 3px 12px rgba(226,73,138,0.3); flex-shrink: 0;
}
.loja-search-bar button:hover { transform: translateY(-1px); box-shadow: 0 5px 16px rgba(226,73,138,0.45); }

/* ══ SHOP PAGE ════════════════════════════════════════════════════ */
.shop-hero {
  background: linear-gradient(135deg, var(--pink-bg), var(--pink-soft));
  padding: 36px 24px; text-align: center; border-bottom: 1px solid var(--border);
}
.shop-hero h1 { font-size: clamp(1.4rem,2.5vw,1.9rem); font-weight: 900; color: var(--text); }
.shop-hero p  { color: var(--text-2); margin-top: 6px; font-size: 0.88rem; }

.shop-filters { background: white; padding: 20px 24px; border-bottom: 1px solid var(--border); }
.search-bar { display: flex; gap: 10px; max-width: 480px; }
.search-bar input {
  flex: 1; padding: 10px 16px; border: 1.5px solid var(--border);
  border-radius: 30px; font-size: 0.85rem; font-family: inherit;
  outline: none; transition: border-color 0.2s;
}
.search-bar input:focus { border-color: var(--pink); }
.search-bar button {
  background: var(--pink); color: white; border: none; padding: 10px 20px;
  border-radius: 30px; font-weight: 800; font-size: 0.82rem; cursor: pointer;
  transition: background 0.18s;
}
.search-bar button:hover { background: var(--pink-dark); }

.cat-chips-row { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 14px; }

.shop-grid-wrap { padding: 28px 24px 60px; }

.results-info {
  font-size: 0.8rem; font-weight: 700; color: var(--text-2);
  margin-bottom: 16px; letter-spacing: 0.2px;
}
/* Badge "Mais Vendido" nos cards */
.badge-vendido {
  position: absolute; top: 8px; left: 8px; z-index: 3;
  background: linear-gradient(135deg, #e2498a, #c03070);
  color: white; font-size: 0.58rem; font-weight: 800;
  letter-spacing: 0.4px; text-transform: uppercase;
  padding: 3px 9px; border-radius: 20px;
  box-shadow: 0 2px 8px rgba(226,73,138,0.45);
  pointer-events: none;
}

/* ══ PREVIEW GALLERY BUTTON ══════════════════════════════════════ */
.btn-preview {
  position: absolute; bottom: 8px; right: 8px; z-index: 2;
  background: rgba(0,0,0,0.55); backdrop-filter: blur(4px);
  color: white; border: none; cursor: pointer;
  font-size: 0.62rem; font-weight: 800; font-family: 'Nunito', sans-serif;
  padding: 4px 8px; border-radius: 20px; letter-spacing: 0.3px;
  transition: background 0.18s;
}
.btn-preview:hover { background: rgba(226,73,138,0.85); }
.product-img { position: relative; }

/* ══ PREVIEW LIGHTBOX ════════════════════════════════════════════ */
#previewModal {
  display: none; position: fixed; inset: 0; z-index: 9000;
  background: rgba(0,0,0,0.88); align-items: center; justify-content: center;
  padding: 16px;
}
#previewModal.open { display: flex; }
.preview-box {
  background: white; border-radius: 20px; overflow: hidden;
  max-width: 480px; width: 100%; max-height: 90vh;
  display: flex; flex-direction: column;
  box-shadow: 0 24px 80px rgba(0,0,0,0.5);
}
.preview-header {
  padding: 14px 16px 10px; display: flex; align-items: center;
  justify-content: space-between; border-bottom: 1px solid #f0e0ea;
  flex-shrink: 0;
}
.preview-title {
  font-size: 0.82rem; font-weight: 800; color: #24272d;
  max-width: 80%; overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}
.preview-close {
  width: 32px; height: 32px; border-radius: 50%; border: none; background: #f3e8f8;
  color: #9b2d7a; font-size: 1.1rem; cursor: pointer; display: flex;
  align-items: center; justify-content: center; flex-shrink: 0;
  transition: background 0.18s;
}
.preview-close:hover { background: #e2498a; color: white; }
.preview-sub {
  font-size: 0.68rem; color: #9b7ab0; padding: 4px 16px 8px; flex-shrink: 0;
}
.preview-scroll {
  overflow-y: auto; padding: 12px 16px 16px; display: flex; flex-direction: column; gap: 10px;
}
.preview-scroll img {
  width: 100%; border-radius: 10px; display: block;
  box-shadow: 0 2px 12px rgba(0,0,0,0.12);
}
.preview-footer {
  padding: 12px 16px; border-top: 1px solid #f0e0ea; flex-shrink: 0;
}
.preview-buy-btn {
  display: block; width: 100%; padding: 13px;
  background: linear-gradient(135deg, #e2498a, #c03070);
  color: white; border: none; border-radius: 30px; cursor: pointer;
  font-weight: 800; font-size: 0.88rem; font-family: 'Nunito', sans-serif;
  box-shadow: 0 4px 14px rgba(226,73,138,0.35); transition: all 0.18s;
}
.preview-buy-btn:hover { transform: translateY(-1px); box-shadow: 0 6px 18px rgba(226,73,138,0.5); }
.pagination { display: flex; gap: 8px; justify-content: center; flex-wrap: wrap; margin-top: 40px; }
.pagination button {
  width: 38px; height: 38px; border-radius: 50%; border: 1.5px solid var(--border);
  background: white; font-weight: 700; font-size: 0.82rem; cursor: pointer;
  color: var(--text); transition: all 0.18s;
}
.pagination button:hover, .pagination button.active {
  background: var(--pink); color: white; border-color: var(--pink);
}
.no-results { text-align: center; padding: 60px 24px; color: var(--text-2); }

/* ══ FOOTER ══════════════════════════════════════════════════════ */
footer {
  background: #fdf6fa;
  border-top: 2px solid #f5e0f0;
  color: #b89ab8;
  padding: 0;
}

/* ══ HAMBURGER ════════════════════════════════════════════════════ */
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer;
  padding: 8px; border-radius: 8px; transition: background 0.18s;
  flex-shrink: 0;
}
.hamburger:hover { background: var(--pink-soft); }
.hamburger span {
  display: block; width: 22px; height: 2.5px;
  background: var(--text); border-radius: 2px; transition: all 0.25s;
}
.hamburger.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

.mobile-nav {
  display: none; position: absolute; top: 100%; left: 0; right: 0;
  background: white; border-bottom: 2px solid var(--pink-soft);
  box-shadow: 0 8px 24px rgba(226,73,138,0.12); z-index: 200;
  padding: 12px 16px 16px;
}
.mobile-nav.open { display: flex; flex-direction: column; gap: 2px; }
.mobile-nav a {
  display: block; padding: 12px 16px; border-radius: 10px;
  font-weight: 700; font-size: 0.88rem; color: var(--text-2);
  transition: all 0.18s; text-decoration: none;
}
.mobile-nav a:hover { background: var(--pink-soft); color: var(--pink); }
.mobile-nav .mobile-cta {
  background: linear-gradient(135deg, var(--pink), var(--pink-dark));
  color: white !important; text-align: center; margin-top: 6px;
  box-shadow: 0 4px 14px rgba(226,73,138,0.35);
}
.mobile-nav .mobile-cta:hover { background: var(--pink-dark) !important; }

/* ══ FLOATING WHATSAPP ════════════════════════════════════════════ */
.wa-float {
  position: fixed;
  bottom: 22px;
  right: 22px;
  z-index: 9999;
  width: 62px; height: 62px; border-radius: 50%;
  background: #25d366; color: white;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.7rem; text-decoration: none;
  box-shadow: 0 4px 20px rgba(37,211,102,0.5);
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  animation: wa-btn-pulse 2s ease-in-out infinite;
  cursor: pointer;
}
@supports (bottom: env(safe-area-inset-bottom)) {
  .wa-float { bottom: calc(22px + env(safe-area-inset-bottom)); }
}
.wa-float:active { transform: scale(0.9) translateZ(0); }
@keyframes wa-btn-pulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(37,211,102,0.5), 0 0 0 0 rgba(37,211,102,0.4); }
  50% { box-shadow: 0 4px 20px rgba(37,211,102,0.5), 0 0 0 14px rgba(37,211,102,0); }
}

/* ══ NOTEBOOK THEME ═══════════════════════════════════════════════ */
.faq-section {
  background-image: repeating-linear-gradient(
    transparent, transparent 27px, rgba(226,73,138,0.04) 28px
  );
}

/* ══ LOGO IMAGE ══════════════════════════════════════════════════ */
.logo-img { max-height: 90px; max-width: 260px; object-fit: contain; display: block; }

/* ══ HERO CHAR ═══════════════════════════════════════════════════ */
.hero-teacher-img {
  width: 100%; height: 100%; object-fit: cover; object-position: top center;
  border-radius: 28px 28px 0 0; display: block;
}

/* ══ BREADCRUMB ══════════════════════════════════════════════════ */
.breadcrumb { background: var(--pink-soft); border-bottom: 1px solid var(--border); }
.bread-inner {
  max-width: 1200px; margin: 0 auto; padding: 10px 24px;
  display: flex; align-items: center; gap: 8px;
  font-size: 0.78rem; color: var(--text-2);
}
.bread-inner a { color: var(--pink); font-weight: 600; }
.bread-inner span:last-child { color: var(--text); font-weight: 700; }

/* ══ RESPONSIVE ══════════════════════════════════════════════════ */
@media (max-width: 1100px) {
  .products-grid { grid-template-columns: repeat(3,1fr); }
}
@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
  .hero-inner  { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .plans-grid  { grid-template-columns: 1fr; max-width: 440px; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .testi-screenshots-grid { grid-template-columns: repeat(2,1fr); }
  .testi-screenshot-wrap img { height: 260px; }
  .products-grid { grid-template-columns: repeat(2,1fr); }
}

/* ── Mobile ────────────────────────────────────────────────────── */
@media (max-width: 640px) {

  /* Header & nav */
  .header-inner { padding: 0 10px; height: 58px; gap: 6px; }
  .header-inner > nav { gap: 6px; align-items: center; flex-shrink: 0; }
  .header-inner > nav a:not(.btn-nav):not(#nav-login-btn) { display: none; }
  .hamburger { display: flex; flex-shrink: 0; padding: 6px; }
  .logo-img  { max-height: 42px; max-width: 112px; }
  .logo-name { font-size: 1.25rem; }
  nav a.btn-nav { padding: 8px 13px; font-size: 0.74rem; }
  #nav-login-btn { padding: 7px !important; min-width: 36px; height: 36px; }

  /* Login icon: shrink to circle on mobile */
  #nav-login-btn { padding: 8px !important; border-radius: 50% !important; min-width: 40px; height: 40px; justify-content: center; }
  #nav-login-btn .nl-text { display: none; }

  /* Mobile menu */
  .mobile-nav { padding: 10px 12px 16px; }
  .mobile-nav a { padding: 14px 18px; font-size: 0.92rem; border-radius: 14px; margin-bottom: 2px; }
  .mobile-nav .mobile-cta { padding: 16px 18px; margin-top: 10px; font-size: 0.95rem; border-radius: 14px; }
  #mobile-login-link { padding: 14px 18px; font-size: 0.92rem; border-radius: 14px; margin-top: 4px; }

  /* Topbar */
  .topbar { font-size: 0.7rem; padding: 7px 12px; }
  .topbar span { display: none; }

  /* Hero */
  .hero { padding: 0; }
  .hero-content { padding: 28px 16px; }
  .hero h1 { font-size: 1.5rem; }
  .hero p  { font-size: 0.87rem; margin-bottom: 22px; }
  .hero-btns { flex-direction: column; gap: 10px; }
  .btn-primary, .btn-secondary { justify-content: center; padding: 14px 22px; font-size: 0.9rem; }

  /* Trust bar */
  .trust-inner { gap: 14px; padding: 0 16px; }
  .trust-item:nth-child(n+4) { display: none; }
  .trust-icon { font-size: 1.3rem; }
  .trust-label strong { font-size: 0.78rem; }
  .trust-label span   { font-size: 0.66rem; }

  /* Categories */
  .cats-section { padding: 28px 14px 12px; }
  .cat-chip { padding: 6px 13px; font-size: 0.72rem; }

  /* Loja hero */
  .loja-hero { padding: 36px 16px 44px; }
  .loja-hero-badge { font-size: 0.68rem; padding: 5px 14px; margin-bottom: 14px; }
  .loja-hero-title { font-size: 1.6rem; }
  .loja-hero-sub { font-size: 0.82rem; margin-bottom: 20px; }
  .loja-hero-stats { max-width: 260px; }
  .loja-stat { padding: 11px 8px; }
  .loja-stat span { font-size: 0.95rem; }

  /* Loja filter */
  .loja-filter-wrap { padding: 12px 14px 10px; }
  .loja-search-bar { margin-bottom: 10px; }
  .loja-search-bar input { font-size: 16px; padding: 10px 16px; }
  .loja-search-bar button { padding: 10px 18px; font-size: 0.78rem; }

  /* Products */
  .products-section { padding: 16px 12px 60px; }
  .products-grid { grid-template-columns: repeat(2,1fr); gap: 12px; }
  .product-card { border-radius: 14px; }
  .product-info { padding: 8px 10px 10px; gap: 5px; }
  .product-cat  { font-size: 0.55rem; }
  .product-name { font-size: 0.77rem; -webkit-line-clamp: 2; }
  .product-price { font-size: 0.85rem; }
  .btn-cart { height: 30px; }
  .btn-cart::before { font-size: 0.66rem; }

  /* Shop page */
  .shop-hero { padding: 24px 16px; }
  .shop-hero h1 { font-size: 1.35rem; }
  .shop-filters { padding: 14px 14px; }
  .shop-grid-wrap { padding: 16px 12px 52px; }
  .search-bar { flex-direction: column; gap: 8px; }
  .search-bar input  { font-size: 16px; padding: 12px 16px; } /* 16px prevents iOS zoom */
  .search-bar button { padding: 12px 20px; }
  .cat-chips-row { gap: 6px; margin-top: 10px; }
  .pagination { gap: 6px; margin-top: 28px; }
  .pagination button { width: 36px; height: 36px; font-size: 0.78rem; }

  /* Plans */
  .plans-section { padding: 48px 16px; }
  .plans-grid { max-width: 100%; }
  .plan-card { padding: 28px 20px; }
  .plan-price { font-size: 2.2rem; }
  .plan-features li { font-size: 0.8rem; }
  .btn-plan { padding: 14px; font-size: 0.88rem; }

  /* Section headings */
  .section-header { margin-bottom: 24px; }
  .section-header h2 { font-size: 1.3rem; }
  .section-header p  { font-size: 0.82rem; }
  .section-inner { padding: 0 14px; }

  /* Testimonials */
  .testimonials-section { padding: 40px 14px; }
  .testi-screenshots-grid { gap: 8px; }
  .testi-screenshot-wrap img { height: 190px; }
  .testimonials-grid { gap: 14px; margin-top: 28px; }
  .testimonial-card { padding: 18px; }
  .testi-text { font-size: 0.82rem; }

  /* FAQ */
  .faq-section { padding: 40px 14px; }
  .faq-q { padding: 14px 16px; font-size: 0.85rem; }
  .faq-a { padding: 0 16px 14px; font-size: 0.83rem; }

  /* Breadcrumb */
  .bread-inner { font-size: 0.72rem; }

  /* Subnav */
  .subnav-inner { padding: 0 10px; }
  .subnav a { padding: 8px 12px; font-size: 0.73rem; }

  /* Banner */
  .banner-section { padding: 14px 14px 0; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr; gap: 24px; }
  .footer-bottom { flex-direction: column; text-align: center; gap: 10px; }

  /* Social proof: above WhatsApp button */
  #sp-notif { left: 10px; right: 10px; width: auto; max-width: none; bottom: 82px; border-radius: 16px; }
}

