/* ============================================================
   MEMÓRIAS ETERNAS — Landing Page CSS
   Paleta madeira natural · rosa suave · tipografia elegante
   ============================================================ */

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

:root {
  /* Paleta vermelho-vinho elegante + CTA verde */
  --wood:         #a0262f;  /* vermelho-vinho primário */
  --wood-dark:    #7a1c24;  /* vinho escuro */
  --wood-light:   #d99b9f;  /* vinho claro (detalhes) */
  --cream:        #faf6f0;
  --cream-dark:   #f3ead9;
  --rose:         #e8474c;  /* vermelho vivo — urgência/sale */
  --rose-dark:    #c13239;
  --ink:          #1f1012;
  --text:         #2e1a1d;
  --muted:        #8a7274;
  --border:       #e8d8d8;
  /* CTA VERDE (converte mais num site vermelho) */
  --green:        #16a34a;
  --green-dark:   #15803d;
  --green-light:  #22c55e;
  /* Mantém acento dourado pra detalhes artesanais (bumps, etc) */
  --gold:         #d9a876;
  --gold-dark:    #c89a5e;
  --red:          #c13239;
  --white:        #fff;
  --shadow:       0 4px 16px rgba(160,38,47,.08);
  --shadow-lg:    0 10px 32px rgba(160,38,47,.12);
  --radius:       14px;
  --radius-lg:    20px;
  --serif:        'Fraunces', 'Cormorant Garamond', Georgia, serif;
  --sans:         'Manrope', 'Inter', system-ui, -apple-system, sans-serif;
}

/* Optical sizing para Fraunces — letras ajustam a cada tamanho */
.hd-logo-text, .det-title, .section-title, .final-cta h2, .ty-title,
.price-new, .reviews-avg, .ben-card h3, .ft-brand span:last-child,
.var-num, .sticky-price {
  font-optical-sizing: auto;
  font-variation-settings: 'opsz' 32, 'SOFT' 50;
  letter-spacing: -.01em;
}

html { scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  color: var(--text);
  background: var(--cream);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  padding-bottom: 76px; /* sticky-cta */
}
@media (min-width: 900px) { body { padding-bottom: 0; } }

img { max-width: 100%; display: block; }
a { color: var(--wood-dark); text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

.material-symbols-outlined {
  font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
  user-select: none;
  vertical-align: middle;
}

.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 16px;
}

.section-title {
  font-family: var(--serif);
  font-size: clamp(1.6rem, 4.5vw, 2.2rem);
  font-weight: 700;
  color: var(--ink);
  text-align: center;
  line-height: 1.2;
}
.section-sub {
  text-align: center;
  color: var(--muted);
  font-size: .98rem;
  margin-top: 6px;
  margin-bottom: 28px;
}

/* ── ANNOUNCEMENT ─────────────────────── */
.announce {
  background: var(--wood-dark);
  color: #fff;
  font-size: .82rem;
  padding: 8px 12px;
  text-align: center;
  font-weight: 500;
  white-space: nowrap;
  overflow: hidden;
}
.announce-inner {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  justify-content: center;
  flex-wrap: nowrap;
  white-space: nowrap;
}
.announce .material-symbols-outlined { font-size: 16px; flex-shrink: 0; }

/* ── HEADER ─────────────────────── */
.hd {
  background: #fff;
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 80;
}
.hd-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 12px 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.hd-logo { display: flex; gap: 8px; align-items: center; }
.hd-logo-icon {
  font-size: 1.6rem;
  color: var(--wood);
}
.hd-logo-text {
  font-family: var(--serif);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: .3px;
}
.hd-logo-text em {
  font-style: italic;
  font-weight: 500;
  color: var(--wood);
}
.hd-cta {
  background: linear-gradient(180deg, var(--green-light), var(--green));
  color: #fff;
  padding: 9px 20px;
  border-radius: 999px;
  font-size: .85rem;
  font-weight: 800;
  letter-spacing: .2px;
  box-shadow: 0 3px 10px rgba(22,163,74,.3);
  transition: transform .15s, box-shadow .2s;
}
.hd-cta:hover { transform: translateY(-1px); box-shadow: 0 5px 14px rgba(22,163,74,.45); }

