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

:root {
  --nude:       #F5EDE6;
  --blush:      #E8C5B8;
  --blush-dark: #C4897A;
  --rose:       #B05A5A;
  --bege:       #FAF7F4;
  --text:       #2A1F1F;
  --text-muted: #8A7470;
  --border:     rgba(180,130,120,0.15);
  --gold:       #C9A070;
  --whatsapp:   #25D366;
  --whatsapp-dark: #1ebe5d;
}

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--bege);
  color: var(--text);
  overflow-x: hidden;
}

/* ── WHATSAPP BTN FLUTUANTE ── */
.wa-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--whatsapp);
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  padding: 14px 22px 14px 18px;
  border-radius: 50px;
  box-shadow: 0 4px 20px rgba(37,211,102,0.35);
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
}

.wa-float:hover {
  background: var(--whatsapp-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 28px rgba(37,211,102,0.45);
}

.wa-float svg { width: 20px; height: 20px; flex-shrink: 0; }

/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 55% 45%;
}

.hero-left {
  background: var(--nude);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 90px 64px 90px 72px;
  position: relative;
  overflow: hidden;
}

.hero-left::before {
  content: '';
  position: absolute;
  bottom: -120px; left: -80px;
  width: 420px; height: 420px;
  border-radius: 50%;
  background: var(--blush);
  opacity: 0.35;
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 36px;
}

.eyebrow-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--blush-dark);
}

.eyebrow-text {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--blush-dark);
}

.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(44px, 5vw, 70px);
  font-weight: 600;
  line-height: 1.05;
  color: var(--text);
  margin-bottom: 28px;
}

.hero-title em {
  font-style: italic;
  color: var(--rose);
}

.hero-divider {
  width: 48px;
  height: 1.5px;
  background: var(--blush-dark);
  margin-bottom: 28px;
  border-radius: 2px;
}

.hero-sub {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.75;
  color: var(--text-muted);
  max-width: 360px;
  margin-bottom: 52px;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  position: relative;
  top: 26px;
  z-index: 1;
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--rose);
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.04em;
  padding: 16px 34px;
  border-radius: 50px;
  transition: background 0.2s, transform 0.2s;
}

.hero-cta:hover { background: #9a4d4d; transform: translateY(-2px); }
.hero-cta svg { width: 14px; height: 14px; }

.hero-wa {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--whatsapp);
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  padding: 16px 28px;
  border-radius: 50px;
  transition: background 0.2s, transform 0.2s;
}

.hero-wa:hover { background: var(--whatsapp-dark); transform: translateY(-2px); }
.hero-wa svg { width: 18px; height: 18px; }

/* ── HERO RIGHT ── */
.hero-right {
  background: var(--blush);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 48px;
  position: relative;
  overflow: hidden;
}

.hero-right::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(176,90,90,0.12) 1px, transparent 1px);
  background-size: 28px 28px;
}

.profile-card {
  background: #fff;
  border-radius: 24px;
  padding: 44px 40px;
  text-align: center;
  width: 100%;
  max-width: 320px;
  position: relative;
  z-index: 1;
  box-shadow: 0 8px 40px rgba(176,90,90,0.12);
}

.avatar {
  width: 90px; height: 90px;
  border-radius: 50%;
  background: var(--nude);
  border: 3px solid var(--blush);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 38px;
  font-weight: 600;
  color: var(--rose);
  margin: 0 auto 20px;
  overflow: hidden;
}

.avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.profile-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 26px;
  font-weight: 600;
  margin-bottom: 4px;
}

.profile-handle {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 28px;
}

.profile-stats {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1px;
  background: var(--border);
  border-radius: 14px;
  overflow: hidden;
  margin-bottom: 28px;
  border: 1px solid var(--border);
}

.pstat { background: var(--bege); padding: 14px 8px; text-align: center; }

.pstat .n {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 600;
  color: var(--rose);
  display: block;
}

.pstat .l {
  font-size: 10px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 2px;
  display: block;
}

.profile-btn {
  display: block;
  background: var(--nude);
  color: var(--rose);
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  padding: 13px 20px;
  border-radius: 50px;
  border: 1.5px solid var(--blush);
  transition: background 0.2s, border-color 0.2s;
  margin-bottom: 12px;
}

.profile-btn:hover { background: var(--blush); border-color: var(--blush-dark); }

.profile-wa {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--whatsapp);
  color: #fff;
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  padding: 13px 20px;
  border-radius: 50px;
  transition: background 0.2s;
}

.profile-wa:hover { background: var(--whatsapp-dark); }
.profile-wa svg { width: 16px; height: 16px; }

