:root {
  --pink: #ff8fb8;
  --pink-dark: #ff5f96;
  --lilac: #b18cff;
  --cream: #fff8f2;
  --ink: #3a2e35;
  --ink-soft: #6f6069;
  --card: #ffffff;
  --whatsapp: #25d366;
  --radius: 18px;
  --shadow: 0 10px 30px rgba(255, 95, 150, 0.12);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: "Nunito", "Segoe UI", system-ui, -apple-system, Roboto, sans-serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
}

.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}

img { max-width: 100%; display: block; }

a { color: inherit; text-decoration: none; }

h1, h2, h3 {
  margin: 0 0 .5em;
  line-height: 1.2;
  font-family: "Fredoka", "Nunito", "Segoe UI", system-ui, -apple-system, Roboto, sans-serif;
  font-weight: 600;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5em;
  padding: 14px 26px;
  border-radius: 999px;
  font-family: "Fredoka", "Nunito", "Segoe UI", system-ui, -apple-system, Roboto, sans-serif;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
  font-size: 1rem;
}
.btn:hover { transform: translateY(-2px); }

.btn-primary {
  background: linear-gradient(135deg, var(--pink), var(--pink-dark));
  color: #fff;
  box-shadow: var(--shadow);
}
.btn-outline {
  background: transparent;
  color: var(--pink-dark);
  border: 2px solid var(--pink-dark);
}
.btn-whatsapp {
  background: var(--whatsapp);
  color: #fff;
  box-shadow: 0 10px 24px rgba(37, 211, 102, .25);
}
.btn-small {
  padding: 8px 18px;
  font-size: .9rem;
  background: var(--ink);
  color: #fff;
}
.btn-small:hover { background: var(--pink-dark); }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 248, 242, .9);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(0,0,0,.05);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 8px;
  padding-bottom: 8px;
  gap: 16px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 8px;
}
.logo-img {
  height: 72px;
  width: auto;
  max-width: none;
  display: block;
}

.main-nav {
  display: flex;
  gap: 28px;
  margin-left: auto;
  margin-right: 24px;
}
.main-nav a {
  font-weight: 600;
  color: var(--ink-soft);
  position: relative;
}
.main-nav a:hover { color: var(--pink-dark); }

.header-cta { white-space: nowrap; padding: 10px 20px; font-size: .95rem; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
}

/* Hero */
.hero {
  padding: 72px 0 96px;
  overflow: hidden;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 48px;
  align-items: center;
}
.eyebrow {
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: .8rem;
  font-weight: 700;
  color: var(--pink-dark);
  margin-bottom: 12px;
}
.hero h1 {
  font-size: clamp(2.1rem, 4vw, 3.2rem);
  font-weight: 800;
}
.highlight { color: var(--pink-dark); }
.hero-sub {
  color: var(--ink-soft);
  font-size: 1.08rem;
  max-width: 46ch;
}
.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin: 28px 0;
}
.hero-badges {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  color: var(--ink-soft);
  font-size: .92rem;
}