/* ── URGENCY BAR ─────────────────────── */
.urg {
  background: linear-gradient(90deg, var(--rose-dark), var(--wood-dark));
  color: #fff;
  font-size: .85rem;
  padding: 10px 12px;
  text-align: center;
  font-weight: 600;
  white-space: nowrap;
  overflow: hidden;
}
.urg-inner {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  flex-wrap: nowrap;
  justify-content: center;
  white-space: nowrap;
}
.urg .material-symbols-outlined { font-size: 18px; flex-shrink: 0; }

/* ── PRODUCT SECTION ─────────────────────── */
.product {
  padding: 24px 0 40px;
}
.product-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 16px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
@media (min-width: 900px) {
  .product-inner {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    padding: 24px 16px;
  }
}

/* Gallery */
.gal-main {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--cream-dark);
  box-shadow: var(--shadow);
  aspect-ratio: 1;
}
.gal-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.gal-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: linear-gradient(180deg, var(--rose), var(--rose-dark));
  color: #fff;
  font-size: .72rem;
  font-weight: 800;
  padding: 5px 12px;
  border-radius: 999px;
  letter-spacing: .4px;
  text-transform: uppercase;
  box-shadow: 0 3px 10px rgba(232,71,76,.35);
}
.gal-thumbs {
  margin-top: 12px;
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 8px;
}
@media (max-width: 600px) {
  .gal-thumbs { grid-template-columns: repeat(5, 1fr); }
  .gal-thumb:nth-child(n+6) { display: none; }
}
.gal-thumb {
  aspect-ratio: 1;
  border-radius: 10px;
  overflow: hidden;
  border: 2px solid transparent;
  transition: border-color .2s;
  padding: 0;
  background: var(--cream-dark);
}
.gal-thumb img { width: 100%; height: 100%; object-fit: cover; }
.gal-thumb.active { border-color: var(--wood); }

/* Details */
.det { padding-top: 4px; }
.det-badges {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 14px;
}
.badge-sale {
  background: linear-gradient(180deg, var(--rose), var(--rose-dark));
  color: #fff;
  font-size: .72rem;
  font-weight: 800;
  padding: 5px 11px;
  border-radius: 999px;
  letter-spacing: .5px;
}
.badge-stock {
  background: #e8f5ec;
  color: var(--green);
  font-size: .78rem;
  font-weight: 700;
  padding: 5px 11px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.badge-stock .dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: .4; }
}

.det-title {
  font-family: var(--serif);
  font-size: clamp(1.5rem, 4vw, 2rem);
  color: var(--ink);
  line-height: 1.15;
  font-weight: 700;
  margin-bottom: 12px;
}

.det-rating {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
  font-size: .88rem;
}
.stars {
  color: #f5b524;
  letter-spacing: 2px;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  font-family: 'Arial', sans-serif;
}
.stars.big { font-size: 1.6rem; letter-spacing: 3px; }
.rating-num { font-weight: 700; color: var(--ink); }
.rating-count { color: var(--muted); font-size: .82rem; }

.det-price {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 4px;
  flex-wrap: wrap;
}
.price-old {
  text-decoration: line-through;
  color: var(--muted);
  font-size: 1rem;
}
.price-new {
  font-family: var(--serif);
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--wood);
  letter-spacing: -.5px;
}
.price-off {
  background: var(--rose);
  color: #fff;
  font-size: .8rem;
  font-weight: 800;
  padding: 3px 10px;
  border-radius: 6px;
}
.det-instalment {
  color: var(--muted);
  font-size: .88rem;
  margin-bottom: 20px;
}
.det-instalment strong { color: var(--ink); }

