/* ============ MÃOS UNGIDAS — SHARED DESIGN SYSTEM ============ */

:root {
  --ink: #0a0a0a;
  --ink-2: #111111;
  --ink-3: #161616;
  --ink-4: #1d1d1d;
  --ink-line: rgba(201, 169, 97, 0.18);

  --gold-50: #f5e9c8;
  --gold-100: #ead7a2;
  --gold-200: #dcc07a;
  --gold-300: #c9a961;
  --gold-400: #b08a3e;
  --gold-500: #8a6a26;
  --gold-grad: linear-gradient(135deg, #b08a3e 0%, #e8d28a 35%, #f5e9c8 50%, #c9a961 70%, #8a6a26 100%);
  --gold-grad-soft: linear-gradient(135deg, #c9a961 0%, #e8d28a 50%, #b08a3e 100%);

  --font-display: 'Cormorant Garamond', 'Garamond', serif;
  --font-mark: 'Cinzel', 'Cormorant Garamond', serif;
  --font-body: 'Montserrat', system-ui, sans-serif;

  --container: 1200px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--ink);
  color: #f4ecd8;
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 15px;
  line-height: 1.7;
  letter-spacing: 0.01em;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
::selection { background: var(--gold-300); color: var(--ink); }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }

#root { min-height: 100vh; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
}

.gold-text {
  background: var(--gold-grad);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.eyebrow {
  font-family: var(--font-mark);
  font-size: 11px;
  letter-spacing: 0.45em;
  text-transform: uppercase;
  color: var(--gold-300);
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 14px;
}
.eyebrow::before, .eyebrow::after {
  content: '';
  width: 28px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-300));
}
.eyebrow::after { background: linear-gradient(90deg, var(--gold-300), transparent); }
.eyebrow.left::before { display: none; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.005em;
}

.h2 {
  font-size: clamp(36px, 4.5vw, 60px);
  font-weight: 300;
  letter-spacing: -0.01em;
}
.h2 em { font-style: italic; color: var(--gold-200); }
.h2 em.gold { background: var(--gold-grad); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }

.lede {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(18px, 1.6vw, 22px);
  line-height: 1.55;
  color: rgba(244, 236, 216, 0.78);
  max-width: 56ch;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 18px 36px;
  font-family: var(--font-mark);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  border: 1px solid var(--gold-300);
  color: var(--ink);
  background: var(--gold-grad-soft);
  background-size: 200% 200%;
  background-position: 0% 50%;
  transition: all 0.5s ease;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
.btn:hover {
  background-position: 100% 50%;
  box-shadow: 0 12px 40px rgba(201,169,97,0.25);
  transform: translateY(-1px);
}
.btn-ghost {
  background: transparent;
  color: var(--gold-200);
  border: 1px solid rgba(201,169,97,0.4);
}
.btn-ghost:hover {
  background: rgba(201,169,97,0.06);
  border-color: var(--gold-300);
  color: var(--gold-100);
  box-shadow: none;
  transform: translateY(-1px);
}

/* Nav */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 20px 0;
  transition: background 0.4s ease, padding 0.4s ease, border-color 0.4s ease;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(10,10,10,0.85);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  padding: 14px 0;
  border-bottom-color: var(--ink-line);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.nav-logo {
  display: flex;
  align-items: center;
}
.nav-logo-img {
  height: 52px;
  width: 52px;
  object-fit: cover;
  border-radius: 50%;
  border: 1px solid rgba(201,169,97,0.35);
  display: block;
  transition: border-color 0.3s;
}
.nav-logo:hover .nav-logo-img {
  border-color: var(--gold-300);
}
.nav-links {
  display: flex;
  gap: 36px;
  list-style: none;
}
.nav-links a {
  font-family: var(--font-mark);
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(244,236,216,0.7);
  font-weight: 400;
  position: relative;
  padding: 6px 0;
  transition: color 0.3s;
}
.nav-links a:hover, .nav-links a.active { color: var(--gold-200); }
.nav-links a::after {
  content: '';
  position: absolute;
  left: 50%; bottom: 0;
  width: 0; height: 1px;
  background: var(--gold-300);
  transition: all 0.3s;
  transform: translateX(-50%);
}
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border: 1px solid var(--gold-300);
  color: var(--gold-100);
  font-family: var(--font-mark);
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  transition: all 0.3s;
}
.nav-cta:hover { background: var(--gold-300); color: var(--ink); }

@media (max-width: 980px) {
  .nav-links { display: none; }
}

/* Sections */
section { position: relative; padding: 140px 0; }
section.tight { padding: 100px 0; }

.section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 80px;
}
.section-head .eyebrow { margin-bottom: 28px; }
.section-head .lede { margin: 24px auto 0; }

.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 1s ease, transform 1s ease;
}
.reveal.visible { opacity: 1; transform: none; }

@media (max-width: 768px) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* Page hero (used on inner pages) */
.page-hero {
  padding: 200px 0 100px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 50% 30%, rgba(201,169,97,0.10) 0%, transparent 55%),
    var(--ink);
  z-index: 0;
}
.page-hero .container { position: relative; z-index: 2; }
.page-hero .breadcrumb {
  font-family: var(--font-mark);
  font-size: 10px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: rgba(244,236,216,0.5);
  margin-bottom: 28px;
}
.page-hero .breadcrumb a { color: var(--gold-300); }
.page-hero .breadcrumb .sep { margin: 0 12px; color: var(--gold-300); }
.page-hero h1 {
  font-size: clamp(48px, 7vw, 96px);
  font-family: var(--font-display);
  font-weight: 300;
  line-height: 1.0;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}
