:root {
  --bg: #f4ede5;
  --bg-soft: radial-gradient(circle at 20% 20%, rgba(192,140,82,0.08), transparent 32%), radial-gradient(circle at 80% 10%, rgba(112,86,61,0.06), transparent 32%), #f4ede5;
  --ink: #3d2b1a;
  --muted: #7a5d3e;
  --accent: #c08c52;
  --accent-2: #edc59f;
  --accent-soft: rgba(192,140,82,0.12);
  --card: #ffffff;
  --line: rgba(112,86,61,0.12);
  --radius: 18px;
  --shadow: 0 18px 50px rgba(0,0,0,0.08);
  --shadow-strong: 0 22px 60px rgba(0,0,0,0.12);
  --space: 16px;
}
* { box-sizing: border-box; }
body {
  margin: 0;
  font-family: 'Alexandria', 'Inter', system-ui, -apple-system, sans-serif;
  background: var(--bg-soft);
  color: var(--ink);
  line-height: 1.6;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(8px);
  background: linear-gradient(90deg, #70563d, #b48a61);
  color: #fafbe2;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: var(--space);
  padding: 14px var(--space);
  box-shadow: 0 12px 30px rgba(0,0,0,0.1);
}
.brand { display: flex; align-items: center; gap: 10px; }
.brand img { height: 42px; width: auto; }
.brand-name { font-weight: 800; letter-spacing: .2px; }
.brand-sub { font-size: 12px; color: rgba(250,251,226,0.9); letter-spacing: .2px; }
.main-nav { display: flex; gap: 12px; flex-wrap: wrap; justify-content: center; }
.main-nav a { padding: 8px 12px; border-radius: 999px; background: rgba(250,251,226,0.12); color: #fafbe2; font-weight: 700; box-shadow: inset 0 1px 0 rgba(255,255,255,0.12); }
.main-nav a:hover, .main-nav a:focus { background: rgba(250,251,226,0.28); }
.header-cta { display: flex; gap: 10px; }
.btn {
  border: none;
  border-radius: 12px;
  padding: 10px 14px;
  font-weight: 700;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.btn.primary { background: linear-gradient(120deg,var(--accent),var(--accent-2)); color: #2b1405; box-shadow: 0 10px 24px rgba(0,0,0,0.18); }
.btn.ghost { background: transparent; border: 1px solid rgba(250,251,226,0.7); color: #fafbe2; }
.btn.outline { background: transparent; border: 1px solid var(--accent); color: var(--ink); }
.btn.whatsapp { background: #25D366; color: #ffffff; border: none; box-shadow: 0 12px 26px rgba(37,211,102,0.35); }
.btn.whatsapp::before {
  content: "";
  width: 16px;
  height: 16px;
  margin-left: 6px;
  display: inline-block;
  background-repeat: no-repeat;
  background-size: 16px 16px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 32'%3E%3Cpath fill='%23fff' d='M16 3C9.37 3 4 8.37 4 15c0 2.55.82 4.9 2.22 6.82L5 29l7.36-1.93A11.9 11.9 0 0 0 16 27c6.63 0 12-5.37 12-12S22.63 3 16 3m0 2c5.53 0 10 4.47 10 10s-4.47 10-10 10c-1.67 0-3.24-.42-4.62-1.16l-.33-.17-4.41 1.16 1.18-4.3-.18-.33A9.89 9.89 0 0 1 6 15c0-5.53 4.47-10 10-10m-5 5.5c-.13-.01-.33-.03-.52-.03-.13 0-.26.02-.38.05-.4.1-.65.35-.75.75-.18.7-.54 2.16.27 3.9.77 1.66 2.24 3.43 4.93 4.62 2.43 1.09 3.46.92 4.05.85.46-.05.95-.38 1.08-.79.12-.37.46-1.45.6-1.9.05-.17 0-.33-.14-.43-.2-.15-.83-.4-1.4-.57-.32-.1-.61-.07-.83.2l-.3.38c-.15.2-.44.25-.67.14a7.87 7.87 0 0 1-2.44-1.5 7.63 7.63 0 0 1-1.49-1.93c-.1-.2-.05-.46.11-.62l.29-.31c.11-.12.17-.28.14-.45-.05-.5-.36-1.33-.55-1.73-.09-.2-.2-.33-.32-.4-.17-.1-.37-.14-.58-.13z'/%3E%3C/svg%3E");
}
.btn:hover { transform: translateY(-1px); box-shadow: 0 14px 28px rgba(0,0,0,0.12); }

.call-ribbon {
  background: linear-gradient(90deg,#70563D,#A88358);
  color: #fafbe2;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  font-weight: 700;
}
.call-ribbon .pill { background: rgba(250,251,226,0.18); padding: 8px 12px; border-radius: 12px; color: #fafbe2; }

.hub { max-width: 1180px; margin: 0 auto; padding: 24px var(--space); }
.hero { padding: 10px 0 8px; }
.breadcrumbs { color: var(--muted); font-weight: 700; margin-bottom: 12px; }
.breadcrumbs a { color: var(--ink); }
.hero-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(320px,1fr)); gap: 18px; align-items: start; }
.hero-text {
  background: var(--card);
  border-radius: var(--radius);
  padding: 20px;
  box-shadow: var(--shadow-strong);
  border: 1px solid var(--line);
}
.badge { display: inline-flex; padding: 6px 10px; border-radius: 10px; background: rgba(192,140,82,0.14); color: var(--ink); font-weight: 800; margin-bottom: 10px; }
.hero h1 { margin: 0 0 12px; font-size: 32px; line-height: 1.25; letter-spacing: -.2px; }
.hero p { margin: 0 0 14px; color: rgba(61,43,26,0.85); }
.hero-actions { display: flex; gap: 10px; flex-wrap: wrap; }
.hero-trust { display: flex; align-items: center; gap: 10px; margin-top: 12px; }
.hero-trust img { height: 48px; }

.toc { background: var(--card); border-radius: var(--radius); padding: 14px; box-shadow: var(--shadow); border: 1px solid var(--line); }
.toc-head { display: flex; justify-content: space-between; align-items: center; }
#toc-toggle { border: none; background: rgba(192,140,82,0.18); color: var(--ink); padding: 6px 10px; border-radius: 8px; cursor: pointer; }
.toc-list { margin-top: 10px; display: grid; gap: 6px; max-height: 62vh; overflow: auto; }
.toc-list a { padding: 8px 10px; border-radius: 10px; border: 1px solid transparent; }
.toc-list a:hover, .toc-list a.active { background: rgba(192,140,82,0.12); border-color: var(--line); }
.toc-list.open { display: grid; }

.section { background: var(--card); border-radius: var(--radius); padding: 20px; margin: 16px 0; box-shadow: var(--shadow); border: 1px solid var(--line); }
.section-head { display: flex; align-items: center; gap: 10px; justify-content: space-between; flex-wrap: wrap; }
.pill-soft { background: rgba(192,140,82,0.12); color: var(--ink); padding: 6px 10px; border-radius: 10px; font-weight: 700; }
.split { display: grid; grid-template-columns: repeat(auto-fit,minmax(260px,1fr)); gap: 14px; align-items: start; }
.card { background: #fbf8f4; border-radius: 14px; padding: 16px; border: 1px solid var(--line); box-shadow: 0 12px 28px rgba(0,0,0,0.08); }
.cards { display: grid; grid-template-columns: repeat(auto-fit,minmax(260px,1fr)); gap: 12px; }
.steps { display: grid; grid-template-columns: repeat(auto-fit,minmax(250px,1fr)); gap: 10px; }
.step { display: flex; gap: 10px; background: #fbf8f4; border-radius: 14px; padding: 12px; border: 1px solid var(--line); box-shadow: 0 8px 20px rgba(0,0,0,0.05); }
.step span { background: linear-gradient(120deg,var(--accent),var(--accent-2)); color: #2b1405; border-radius: 10px; min-width: 34px; height: 34px; display: inline-flex; align-items: center; justify-content: center; font-weight: 800; }
.cta-inline { display: flex; gap: 10px; flex-wrap: wrap; align-items: center; }
.link { color: var(--muted); font-weight: 700; }
.pill-list { display: flex; flex-wrap: wrap; gap: 10px; }
.pill-list span, .pill-list a { background: #fbf8f4; padding: 8px 12px; border-radius: 12px; border: 1px solid var(--line); }
.contact { display: grid; gap: 10px; }
.contact-actions { display: flex; gap: 10px; flex-wrap: wrap; }
.note { color: rgba(61,43,26,0.7); font-size: 14px; }

.video-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(240px,1fr)); gap: 12px; }
.video-card { background: #fbf8f4; border: 1px solid var(--line); border-radius: 14px; overflow: hidden; cursor: pointer; transition: transform .2s ease, box-shadow .2s ease; }
.video-card:hover { transform: translateY(-4px); box-shadow: 0 18px 40px rgba(0,0,0,0.08); }
.video-card img { width: 100%; height: 150px; object-fit: cover; background: #eee; }
.video-meta { padding: 12px; }
.video-modal { position: fixed; inset: 0; display: none; align-items: center; justify-content: center; z-index: 200; }
.video-modal[aria-hidden="false"] { display: flex; }
.video-backdrop { position: absolute; inset: 0; background: rgba(0,0,0,0.6); }
.video-body { position: relative; background: #000; padding: 10px; border-radius: 12px; max-width: 900px; width: 90%; box-shadow: 0 20px 50px rgba(0,0,0,0.4); }
.video-body video { width: 100%; border-radius: 8px; }
.video-close { position: absolute; top: 6px; left: 6px; background: rgba(255,255,255,0.2); color: #fff; border: none; border-radius: 50%; width: 34px; height: 34px; font-size: 20px; cursor: pointer; }

.faq details { border: 1px solid var(--line); border-radius: 12px; padding: 10px 12px; background: #fbf8f4; }
.faq details + details { margin-top: 8px; }
.faq summary { cursor: pointer; font-weight: 800; }
.faq p { margin: 8px 0 0; }
.section ul { padding-right: 18px; margin: 8px 0; }
.section ul li { margin-bottom: 6px; }

.video-card, .card, .hero-text, .section { scroll-margin-top: 90px; }

.site-footer {
  background: linear-gradient(135deg,#2b1405,#3d2411);
  color: #fafbe2;
  padding: 26px var(--space);
  margin-top: 20px;
  border-top: 1px solid rgba(250,251,226,0.18);
}
.site-footer img { height: 36px; width: auto; }
.footer-top { display: grid; grid-template-columns: repeat(auto-fit,minmax(220px,1fr)); gap: 12px; align-items: start; }
.footer-links { display: grid; gap: 6px; }
.footer-cta { display: flex; gap: 10px; flex-wrap: wrap; }
.footer-bottom { display: flex; gap: 12px; flex-wrap: wrap; justify-content: space-between; margin-top: 16px; font-size: 14px; color: rgba(250,251,226,0.82); }
.site-footer a { color: #fafbe2; font-weight: 700; }
.footer-links a { padding: 6px 0; border-bottom: 1px solid rgba(250,251,226,0.12); }
.footer-links a:hover { color: #edc59f; }
.footer-cta .btn { box-shadow: none; }

.sticky-cta {
  position: fixed;
  bottom: 10px; left: 10px; right: 10px;
  background: #70563d;
  color: #fafbe2;
  border-radius: 12px;
  padding: 10px 12px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.18);
  z-index: 120;
}
.sticky-actions { display: flex; gap: 8px; }
@media (min-width: 992px) { .sticky-cta { display: none; } }

@media (max-width: 768px) {
  .site-header { grid-template-columns: 1fr; text-align: center; }
  .header-cta { justify-content: center; }
  .main-nav { justify-content: center; }
  .hero-grid { grid-template-columns: 1fr; }
}