/* Variants */
.var { margin-bottom: 20px; }
.var-label {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: .85rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: .4px;
}
.var-help {
  color: var(--wood-dark);
  font-size: .75rem;
  font-weight: 600;
  text-transform: none;
}
.var-opts {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 6px;
}
@media (max-width: 480px) {
  .var-opts { grid-template-columns: repeat(5, 1fr); }
}
.var-opt {
  background: #fff;
  border: 2px solid var(--border);
  border-radius: 12px;
  padding: 10px 4px 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  transition: all .18s;
  position: relative;
  min-height: 72px;
}
.var-opt:hover { border-color: var(--wood-light); }
.var-opt.active {
  border-color: var(--wood);
  background: #fff8ed;
  box-shadow: 0 2px 8px rgba(184,115,61,.15);
}
.var-num {
  font-family: var(--serif);
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--ink);
  line-height: 1;
}
.var-opt.active .var-num { color: var(--wood-dark); }
.var-desc {
  font-size: .64rem;
  color: var(--muted);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .3px;
}
.var-price {
  font-size: .72rem;
  font-weight: 700;
  color: var(--ink);
  margin-top: 2px;
}
.var-tag {
  position: absolute;
  top: -8px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(180deg, var(--rose), var(--rose-dark));
  color: #fff;
  font-size: .55rem;
  font-weight: 800;
  padding: 2px 6px;
  border-radius: 4px;
  letter-spacing: .3px;
  white-space: nowrap;
  box-shadow: 0 2px 6px rgba(232,71,76,.3);
}
.var-best { border-color: var(--rose); background: #fef6f7; }
.var-best.active { border-color: var(--wood); background: #fff0f1; }

/* Personalization */
.perso {
  background: var(--cream-dark);
  border: 1.5px dashed var(--wood-light);
  border-radius: var(--radius);
  padding: 16px;
  margin-bottom: 20px;
}
.perso-head {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
  color: var(--ink);
  font-size: .95rem;
}
.perso-head .material-symbols-outlined {
  color: var(--wood);
  font-size: 20px;
}
.perso-count {
  background: #fff;
  border-radius: 10px;
  padding: 10px 12px;
  margin-bottom: 12px;
  border: 1px solid var(--border);
}
.perso-count-label {
  display: block;
  font-size: .78rem;
  font-weight: 700;
  color: var(--ink);
  text-transform: uppercase;
  letter-spacing: .4px;
  margin-bottom: 8px;
}
.perso-count-opts {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 6px;
}
.perso-count-opt {
  background: var(--cream);
  border: 1.5px solid var(--border);
  border-radius: 8px;
  padding: 9px 0;
  font-family: var(--serif);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--ink);
  transition: all .18s;
}
.perso-count-opt:hover { border-color: var(--wood-light); }
.perso-count-opt.active {
  background: var(--wood);
  border-color: var(--wood);
  color: #fff;
}
.perso-hint {
  font-size: .82rem;
  color: var(--muted);
  margin-bottom: 12px;
}
.perso-fields {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 8px;
}
.perso-input {
  font-family: inherit;
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  font-size: .92rem;
  background: #fff;
  color: var(--ink);
  outline: none;
  transition: border-color .2s;
}
.perso-input:focus { border-color: var(--wood); box-shadow: 0 0 0 3px rgba(184,115,61,.15); }
.perso-rules {
  font-size: .72rem;
  color: var(--muted);
  display: flex;
  gap: 4px;
  align-items: center;
}
.perso-rules .material-symbols-outlined { font-size: 14px; }

/* CTA */
.cta-main {
  width: 100%;
  background: linear-gradient(180deg, var(--green-light), var(--green));
  color: #fff;
  padding: 16px 24px;
  border-radius: 14px;
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: .3px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  box-shadow: 0 6px 16px rgba(22,163,74,.32);
  transition: transform .15s, box-shadow .2s;
  margin-bottom: 18px;
}
.cta-main:hover { transform: translateY(-1px); box-shadow: 0 8px 22px rgba(22,163,74,.45); background: linear-gradient(180deg, var(--green-light), var(--green-dark)); }
.cta-main:active { transform: translateY(0); }

/* Trust row */
.trust-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 8px;
  margin-bottom: 16px;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 10px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 10px;
}
.trust-item .material-symbols-outlined {
  font-size: 22px;
  color: var(--wood);
  flex-shrink: 0;
}
.trust-item strong {
  display: block;
  font-size: .78rem;
  color: var(--ink);
}
.trust-item small {
  font-size: .7rem;
  color: var(--muted);
}
@media (max-width: 480px) {
  .trust-row { grid-template-columns: 1fr; }
}