/* ── PRODUTOS ── */
.section {
  padding: 90px 64px;
  max-width: 1200px;
  margin: 0 auto;
}

.section-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 48px;
}

.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 38px;
  font-weight: 400;
}

.section-title em { font-style: italic; color: var(--rose); }

.section-link {
  color: var(--blush-dark);
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.05em;
  border-bottom: 1px solid var(--blush-dark);
  padding-bottom: 1px;
  transition: opacity 0.2s;
}

.section-link:hover { opacity: 0.6; }

.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.product-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border);
  text-decoration: none;
  color: inherit;
  display: block;
  transition: transform 0.22s, box-shadow 0.22s;
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 32px rgba(176,90,90,0.1);
}

.product-img {
  width: 100%;
  aspect-ratio: 3/4;
  background: var(--nude);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: var(--blush-dark);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.04em;
  overflow: hidden;
}

.product-img img { width: 100%; height: 100%; object-fit: cover; }
.product-img svg { width: 28px; height: 28px; opacity: 0.5; }

.product-body { padding: 18px 20px; }
.product-name { font-weight: 500; font-size: 15px; margin-bottom: 4px; }
.product-meta { font-size: 13px; color: var(--text-muted); margin-bottom: 12px; }

.product-price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  color: var(--rose);
}

/* ── AVALIAÇÕES ── */
.reviews-section {
  background: var(--rose);
  padding: 90px 64px;
}

.reviews-inner { max-width: 1200px; margin: 0 auto; }

.reviews-section .section-title { color: #fff; margin-bottom: 10px; }
.reviews-section .section-title em { color: var(--blush); }

.reviews-sub {
  color: rgba(255,255,255,0.55);
  font-size: 15px;
  margin-bottom: 52px;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 14px;
}

.review-card {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 14px;
  padding: 22px 20px;
  transition: background 0.2s;
}

.review-card:hover { background: rgba(255,255,255,0.14); }

.review-user {
  font-size: 12px;
  font-weight: 500;
  color: var(--blush);
  letter-spacing: 0.06em;
  margin-bottom: 10px;
}

.stars { display: flex; gap: 3px; margin-bottom: 12px; }
.stars svg { width: 13px; height: 13px; fill: var(--gold); }

.review-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 16px;
  font-style: italic;
  color: rgba(255,255,255,0.8);
  line-height: 1.65;
}

/* ── FOOTER ── */
footer {
  background: var(--text);
  padding: 48px 64px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-brand {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px;
  color: var(--blush);
}

.footer-brand em { font-style: italic; color: #fff; }

.footer-buttons { display: flex; gap: 12px; flex-wrap: wrap; align-items: center; }

.footer-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--rose);
  color: #fff;
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  padding: 12px 26px;
  border-radius: 50px;
  transition: background 0.2s, transform 0.2s;
}

.footer-btn:hover { background: #9a4d4d; transform: translateY(-1px); }

.footer-btn-wa {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--whatsapp);
  color: #fff;
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  padding: 12px 26px;
  border-radius: 50px;
  transition: background 0.2s, transform 0.2s;
}

.footer-btn-wa:hover { background: var(--whatsapp-dark); transform: translateY(-1px); }
.footer-btn-wa svg { width: 16px; height: 16px; }

.footer-copy {
  width: 100%;
  text-align: center;
  font-size: 12px;
  color: rgba(255,255,255,0.2);
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 22px;
}

/* ── RESPONSIVE ── */
@media (max-width: 860px) {
  .hero { grid-template-columns: 1fr; }
  .hero-left { padding: 64px 32px; }
  .hero-right { padding: 60px 32px; }
  .section { padding: 60px 24px; }
  .products-grid { grid-template-columns: 1fr 1fr; }
  .reviews-section { padding: 60px 24px; }
  footer { padding: 40px 24px; flex-direction: column; text-align: center; }
  .section-header { flex-direction: column; gap: 16px; }
  .wa-float { bottom: 16px; right: 16px; padding: 12px 18px; font-size: 13px; }
}

@media (max-width: 480px) {
  .products-grid {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: 82%;
    grid-template-columns: none;
    gap: 14px;
    overflow-x: auto;
    overscroll-behavior-x: contain;
    scroll-snap-type: x mandatory;
    scroll-padding-left: 24px;
    padding-bottom: 8px;
    -ms-overflow-style: none;
    scrollbar-width: none;
  }
  .products-grid::-webkit-scrollbar { display: none; }
  .product-card { scroll-snap-align: start; }
  .hero-buttons { flex-direction: column; align-items: flex-start; }
  .reviews-grid .review-card:nth-child(n + 4) { display: none; }
  .footer-buttons { justify-content: center; }
}