.hero-art {
  position: relative;
  min-height: 340px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-blob {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 30%, #ffd3e6, transparent 60%),
              radial-gradient(circle at 70% 70%, #e2d3ff, transparent 60%);
  border-radius: 40% 60% 55% 45% / 50% 45% 55% 50%;
  filter: blur(2px);
}

/* Hero product carousel */
.hero-carousel {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 340px;
  background: var(--card);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.carousel-viewport {
  overflow: hidden;
}
.carousel-track {
  display: flex;
  transition: transform .45s ease;
}
.carousel-slide {
  flex: 0 0 100%;
  padding: 28px 24px 24px;
  text-align: center;
}
.carousel-slide img {
  width: 100%;
  height: 170px;
  object-fit: contain;
  margin-bottom: 14px;
}
.carousel-slide h3 {
  font-size: 1rem;
  margin: 0 0 6px;
}
.carousel-slide .price {
  display: block;
  font-weight: 800;
  color: var(--pink-dark);
  margin-bottom: 14px;
}
.carousel-arrow {
  position: absolute;
  top: 42%;
  transform: translateY(-50%);
  z-index: 2;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: none;
  background: #fff;
  box-shadow: var(--shadow);
  font-size: 1.3rem;
  line-height: 1;
  cursor: pointer;
  color: var(--ink);
}
.carousel-arrow:hover { background: var(--pink); color: #fff; }
.carousel-prev { left: 8px; }
.carousel-next { right: 8px; }
.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  padding-bottom: 18px;
}
.carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #f0d9e2;
  border: none;
  cursor: pointer;
  padding: 0;
}
.carousel-dot.active { background: var(--pink-dark); }

/* Sections generic */
.section { padding: 88px 0; }
.section-title {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  text-align: center;
  font-weight: 800;
}
.section-sub {
  text-align: center;
  color: var(--ink-soft);
  max-width: 60ch;
  margin: 0 auto 40px;
}

/* Categorias */
.categorias { background: #fff; }
.cat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 18px;
}
.cat-card {
  background: var(--cream);
  border-radius: var(--radius);
  padding: 28px 16px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  transition: transform .15s ease, box-shadow .15s ease;
}
.cat-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.cat-icon { font-size: 2.2rem; }

/* Produtos */
.filters {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 36px;
}
.filter-btn {
  background: #fff;
  border: 2px solid #f0d9e2;
  color: var(--ink-soft);
  padding: 8px 20px;
  border-radius: 999px;
  font-weight: 600;
  cursor: pointer;
  transition: all .15s ease;
}
.filter-btn:hover { border-color: var(--pink); }
.filter-btn.active {
  background: var(--pink-dark);
  border-color: var(--pink-dark);
  color: #fff;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 26px;
}
.product-card {
  background: var(--card);
  border-radius: var(--radius);
  padding: 20px;
  box-shadow: var(--shadow);
  position: relative;
  display: flex;
  flex-direction: column;
}
.product-thumb {
  border-radius: 14px;
  height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  margin-bottom: 16px;
  overflow: hidden;
}
.product-thumb-photo {
  background: #fff;
  border: 1px solid #f0e5ea;
}
.product-thumb-photo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.product-tag {
  position: absolute;
  top: 14px;
  right: 14px;
  background: var(--pink-dark);
  color: #fff;
  font-size: .72rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 999px;
}
.product-desc {
  color: var(--ink-soft);
  font-size: .92rem;
  flex: 1;
}
.product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 10px;
}
.price { font-family: "Fredoka", "Nunito", "Segoe UI", system-ui, -apple-system, Roboto, sans-serif; font-weight: 600; color: var(--pink-dark); font-size: 1.1rem; }

.produtos-note {
  text-align: center;
  margin-top: 40px;
  color: var(--ink-soft);
}
.produtos-note a { color: var(--pink-dark); font-weight: 700; }

/* Sobre */
.sobre { background: #fff; }
.sobre-inner {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 48px;
  align-items: center;
}
.sobre-art {
  font-size: 3.4rem;
  background: var(--cream);
  border-radius: var(--radius);
  text-align: center;
  padding: 60px 20px;
}
.sobre-copy p { color: var(--ink-soft); }
.sobre-list {
  list-style: none;
  padding: 0;
  display: grid;
  gap: 8px;
  font-weight: 600;
}

/* Team */
.team-title {
  text-align: center;
  font-size: clamp(1.3rem, 2.4vw, 1.7rem);
  font-weight: 800;
  margin: 64px 0 32px;
}
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 26px;
  max-width: 760px;
  margin: 0 auto;
}
.team-card {
  background: var(--cream);
  border-radius: var(--radius);
  padding: 28px;
  text-align: center;
}
.team-photo {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 16px;
  box-shadow: var(--shadow);
}
.team-card h4 {
  margin: 0 0 4px;
  font-size: 1.15rem;
  font-weight: 800;
}
.team-role {
  display: inline-block;
  font-size: .78rem;
  font-weight: 700;
  color: var(--pink-dark);
  text-transform: uppercase;
  letter-spacing: .04em;
  margin-bottom: 12px;
}
.team-card p {
  color: var(--ink-soft);
  font-size: .92rem;
  text-align: left;
}

/* Depoimentos */
.depo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 22px;
}
.depo-card {
  background: var(--card);
  border-radius: var(--radius);
  padding: 26px;
  box-shadow: var(--shadow);
  margin: 0;
}
.depo-card p { font-style: italic; color: var(--ink); }
.depo-card cite {
  display: block;
  margin-top: 14px;
  font-weight: 700;
  font-style: normal;
  color: var(--pink-dark);
}

/* Blog */
.blog { background: #fff; }
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 26px;
}
.blog-card {
  background: var(--card);
  border-radius: var(--radius);
  padding: 20px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
}
.blog-thumb {
  border-radius: 14px;
  height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  margin-bottom: 16px;
}
.blog-date {
  font-size: .8rem;
  font-weight: 700;
  color: var(--pink-dark);
  text-transform: uppercase;
  letter-spacing: .04em;
}
.blog-desc {
  color: var(--ink-soft);
  font-size: .92rem;
  flex: 1;
}
.blog-link {
  font-weight: 700;
  color: var(--pink-dark);
}
.blog-link:hover { text-decoration: underline; }