/* ── MOBILE POLISH (centralização profissional) ─────── */
@media (max-width: 768px) {
  /* Hero mais compacto */
  .product { padding: 18px 0 32px; }
  .det { padding-top: 8px; text-align: center; }
  .det-badges { justify-content: center; }
  .det-title { text-align: center; font-size: 1.5rem; }
  .det-rating { justify-content: center; flex-wrap: wrap; }
  .det-price { justify-content: center; }
  .det-instalment { text-align: center; }

  /* Variant labels centrados */
  .var-label { flex-direction: column; gap: 4px; text-align: center; }
  .var-help { text-align: center; }

  /* Personalization: campos mais acessíveis ao toque */
  .perso { text-align: left; }
  .perso-count-label { text-align: center; }
  .perso-input { padding: 14px 16px; font-size: 1rem; }

  /* CTA mais alto, tipo e-commerce moderno */
  .cta-main { padding: 18px 24px; font-size: 1.08rem; }

  /* Trust row em mobile — linha horizontal compacta */
  .trust-row {
    grid-template-columns: repeat(3, 1fr);
    gap: 6px;
  }
  .trust-item {
    flex-direction: column;
    text-align: center;
    padding: 10px 6px;
    gap: 4px;
  }
  .trust-item strong { font-size: .72rem; }
  .trust-item small { font-size: .64rem; display: block; }
  .trust-item .material-symbols-outlined { font-size: 22px; }

  /* Pay methods centrado */
  .pay-methods { justify-content: center; padding-top: 16px; }

  /* Section titles em mobile */
  .section-title { font-size: 1.5rem; }
  .section-sub { padding: 0 12px; }

  /* Timeline compacta mobile */
  .timeline { padding: 36px 0; }
  .tl-steps { padding: 0 8px; }

  /* Benefits grid 1 col com mais respiro */
  .benefits { padding: 40px 0; }
  .ben-card { padding: 22px 20px; text-align: center; }
  .ben-icon { margin-left: auto; margin-right: auto; }

  /* Spec centrado */
  .spec { padding: 40px 0; }
  .spec-text { text-align: center; }
  .spec-table td { font-size: .88rem; padding: 10px 8px; }

  /* Care centrado */
  .care { padding: 40px 0; }

  /* Reviews centradas mobile */
  .reviews { padding: 40px 0; }
  .review-card { padding: 18px 16px; }

  /* FAQ */
  .faq { padding: 40px 0; }
  .faq-item summary { padding: 14px 16px; font-size: .9rem; }
  .faq-item p { padding: 0 16px 14px; font-size: .88rem; }

  /* Footer mobile */
  .ft { padding: 36px 0 20px; text-align: center; }
  .ft-cols { gap: 26px; text-align: center; }
  .ft-brand { justify-content: center; }
  .ft-pay-image, .pay-image { margin-left: auto; margin-right: auto; }

  /* Final CTA mobile */
  .final-cta { padding: 44px 0; }
  .cta-big { padding: 16px 28px; font-size: 1rem; }
  .final-trust { gap: 10px; font-size: .78rem; padding: 0 12px; }
}

/* iPhone pequeno */
@media (max-width: 380px) {
  .hd-logo-text { font-size: 1.1rem; }
  .hd-cta { padding: 7px 14px; font-size: .78rem; }
  .urg { font-size: .74rem; padding: 8px 8px; }
  .urg-inner { gap: 6px; }
  .urg .material-symbols-outlined { font-size: 15px; }
  .announce { font-size: .7rem; padding: 7px 8px; }
  .announce .material-symbols-outlined { font-size: 14px; }
  .var-opts { gap: 4px; }
  .var-opt { padding: 8px 2px; min-height: 66px; }
  .var-num { font-size: 1.15rem; }
  .var-price { font-size: .66rem; }
  .trust-item strong { font-size: .68rem; }
  .trust-item small { font-size: .6rem; }
  .tl-step { gap: 4px; }
  .tl-icon { width: 38px; height: 38px; }
  .tl-icon .material-symbols-outlined { font-size: 18px; }
  .tl-date { font-size: .68rem; }
  .tl-label { font-size: .62rem; }
}

/* Payment methods */
.pay-methods {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  padding-top: 14px;
  border-top: 1px dashed var(--border);
}
.pay-label {
  font-size: .72rem;
  color: var(--muted);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .5px;
  width: 100%;
  text-align: center;
  margin-bottom: 6px;
}
.pay-chip {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 5px 10px;
  font-size: .72rem;
  font-weight: 800;
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  gap: 3px;
}
.pay-image {
  max-width: 220px;
  height: auto;
  display: block;
  margin: 0 auto;
}
.ft-pay-image {
  max-width: 180px;
  height: auto;
  display: block;
}