.page-hero h1 em { font-style: italic; }
.page-hero .lede { margin: 0 auto; }

/* Footer */
.footer {
  background: var(--ink);
  border-top: 1px solid var(--ink-line);
  padding: 80px 0 40px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 60px;
  border-bottom: 1px solid var(--ink-line);
}
.footer-logo-img {
  width: 100px;
  height: 100px;
  object-fit: cover;
  border-radius: 50%;
  border: 1px solid rgba(201,169,97,0.3);
  margin-bottom: 20px;
  display: block;
}
.footer-brand-tag {
  font-family: var(--font-mark);
  font-size: 10px;
  letter-spacing: 0.5em;
  color: var(--gold-300);
  text-transform: uppercase;
  margin-bottom: 24px;
}
.footer-brand p {
  color: rgba(244,236,216,0.6);
  font-size: 13px;
  max-width: 32ch;
}
.footer-col h4 {
  font-family: var(--font-mark);
  font-size: 10px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold-300);
  margin-bottom: 20px;
  font-weight: 500;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col a {
  font-family: var(--font-display);
  font-size: 16px;
  color: rgba(244,236,216,0.7);
  transition: color 0.3s;
}
.footer-col a:hover { color: var(--gold-200); }
.footer-regions {
  padding: 32px 0;
  border-top: 1px solid var(--ink-line);
}
.footer-regions-label {
  font-family: var(--font-mark);
  font-size: 9px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: rgba(244,236,216,0.45);
  margin-bottom: 14px;
}
.footer-regions-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.region-tag {
  font-family: var(--font-mark);
  font-size: 9px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 5px 11px;
  border: 1px solid rgba(201,169,97,0.18);
  color: rgba(244,236,216,0.45);
  border-radius: 2px;
}

.footer-payment {
  padding: 32px 0;
  border-top: 1px solid var(--ink-line);
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.footer-payment-label {
  font-family: var(--font-mark);
  font-size: 9px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: rgba(244,236,216,0.45);
  white-space: nowrap;
}
.footer-payment-icons {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.pay-badge {
  font-family: var(--font-mark);
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 5px 10px;
  border: 1px solid rgba(201,169,97,0.25);
  color: rgba(244,236,216,0.55);
  border-radius: 2px;
}

.footer-bottom {
  padding-top: 24px;
  border-top: 1px solid var(--ink-line);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  font-family: var(--font-mark);
  font-size: 9px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(244,236,216,0.4);
}

@media (max-width: 760px) {
  .footer-grid { grid-template-columns: 1fr; gap: 40px; }
}

/* ============ MOBILE <480px ============ */
@media (max-width: 480px) {
  .container { padding: 0 20px; }

  section { padding: 80px 0; }
  section.tight { padding: 60px 0; }

  .h2 { font-size: 32px; }
  .lede { font-size: 17px; }

  .btn { padding: 16px 24px; font-size: 10px; letter-spacing: 0.22em; }

  .nav-logo-img { height: 44px; width: 44px; }

  .page-hero { padding: 140px 0 64px; }
  .page-hero h1 { font-size: 42px; }

  .section-head { margin-bottom: 48px; }

  .footer-grid { gap: 32px; }
  .footer-brand-name { font-size: 22px; }
  .footer-bottom { flex-direction: column; text-align: center; gap: 8px; }

  .wa-fab { width: 52px; height: 52px; bottom: 16px; right: 16px; }
  .wa-fab svg { width: 22px; height: 22px; }
}

/* Floating WhatsApp */
.wa-fab {
  position: fixed;
  bottom: 24px; right: 24px;
  z-index: 90;
  width: 60px; height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, #25D366, #128C7E);
  display: grid; place-items: center;
  box-shadow: 0 12px 36px rgba(37,211,102,0.35);
  color: white;
  transition: transform 0.3s;
  border: 2px solid rgba(255,255,255,0.15);
}
.wa-fab:hover { transform: scale(1.08) rotate(-8deg); }
.wa-fab::before {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 1px solid rgba(37,211,102,0.4);
  animation: waPulse 2s ease-out infinite;
}
@keyframes waPulse {
  0% { transform: scale(0.95); opacity: 0.8; }
  100% { transform: scale(1.4); opacity: 0; }
}

/* Mobile menu */
.nav-burger {
  display: none;
  width: 44px; height: 44px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--gold-300);
  border-radius: 50%;
}
.nav-burger span {
  display: block;
  width: 18px; height: 1px;
  background: var(--gold-300);
  position: relative;
}
.nav-burger span::before, .nav-burger span::after {
  content: ''; position: absolute; left: 0; width: 100%; height: 1px; background: var(--gold-300);
}
.nav-burger span::before { top: -6px; }
.nav-burger span::after { top: 6px; }

@media (max-width: 980px) {
  .nav-burger { display: inline-flex; }
  .nav-cta { display: none; }
}

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(10,10,10,0.97);
  backdrop-filter: blur(20px);
  display: grid;
  place-items: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s;
}
.mobile-menu.open { opacity: 1; pointer-events: auto; }
.mobile-menu-close {
  position: absolute; top: 24px; right: 24px;
  width: 44px; height: 44px;
  border: 1px solid var(--gold-300);
  border-radius: 50%;
  display: grid; place-items: center;
  color: var(--gold-300);
}
.mobile-menu ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 24px;
  text-align: center;
}
.mobile-menu a {
  font-family: var(--font-display);
  font-size: 32px;
  color: var(--gold-100);
}
.mobile-menu a em { font-style: italic; color: var(--gold-300); margin-right: 12px; font-size: 14px; }
