:root {
  --gold: #c5a34e;
  --gold-light: #e8d48b;
  --ink: #1a1a1a;
  --ink-soft: #2d2d2d;
  --paper: #fbfaf7;
  --paper-alt: #f3efe4;
  --line: #e7e2d6;
  --text: #2b2b2b;
  --text-muted: #6b6b6b;
  --green: #556b2f;
  --radius: 16px;
  --shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  color: var(--text);
  background: var(--paper);
  line-height: 1.5;
}
h1, h2, h3 {
  font-family: Georgia, "Times New Roman", serif;
  color: var(--ink);
  margin: 0 0 12px;
  line-height: 1.15;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
.wrap { max-width: 1100px; margin: 0 auto; padding: 0 20px; }
.center { text-align: center; }
.gold { color: var(--gold); }
.skip-link {
  position: absolute; left: -9999px; top: 0; background: var(--gold);
  color: #1a1a1a; padding: 10px 16px; z-index: 100;
}
.skip-link:focus { left: 12px; top: 12px; }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  border-radius: 999px; font-weight: 700; text-decoration: none;
  cursor: pointer; border: none; transition: transform 0.15s ease, box-shadow 0.15s ease, opacity 0.15s ease;
  font-family: inherit;
}
.btn-primary {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: #1a1a1a;
}
.btn-primary:hover { transform: translateY(-1px); box-shadow: 0 10px 24px rgba(197, 163, 78, 0.4); }
.btn-outline {
  background: #fff; color: var(--ink); border: 1.5px solid var(--gold);
}
.btn-outline:hover { background: var(--paper-alt); }
.btn-large { padding: 16px 30px; font-size: 1.05rem; }
.btn-small { padding: 9px 18px; font-size: 0.85rem; }
.product-card .btn { padding: 12px 22px; font-size: 0.9rem; width: 100%; }

/* Header */
.site-header {
  position: sticky; top: 0; z-index: 50; background: rgba(251, 250, 247, 0.92);
  backdrop-filter: blur(6px); border-bottom: 1px solid var(--line);
}
.site-header-inner { display: flex; align-items: center; gap: 20px; padding: 10px 20px; }
.brand img { height: 42px; width: 42px; object-fit: contain; }
.main-nav { display: flex; gap: 20px; margin-left: 8px; }
.main-nav a { font-size: 0.9rem; font-weight: 600; text-decoration: none; color: var(--text); }
.main-nav a:hover { color: var(--gold); }
.header-cta { margin-left: auto; white-space: nowrap; }
@media (max-width: 720px) {
  .main-nav { display: none; }
}

