/* ===== Base & tema ===== */
:root {
  --pink: #ff2d92;
  --pink-dark: #c2127a;
  --pink-light: #ffe1f0;
  --purple: #7b2c8e;
  --blue: #2aa9dc;
  --dark: #24102a;
  --ink: #3a1233;
  --bg: #fff8fb;
  --card-bg: #ffffff;
  --accent: #ff7a1a;
  --accent-dark: #b34e00;
  --radius: 18px;
  --shadow: 0 10px 30px rgba(123, 20, 90, 0.12);
  --font-heading: 'Fredoka', sans-serif;
  --font-body: 'Poppins', sans-serif;
}

html[data-season="halloween"] { --accent: #ff7a1a; --accent-dark: #b34e00; }
html[data-season="natal"]     { --accent: #1e7d4f; --accent-dark: #0f4d2f; }
html[data-season="carnaval"]  { --accent: #ffcc00; --accent-dark: #b38600; }
html[data-season="junina"]    { --accent: #c9702e; --accent-dark: #8a4413; }

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.55;
}
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  color: var(--dark);
  margin: 0 0 .5em;
}
p { margin: 0 0 1em; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}
.text-accent { color: var(--pink); }

/* ===== Botões ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 15px;
  padding: 12px 22px;
  border-radius: 100px;
  border: none;
  cursor: pointer;
  transition: transform .15s ease, box-shadow .15s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-lg { padding: 16px 30px; font-size: 17px; }
.btn-sm { padding: 8px 16px; font-size: 13px; }
.btn-block { width: 100%; }
.btn-whatsapp {
  background: linear-gradient(135deg, var(--pink), var(--pink-dark));
  color: #fff;
  box-shadow: 0 8px 20px rgba(255, 45, 146, .35);
}
.btn-outline {
  background: transparent;
  color: var(--pink-dark);
  border: 2px solid var(--pink);
}
.icon-wpp { width: 18px; height: 18px; fill: currentColor; }

@keyframes pulse-glow {
  0%   { box-shadow: 0 0 0 0 rgba(255, 45, 146, .55); }
  70%  { box-shadow: 0 0 0 16px rgba(255, 45, 146, 0); }
  100% { box-shadow: 0 0 0 0 rgba(255, 45, 146, 0); }
}
.btn-pulse { animation: pulse-glow 2.2s infinite; }
@media (prefers-reduced-motion: reduce) {
  .btn-pulse { animation: none; }
}

/* ===== Header ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 248, 251, .92);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid rgba(123, 20, 90, .08);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 24px;
}
.logo-img { height: 44px; }
.main-nav {
  display: flex;
  gap: 22px;
  font-weight: 500;
  font-size: 14.5px;
}
.main-nav a:hover { color: var(--pink); }
.header-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

/* ===== Season switch ===== */
.season-switch {
  display: flex;
  gap: 6px;
  background: var(--pink-light);
  padding: 6px;
  border-radius: 20px;
}
.season-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  border: none;
  background: transparent;
  padding: 8px 12px;
  border-radius: 14px;
  cursor: pointer;
  line-height: 1;
  transition: background .15s ease, transform .15s ease;
}
.season-btn:hover { transform: scale(1.05); }
.season-btn.active {
  background: #fff;
  box-shadow: 0 4px 10px rgba(123, 20, 90, .18);
}
.season-icon { font-size: 22px; }
.season-label { font-size: 10.5px; font-weight: 600; color: var(--ink); white-space: nowrap; }

.season-switch-lg { gap: 10px; padding: 10px; }
.season-switch-lg .season-btn { padding: 14px 22px; gap: 6px; }
.season-switch-lg .season-icon { font-size: 40px; }
.season-switch-lg .season-label { font-size: 14px; }

/* ===== Hero ===== */
.hero { padding: 56px 0 40px; overflow: hidden; }
.hero-inner {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 48px;
  align-items: center;
}
.pill {
  display: inline-block;
  background: var(--pink-light);
  color: var(--pink-dark);
  font-weight: 600;
  font-size: 13.5px;
  padding: 8px 16px;
  border-radius: 100px;
  margin-bottom: 18px;
}
.hero h1 {
  font-size: clamp(32px, 4.2vw, 50px);
  line-height: 1.12;
  margin-bottom: 18px;
}
.hero-sub { font-size: 17px; color: #5c3a55; max-width: 46ch; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin: 26px 0; }
.hero-trust {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-size: 14px;
  font-weight: 500;
  color: #6b4863;
}
.hero-media {
  position: relative;
  min-height: 380px;
}
.hero-img {
  position: absolute;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  object-fit: cover;
  border: 5px solid #fff;
}
.hero-img-1 { width: 62%; top: 0; right: 8%; height: 320px; z-index: 2; }
.hero-img-2 { width: 52%; bottom: 0; left: 0; height: 260px; z-index: 1; transform: rotate(-4deg); }
.badge-discount {
  position: absolute;
  right: -6px;
  bottom: 30px;
  background: var(--dark);
  color: #fff;
  font-family: var(--font-heading);
  font-size: 26px;
  font-weight: 700;
  padding: 14px 18px;
  border-radius: 50%;
  width: 108px;
  height: 108px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  transform: rotate(8deg);
  z-index: 3;
  box-shadow: var(--shadow);
}
.badge-discount small { font-size: 9px; font-family: var(--font-body); font-weight: 500; line-height: 1.1; }

/* ===== Benefícios ===== */
.benefits { padding: 40px 0; }
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.benefit-card {
  background: var(--card-bg);
  border-radius: var(--radius);
  padding: 26px 22px;
  box-shadow: var(--shadow);
  text-align: left;
}
.benefit-emoji { font-size: 30px; }
.benefit-card h3 { font-size: 17px; margin: 12px 0 8px; }
.benefit-card p { font-size: 14px; color: #6b4863; margin: 0; }

/* ===== Produtos ===== */
.products { padding: 50px 0 60px; }
.products-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 30px;
}
.products-head h2 { font-size: clamp(24px, 3vw, 34px); }
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.product-card {
  background: var(--card-bg);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform .2s ease;
}
.product-card:hover { transform: translateY(-6px); }
.product-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  height: auto;
  object-fit: cover;
}
.product-card-body { padding: 16px 18px 20px; }
.product-card-body h3 { font-size: 16.5px; margin: 0 0 6px; }
.product-card-body p { font-size: 13px; color: #6b4863; margin: 0 0 12px; }
.product-tag {
  display: inline-block;
  font-size: 11.5px;
  font-weight: 600;
  color: var(--accent-dark);
  background: color-mix(in srgb, var(--accent) 18%, white);
  padding: 4px 10px;
  border-radius: 100px;
  margin-bottom: 10px;
}
.product-card .btn { font-size: 13px; padding: 9px 16px; }
.products-cta { text-align: center; margin-top: 36px; }
.products-empty {
  grid-column: 1 / -1;
  text-align: center;
  background: var(--card-bg);
  border-radius: var(--radius);
  padding: 50px 24px;
  box-shadow: var(--shadow);
}
.products-empty h3 { font-size: 20px; }
.products-empty p { color: #6b4863; max-width: 44ch; margin: 0 auto 20px; }

/* ===== Como funciona ===== */
.how-it-works { padding: 50px 0 60px; background: linear-gradient(180deg, #fff 0%, var(--pink-light) 100%); }
.how-it-works h2 { text-align: center; margin-bottom: 34px; font-size: clamp(24px, 3vw, 34px); }
.steps-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}
.step-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 22px 16px;
  box-shadow: var(--shadow);
  text-align: left;
}
.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--pink);
  color: #fff;
  font-family: var(--font-heading);
  font-weight: 700;
  margin-bottom: 12px;
}
.step-card h3 { font-size: 16px; margin: 0 0 6px; }
.step-card p { font-size: 13.5px; color: #6b4863; margin: 0; }

/* ===== Depoimentos ===== */
.testimonials { padding: 50px 0 60px; text-align: center; }
.testimonials h2 { font-size: clamp(24px, 3vw, 34px); }
.testimonials-sub { font-weight: 600; color: var(--pink-dark); margin-bottom: 30px; }
.reviews-widget-placeholder {
  border: 2px dashed var(--pink);
  border-radius: var(--radius);
  padding: 26px;
  background: #fff;
}
.placeholder-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--pink-dark);
  text-transform: uppercase;
  letter-spacing: .04em;
  margin-bottom: 20px;
}
.reviews-placeholder-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.review-card {
  background: var(--pink-light);
  border-radius: 14px;
  padding: 20px;
  text-align: left;
  opacity: .75;
}
.review-stars { color: #f5a623; margin-bottom: 8px; letter-spacing: 2px; }
.review-author { display: block; margin-top: 10px; font-weight: 600; font-size: 13px; }

/* ===== Formulário ===== */
.lead-form { padding: 50px 0 70px; }
.form-wrapper {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 46px;
  align-items: flex-start;
  background: linear-gradient(135deg, var(--purple), var(--pink-dark));
  border-radius: 28px;
  padding: 44px;
  color: #fff;
}
.form-copy h2 { color: #fff; }
.form-copy p { color: #f6d9ee; font-size: 15.5px; }
.lead-form-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
}
.form-row { margin-bottom: 16px; display: flex; flex-direction: column; gap: 6px; }
.form-row-split { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-row-split > div { display: flex; flex-direction: column; gap: 6px; }
label { font-size: 13.5px; font-weight: 600; color: var(--ink); }
input, select {
  font-family: var(--font-body);
  font-size: 14.5px;
  padding: 11px 14px;
  border-radius: 10px;
  border: 1.5px solid #eccbdf;
  background: #fffafd;
  color: var(--ink);
}
input:focus, select:focus {
  outline: none;
  border-color: var(--pink);
}
.form-note { font-size: 12px; color: #8a6a83; margin: 10px 0 0; text-align: center; }

/* ===== Footer ===== */
.site-footer { background: var(--dark); color: #f3e3ee; padding: 56px 0 0; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr .8fr .8fr 1fr;
  gap: 36px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,.12);
}
.footer-logo { height: 42px; margin-bottom: 14px; filter: brightness(0) invert(1); }
.footer-brand p { font-size: 13.5px; color: #d7b9cf; }
.footer-keywords { font-size: 11.5px; color: #a988a3; }
.footer-col h4 { color: #fff; font-size: 15px; margin-bottom: 12px; }
.footer-col p { font-size: 13.5px; color: #d7b9cf; }
.footer-socials { display: flex; flex-direction: column; gap: 6px; margin-top: 14px; font-size: 13px; }
.footer-socials a:hover { color: var(--pink); }
.footer-map iframe { width: 100%; height: 150px; border: 0; border-radius: 12px; }
.footer-bottom { padding: 18px 24px; font-size: 12.5px; color: #a988a3; text-align: center; }

/* ===== Botão flutuante WhatsApp ===== */
.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--pink), var(--pink-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 26px rgba(255, 45, 146, .45);
  z-index: 60;
}
.whatsapp-float svg { width: 30px; height: 30px; fill: #fff; }

/* ===== Responsivo ===== */
@media (max-width: 1240px) {
  .header-actions .season-label { display: none; }
  .header-actions .season-btn { padding: 8px; }
  .main-nav { gap: 14px; }
}
@media (max-width: 980px) {
  .main-nav { display: none; }
  .hero-inner { grid-template-columns: 1fr; }
  .hero-media { order: -1; min-height: 300px; margin-bottom: 10px; }
  .benefits-grid { grid-template-columns: repeat(2, 1fr); }
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .form-wrapper { grid-template-columns: 1fr; padding: 28px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .reviews-placeholder-grid { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .benefits-grid { grid-template-columns: 1fr; }
  .products-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .form-row-split { grid-template-columns: 1fr; }
  .header-actions .season-switch { display: none; }
}