/* ── TIMELINE ─────────────────────── */
.timeline {
  padding: 48px 0;
  background: #fff;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.tl-steps {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 4px;
}
.tl-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  flex: 1;
  min-width: 0;
}
.tl-icon {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: var(--cream-dark);
  border: 2px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  flex-shrink: 0;
}
.tl-icon .material-symbols-outlined { font-size: 26px; }
.tl-icon.tl-active {
  background: var(--wood);
  border-color: var(--wood);
  color: #fff;
}
.tl-icon.tl-done {
  background: var(--green);
  border-color: var(--green);
  color: #fff;
}
.tl-line {
  flex: 0 1 40px;
  height: 2px;
  background: var(--border);
  margin-top: 26px;
}
.tl-date {
  font-size: .82rem;
  font-weight: 700;
  color: var(--ink);
  text-align: center;
}
.tl-label {
  font-size: .74rem;
  color: var(--muted);
  text-align: center;
  line-height: 1.2;
}
@media (max-width: 600px) {
  .tl-icon { width: 44px; height: 44px; }
  .tl-icon .material-symbols-outlined { font-size: 22px; }
  .tl-line { flex-basis: 10px; margin-top: 21px; }
  .tl-date { font-size: .72rem; }
  .tl-label { font-size: .66rem; }
}

/* ── BENEFITS ─────────────────────── */
.benefits { padding: 56px 0; }
.ben-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-top: 28px;
}
@media (min-width: 640px)  { .ben-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1000px) { .ben-grid { grid-template-columns: repeat(3, 1fr); } }
.ben-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow);
  transition: transform .2s;
}
.ben-card:hover { transform: translateY(-3px); }
.ben-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--cream-dark);
  color: var(--wood-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}
.ben-icon .material-symbols-outlined { font-size: 28px; }
.ben-card h3 {
  font-family: var(--serif);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 8px;
}
.ben-card p {
  font-size: .9rem;
  color: var(--muted);
  line-height: 1.55;
}

/* ── SPEC ─────────────────────── */
.spec { padding: 56px 0; background: #fff; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.spec-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: center;
  margin-top: 24px;
}
@media (min-width: 900px) {
  .spec-inner { grid-template-columns: 1.1fr .9fr; gap: 40px; }
}
.spec-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 20px;
}
.spec-table td {
  padding: 12px 14px;
  border-bottom: 1px solid var(--border);
  font-size: .92rem;
}
.spec-table td:first-child {
  color: var(--muted);
  font-weight: 600;
  width: 38%;
}
.spec-table td:last-child { color: var(--ink); font-weight: 500; }
.spec-img img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

/* ── CARE ─────────────────────── */
.care { padding: 48px 0; background: var(--cream-dark); }
.care-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 28px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 700px) { .care-grid { grid-template-columns: repeat(4, 1fr); } }
.care-item {
  background: #fff;
  border-radius: var(--radius);
  padding: 20px 14px;
  text-align: center;
  border: 1px solid var(--border);
}
.care-item .material-symbols-outlined {
  font-size: 36px;
  color: var(--wood);
  margin-bottom: 8px;
}
.care-item strong {
  display: block;
  font-size: .9rem;
  color: var(--ink);
  margin-bottom: 4px;
}
.care-item small {
  font-size: .76rem;
  color: var(--muted);
  line-height: 1.3;
}

/* ── REVIEWS ─────────────────────── */
.reviews { padding: 56px 0; }
.reviews-head { margin-bottom: 32px; text-align: center; }
.reviews-score {
  display: inline-flex;
  gap: 16px;
  align-items: center;
  margin-top: 12px;
  justify-content: center;
  text-align: left;
}
.reviews-score > div { line-height: 1.3; }
.reviews-avg {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--ink);
}
.reviews-total { font-size: .82rem; color: var(--muted); }

.reviews-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
@media (min-width: 700px) { .reviews-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1000px) { .reviews-grid { grid-template-columns: repeat(3, 1fr); } }
.review-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  box-shadow: var(--shadow);
}
.review-head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
  flex-wrap: wrap;
}
.review-head strong { color: var(--ink); font-size: .92rem; }
.review-loc {
  font-size: .72rem;
  color: var(--muted);
  background: var(--cream-dark);
  padding: 2px 8px;
  border-radius: 999px;
}
.review-head .stars { margin-left: auto; }
.review-text {
  font-size: .9rem;
  color: var(--text);
  line-height: 1.55;
  margin-bottom: 10px;
  font-style: italic;
}
.review-verif {
  font-size: .72rem;
  color: var(--green);
  font-weight: 700;
}