/* Hero */
.hero {
  background: linear-gradient(135deg, var(--ink-soft), var(--ink));
  color: #fff;
  padding: 56px 0;
}
.hero-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 48px; align-items: center; }
.eyebrow { text-transform: uppercase; letter-spacing: 0.12em; font-size: 0.8rem; color: var(--gold-light); font-weight: 700; margin: 0 0 10px; }
.eyebrow.center { text-align: center; }
.hero h1 { color: #fff; font-size: clamp(2rem, 4vw, 2.8rem); }
.hero-sub { color: #d9d5c8; font-size: 1.08rem; max-width: 46ch; margin: 0 0 26px; }
.hero-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 18px; margin-bottom: 14px; }
.phone-link { color: #fff; text-decoration: none; font-weight: 600; }
.phone-link:hover { color: var(--gold-light); }
.instagram-link { display: inline-block; margin-top: 4px; color: var(--gold-light); text-decoration: none; font-weight: 600; font-size: 0.95rem; }
.instagram-link:hover { text-decoration: underline; }
.trust-row { list-style: none; padding: 0; margin: 26px 0 0; display: flex; flex-wrap: wrap; gap: 18px; font-size: 0.88rem; color: #cfc9b8; }
.hero-media img { border-radius: var(--radius); box-shadow: var(--shadow); aspect-ratio: 4/3; object-fit: cover; }
@media (max-width: 860px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-media { order: -1; }
}

/* Pain */
.pain { padding: 64px 0; }
.pain h2 { text-align: center; margin-bottom: 28px; }
.pain-grid {
  list-style: none; padding: 0; margin: 0 0 28px;
  display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 14px;
}
.pain-grid li {
  background: var(--paper-alt); border-radius: 12px; padding: 16px 18px; font-weight: 600; font-size: 0.95rem;
}
.pain-close { text-align: center; font-size: 1.1rem; font-weight: 600; max-width: 50ch; margin: 0 auto; }

/* Products carousel */
.products { padding: 64px 0; background: var(--paper-alt); }
.carousel-wrap { --spv: 1; position: relative; display: flex; align-items: center; gap: 10px; margin-top: 36px; }
@media (min-width: 640px) { .carousel-wrap { --spv: 2; } }
@media (min-width: 960px) { .carousel-wrap { --spv: 3; } }
.carousel-viewport { flex: 1; overflow: hidden; }
.carousel-track { display: flex; transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1); }
.carousel-slide { flex: 0 0 calc(100% / var(--spv)); box-sizing: border-box; padding: 6px 10px 18px; }
.carousel-arrow {
  flex: 0 0 auto; width: 44px; height: 44px; border-radius: 50%; border: 1.5px solid var(--gold);
  background: #fff; color: var(--ink); font-size: 1.5rem; line-height: 1; cursor: pointer;
  display: flex; align-items: center; justify-content: center; box-shadow: 0 6px 16px rgba(0,0,0,0.08);
}
.carousel-arrow:hover { background: var(--gold); color: #fff; }
.carousel-dots { display: flex; justify-content: center; gap: 8px; margin-top: 8px; }
.carousel-dot {
  width: 9px; height: 9px; border-radius: 50%; border: none; background: #ddd3b6; cursor: pointer; padding: 0;
  transition: background 0.2s, transform 0.2s;
}
.carousel-dot:hover { background: var(--gold-light); }
.carousel-dot.active { background: var(--gold); transform: scale(1.25); }

.product-card {
  background: #fff; border-radius: var(--radius); padding: 20px; box-shadow: 0 8px 24px rgba(0,0,0,0.06);
  display: flex; flex-direction: column; height: 100%;
}
.product-thumb {
  height: 190px; border-radius: 12px; margin-bottom: 16px;
  overflow: hidden; background-color: #111;
}
.product-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.product-card h3 { font-size: 1.15rem; margin-bottom: 2px; }
.product-tag { color: var(--gold); font-weight: 700; font-size: 0.82rem; margin: 0 0 10px; }
.product-price {
  font-family: Georgia, serif; font-size: 1.3rem; font-weight: 700; color: var(--ink); margin: 0 0 10px;
}
.product-price-cta { font-family: inherit; font-size: 0.88rem; font-weight: 700; color: var(--gold); }
.product-card > p:not(.product-tag):not(.product-price) { font-size: 0.92rem; color: var(--text-muted); margin-bottom: 12px; }
.check-list { list-style: none; padding: 0; margin: 0 0 18px; font-size: 0.88rem; }
.check-list li { padding-left: 22px; position: relative; margin-bottom: 6px; }
.check-list li::before { content: "✔"; position: absolute; left: 0; color: var(--green); font-weight: 700; }
.product-card .btn { margin-top: auto; }

/* Steps */
.steps { padding: 64px 0; }
.steps h2 { margin-bottom: 36px; }
.steps-row { list-style: none; padding: 0; margin: 0 0 40px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.steps-row li { text-align: center; }
.step-num {
  display: inline-flex; align-items: center; justify-content: center; width: 46px; height: 46px;
  border-radius: 50%; background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: #1a1a1a; font-weight: 800; font-size: 1.2rem; margin-bottom: 12px;
}
.steps-row p { font-weight: 600; max-width: 22ch; margin: 0 auto; }
@media (max-width: 700px) { .steps-row { grid-template-columns: 1fr; } }
.cat-note {
  display: flex; align-items: center; gap: 18px; background: var(--paper-alt);
  border-radius: var(--radius); padding: 16px; max-width: 560px; margin: 0 auto;
}
.cat-note img { width: 74px; height: 74px; border-radius: 50%; object-fit: cover; flex-shrink: 0; }
.cat-note p { margin: 0; font-weight: 600; }

/* Why */
.why { padding: 64px 0; background: var(--ink); color: #fff; }
.why h2 { color: #fff; margin-bottom: 32px; }
.why-grid {
  list-style: none; padding: 0; margin: 0; display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 16px; max-width: 900px; margin: 0 auto;
}
.why-grid li { background: rgba(255,255,255,0.06); border-radius: 12px; padding: 16px 18px; font-weight: 600; }

/* Testimonials */
.testimonials { padding: 64px 0; }
.testimonials h2 { margin-bottom: 32px; }
.testimonial-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 20px; max-width: 760px; margin: 0 auto;
}
.testimonial-grid blockquote {
  margin: 0; background: var(--paper-alt); border-radius: var(--radius); padding: 26px; text-align: center;
}
.stars { color: var(--gold); letter-spacing: 2px; display: block; margin-bottom: 10px; }
.testimonial-grid p { font-style: italic; font-size: 1.02rem; margin: 0 0 16px; }
.testimonial-grid footer {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  font-style: normal; font-size: 0.82rem; font-weight: 600; color: var(--text-muted);
}
.testimonial-avatar {
  width: 26px; height: 26px; border-radius: 50%; background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: #1a1a1a; display: inline-flex; align-items: center; justify-content: center; font-weight: 800; font-size: 0.8rem;
}

/* Lifestyle */
.lifestyle { padding: 64px 0; }
.lifestyle-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }
.lifestyle-grid img { border-radius: var(--radius); box-shadow: var(--shadow); aspect-ratio: 4/3; object-fit: cover; }
.lifestyle-grid p { color: var(--text-muted); font-size: 1.05rem; }
@media (max-width: 800px) { .lifestyle-grid { grid-template-columns: 1fr; } }

/* FAQ */
.faq { padding: 64px 0; background: var(--paper-alt); }
.faq h2 { margin-bottom: 28px; }
.faq-list { max-width: 720px; margin: 0 auto 30px; display: flex; flex-direction: column; gap: 10px; }
.faq-list details {
  background: #fff; border-radius: 12px; padding: 14px 18px; border: 1px solid var(--line);
}
.faq-list summary { font-weight: 700; cursor: pointer; list-style: none; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after { content: "+"; float: right; font-weight: 700; color: var(--gold); }
.faq-list details[open] summary::after { content: "–"; }
.faq-list p { margin: 10px 0 0; color: var(--text-muted); font-size: 0.95rem; }
.faq-cta { display: flex; margin: 0 auto; width: fit-content; }

/* Final CTA */
.final-cta {
  padding: 72px 0; text-align: center;
  background: linear-gradient(135deg, var(--ink-soft), var(--ink)); color: #fff;
}
.final-cta h2 { color: #fff; }
.final-cta p { color: #d9d5c8; margin-bottom: 24px; }
.final-cta .phone-link { display: block; margin-top: 18px; }
.final-cta .instagram-link { margin-top: 6px; }

/* Footer */
.site-footer { background: var(--ink); color: #cfc9b8; padding: 30px 0; text-align: center; font-size: 0.85rem; }
.site-footer p { margin: 4px 0; }
.copyright { color: #8f8a78; margin-top: 10px; }

/* Floating WhatsApp */
.floating-whatsapp {
  position: fixed; right: 20px; bottom: 20px; width: 58px; height: 58px; border-radius: 50%;
  background: #25d366; display: flex; align-items: center; justify-content: center;
  box-shadow: 0 10px 24px rgba(0,0,0,0.3); z-index: 60; animation: pulse 2.4s infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.55); }
  70% { box-shadow: 0 0 0 14px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}