/* Contato */
.contato { background: #fff; }
.contato-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
.contato-info { color: var(--ink-soft); margin: 20px 0; display: grid; gap: 6px; }
.contato-info a { color: var(--pink-dark); font-weight: 700; }

.contato-form {
  background: var(--cream);
  border-radius: var(--radius);
  padding: 28px;
  display: grid;
  gap: 16px;
}
.contato-form label {
  display: grid;
  gap: 6px;
  font-weight: 600;
  font-size: .92rem;
  color: var(--ink-soft);
}
.contato-form input,
.contato-form textarea {
  font-family: inherit;
  font-size: 1rem;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid #eadfe4;
  resize: vertical;
}
.contato-form input:focus,
.contato-form textarea:focus {
  outline: 2px solid var(--pink);
}
.form-status {
  min-height: 1.2em;
  color: var(--whatsapp);
  font-weight: 700;
  margin: 0;
}

/* Pedido */
.pedido-form {
  max-width: 640px;
  margin: 0 auto;
  background: var(--cream);
  border-radius: var(--radius);
  padding: 32px;
  display: grid;
  gap: 16px;
}
.pedido-form .hidden-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.pedido-form label {
  display: grid;
  gap: 6px;
  font-weight: 600;
  font-size: .92rem;
  color: var(--ink-soft);
}
.pedido-form input,
.pedido-form textarea,
.pedido-form select {
  font-family: inherit;
  font-size: 1rem;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid #eadfe4;
  resize: vertical;
  background: #fff;
}
.pedido-form input:focus,
.pedido-form textarea:focus,
.pedido-form select:focus {
  outline: 2px solid var(--pink);
}
.pedido-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.pedido-form button {
  justify-self: start;
}
@media (max-width: 600px) {
  .pedido-form .form-row {
    grid-template-columns: 1fr;
  }
}

/* Footer */
.site-footer {
  background: var(--ink);
  color: #fff;
  padding: 32px 0;
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 8px;
}
.logo-img-footer {
  height: 48px;
  width: auto;
  max-width: none;
  border-radius: 8px;
}
.site-footer p { color: #d9cdd3; font-size: .9rem; margin: 0; }
.footer-links {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
.footer-links a {
  color: #d9cdd3;
  font-size: .9rem;
  font-weight: 600;
}
.footer-links a:hover { color: #fff; }

/* WhatsApp floating button */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 58px;
  height: 58px;
  background: var(--whatsapp);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  box-shadow: 0 12px 26px rgba(37, 211, 102, .4);
  z-index: 60;
  transition: transform .15s ease;
}
.whatsapp-float:hover { transform: scale(1.08); }

/* Blog post page */
.breadcrumb {
  font-size: .85rem;
  color: var(--ink-soft);
  padding: 20px 0 0;
}
.breadcrumb a { color: var(--pink-dark); font-weight: 600; }
.breadcrumb span[aria-current] { color: var(--ink); }

.post {
  padding: 24px 0 88px;
  max-width: 760px;
  margin: 0 auto;
}
.post-hero {
  border-radius: var(--radius);
  height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
  margin: 24px 0 32px;
}
.post-eyebrow {
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: .8rem;
  font-weight: 700;
  color: var(--pink-dark);
  margin-bottom: 10px;
}
.post h1 {
  font-size: clamp(1.8rem, 3.5vw, 2.4rem);
  font-weight: 800;
}
.post-meta {
  color: var(--ink-soft);
  font-size: .9rem;
  margin-bottom: 16px;
}
.post-share {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 28px;
}
.post-share-label {
  font-size: .85rem;
  color: var(--ink-soft);
  font-weight: 700;
}
.share-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid #f0e5ea;
  font-size: 1.05rem;
  box-shadow: var(--shadow);
  transition: transform .15s ease;
}
.share-btn:hover { transform: translateY(-2px); }
.post-body h2 {
  font-size: 1.3rem;
  font-weight: 800;
  margin: 32px 0 12px;
}
.post-body p {
  color: var(--ink-soft);
  margin-bottom: 16px;
}
.post-body ul {
  color: var(--ink-soft);
  padding-left: 20px;
  margin-bottom: 16px;
}
.post-body li { margin-bottom: 8px; }
.post-body a { color: var(--pink-dark); font-weight: 600; text-decoration: underline; }

.post-tldr {
  background: var(--cream);
  border-left: 4px solid var(--pink-dark);
  border-radius: 12px;
  padding: 20px 24px;
  margin: 24px 0 32px;
}
.post-tldr p {
  margin: 0;
  color: var(--ink);
  font-size: .95rem;
}
.post-tldr strong { color: var(--pink-dark); }

.post-faq {
  margin: 40px 0;
}
.post-faq h2 {
  font-size: 1.3rem;
  font-weight: 800;
  margin-bottom: 16px;
}
.post-faq details {
  border-bottom: 1px solid #f0e5ea;
  padding: 14px 0;
}
.post-faq summary {
  font-weight: 700;
  cursor: pointer;
  color: var(--ink);
}
.post-faq summary::marker { color: var(--pink-dark); }
.post-faq details p {
  margin: 10px 0 0;
  color: var(--ink-soft);
}

.post-figure {
  margin: 28px 0;
  text-align: center;
}
.post-figure img {
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: 380px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  display: inline-block;
}
.post-figure figcaption {
  text-align: center;
  font-size: .85rem;
  color: var(--ink-soft);
  margin-top: 10px;
}

.post-cta {
  background: var(--cream);
  border-radius: var(--radius);
  padding: 28px;
  text-align: center;
  margin: 40px 0;
}
.post-cta h3 { margin-bottom: 8px; }
.post-cta p { color: var(--ink-soft); margin-bottom: 20px; }

.related-posts {
  margin-top: 48px;
}
.related-posts h3 {
  font-size: 1.2rem;
  font-weight: 800;
  margin-bottom: 16px;
}
.related-posts ul {
  list-style: none;
  padding: 0;
  display: grid;
  gap: 10px;
}
.related-posts a {
  color: var(--pink-dark);
  font-weight: 700;
}

/* Responsive */
@media (max-width: 900px) {
  .hero-inner, .sobre-inner, .contato-inner {
    grid-template-columns: 1fr;
  }
  .sobre-art { order: -1; }
  .hero-art { min-height: 240px; }
}

@media (max-width: 760px) {
  .main-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    flex-direction: column;
    padding: 20px 24px;
    gap: 16px;
    box-shadow: 0 12px 24px rgba(0,0,0,.08);
    display: none;
  }
  .main-nav.open { display: flex; }
  .header-cta { display: none; }
  .nav-toggle { display: flex; }
}

/* Cupom de primeira compra */
.cupom-section {
  padding: 48px 0;
  background: linear-gradient(135deg, var(--pink), var(--pink-dark));
}
.cupom-box {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 28px;
  text-align: center;
}
.cupom-copy { color: #fff; max-width: 420px; }
.cupom-emoji { font-size: 2.4rem; margin: 0 0 6px; }
.cupom-copy h2 {
  font-size: 1.4rem;
  font-weight: 800;
  margin: 0 0 8px;
}
.cupom-copy p { margin: 0; opacity: .95; }

.cupom-form {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}
.cupom-form[hidden] { display: none; }
.cupom-form .hidden-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.cupom-form input {
  font-family: inherit;
  font-size: 1rem;
  padding: 12px 16px;
  border-radius: 999px;
  border: none;
  min-width: 200px;
}
.cupom-form button { white-space: nowrap; }

.cupom-result {
  background: #fff;
  border-radius: var(--radius);
  padding: 24px 32px;
  max-width: 360px;
}
.cupom-code {
  font-size: 1.8rem;
  font-weight: 800;
  letter-spacing: .08em;
  color: var(--pink-dark);
  margin: 0 0 8px;
}
.cupom-result p:not(.cupom-code) { color: var(--ink-soft); margin: 0 0 16px; }

/* FAQ geral */
.faq { background: #fff; }
.faq-list {
  max-width: 720px;
  margin: 0 auto;
}
.faq-list details {
  border-bottom: 1px solid #f0e5ea;
  padding: 16px 0;
}
.faq-list summary {
  font-weight: 700;
  cursor: pointer;
  color: var(--ink);
}
.faq-list summary::marker { color: var(--pink-dark); }
.faq-list details p {
  margin: 10px 0 0;
  color: var(--ink-soft);
}

/* Legal pages (privacidade / trocas) */
.legal-page {
  max-width: 760px;
  margin: 0 auto;
  padding: 24px 0 88px;
}
.legal-page h1 {
  font-size: clamp(1.7rem, 3vw, 2.2rem);
  font-weight: 800;
  margin-bottom: 8px;
}
.legal-page .post-meta { color: var(--ink-soft); margin-bottom: 32px; }
.legal-page h2 {
  font-size: 1.2rem;
  font-weight: 800;
  margin: 32px 0 10px;
}
.legal-page p, .legal-page li { color: var(--ink-soft); }
.legal-page ul { padding-left: 20px; }
.legal-page li { margin-bottom: 8px; }

@media (max-width: 600px) {
  .cupom-form input { min-width: 0; width: 100%; }
}