/* ── FAQ ─────────────────────── */
.faq { padding: 56px 0; background: #fff; border-top: 1px solid var(--border); }
.faq-list { max-width: 780px; margin: 28px auto 0; }
.faq-item {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 10px;
  overflow: hidden;
}
.faq-item summary {
  padding: 16px 18px;
  cursor: pointer;
  font-weight: 700;
  font-size: .95rem;
  color: var(--ink);
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  font-size: 1.4rem;
  color: var(--wood);
  font-weight: 400;
  transition: transform .2s;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p {
  padding: 0 18px 16px;
  font-size: .9rem;
  color: var(--text);
  line-height: 1.6;
}

/* ── FINAL CTA ─────────────────────── */
.final-cta {
  padding: 64px 0;
  background: linear-gradient(135deg, var(--wood) 0%, var(--wood-dark) 100%);
  color: #fff;
  text-align: center;
  position: relative;
}
.final-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 40%, rgba(255,255,255,.08), transparent 60%);
  pointer-events: none;
}
.final-cta > * { position: relative; }
.final-cta h2 {
  font-family: var(--serif);
  font-size: clamp(1.6rem, 4.5vw, 2.4rem);
  font-weight: 700;
  margin-bottom: 12px;
  line-height: 1.2;
}
.final-cta p {
  font-size: 1rem;
  opacity: .9;
  margin-bottom: 28px;
}
.cta-big {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(180deg, var(--green-light), var(--green));
  color: #fff;
  padding: 18px 36px;
  border-radius: 14px;
  font-size: 1.1rem;
  font-weight: 800;
  box-shadow: 0 8px 24px rgba(22,163,74,.35);
  transition: transform .15s, box-shadow .2s;
}
.cta-big:hover { box-shadow: 0 10px 28px rgba(22,163,74,.5); }
.cta-big:hover { transform: translateY(-2px); }
.final-trust {
  display: flex;
  gap: 16px;
  justify-content: center;
  margin-top: 22px;
  flex-wrap: wrap;
  font-size: .86rem;
  opacity: .92;
  font-weight: 500;
}

/* ── FOOTER ─────────────────────── */
.ft {
  background: var(--cream-dark);
  color: var(--text);
  padding: 48px 0 24px;
  border-top: 1px solid var(--border);
}
.ft-cols {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  margin-bottom: 32px;
}
@media (min-width: 700px) { .ft-cols { grid-template-columns: 2fr 1fr 1fr 1fr; } }
.ft-brand {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
}
.ft-logo-icon { font-size: 1.5rem; color: var(--wood); }
.ft-brand span:last-child {
  font-family: var(--serif);
  font-size: 1.2rem;
  color: var(--ink);
  font-weight: 700;
}
.ft-brand em { font-style: italic; font-weight: 500; color: var(--wood-dark); }
.ft-desc { font-size: .88rem; line-height: 1.5; color: var(--muted); }
.ft-col h4 {
  color: var(--ink);
  font-size: .9rem;
  font-weight: 800;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: .6px;
}
.ft-col ul { list-style: none; }
.ft-col li { margin-bottom: 8px; }
.ft-col a {
  color: var(--text);
  font-size: .88rem;
  transition: color .2s;
}
.ft-col a:hover { color: var(--wood-dark); }
.ft-pay {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}
.ft-chip {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 4px 10px;
  font-size: .72rem;
  font-weight: 800;
  color: var(--ink);
}
.ft-bottom {
  border-top: 1px solid var(--border);
  padding-top: 20px;
  text-align: center;
  font-size: .82rem;
  color: var(--muted);
}

/* ── STICKY MOBILE CTA ─────────────────────── */
.sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #fff;
  border-top: 1px solid var(--border);
  padding: 10px 14px;
  z-index: 90;
  box-shadow: 0 -4px 16px rgba(0,0,0,.06);
}
@media (min-width: 900px) { .sticky-cta { display: none; } }
.sticky-inner {
  max-width: 480px;
  margin: 0 auto;
  display: flex;
  gap: 10px;
  align-items: center;
}
.sticky-info { flex: 1; min-width: 0; }
.sticky-price {
  font-family: var(--serif);
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--wood-dark);
  line-height: 1;
}
.sticky-label {
  font-size: .72rem;
  color: var(--muted);
  margin-top: 2px;
}
.sticky-btn {
  background: linear-gradient(180deg, var(--green-light), var(--green));
  color: #fff;
  padding: 12px 22px;
  border-radius: 10px;
  font-size: .95rem;
  font-weight: 800;
  white-space: nowrap;
  box-shadow: 0 3px 10px rgba(22,163,74,.3);
}
