@font-face {
  font-family: 'Pacaembu';
  src: url('/assets/fonts/pacaembu-100.ttf') format('truetype');
  font-weight: 100;
}
@font-face {
  font-family: 'Pacaembu';
  src: url('/assets/fonts/pacaembu-400.ttf') format('truetype');
  font-weight: 400;
}
@font-face {
  font-family: 'Pacaembu';
  src: url('/assets/fonts/pacaembu-500.ttf') format('truetype');
  font-weight: 500;
}
@font-face {
  font-family: 'Pacaembu';
  src: url('/assets/fonts/pacaembu-700.ttf') format('truetype');
  font-weight: 700;
}
@font-face {
  font-family: 'Pacaembu';
  src: url('/assets/fonts/pacaembu-300.ttf') format('truetype');
  font-weight: 300;
}
@font-face {
  font-family: 'Pacaembu';
  src: url('/assets/fonts/pacaembu-900.ttf') format('truetype');
  font-weight: 900;
}

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

:root {
  --blue: #c8ff00;
  --blue-dark: #a8d800;
  --blue-light: #d4ff33;
  --green-coin: #c8ff00;
  --white: #ffffff;
  --gray-bg: #F2F2F2;
  --text-dark: #0D1B2A;
  --text-mid: #3A3A3A;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Pacaembu', sans-serif;
  color: var(--text-dark);
  background: var(--white);
  overflow-x: hidden;
}

nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 48px;
  height: 68px;
  background: transparent;
  overflow: visible;
}

nav::before {
  content: '';
  position: absolute;
  inset: 0;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  background: linear-gradient(180deg, rgba(120, 160, 0, 0.80) 0%, rgba(168, 216, 0, 0.35) 60%, rgba(200, 255, 0, 0.0) 100%);
  -webkit-mask-image: linear-gradient(180deg, black 0%, black 40%, transparent 100%);
  mask-image: linear-gradient(180deg, black 0%, black 40%, transparent 100%);
  z-index: -1;
  pointer-events: none;
}

.nav-logo-wrap {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  min-width: 0;
}

.nav-logo-wrap img {
  height: 34px;
  width: auto;
  max-width: 78px;
  object-fit: contain;
  flex-shrink: 0;
}

.nav-wordmark {
  font-family: 'Pacaembu', sans-serif;
  font-weight: 700;
  font-size: 22px;
  color: #ffffff;
  letter-spacing: 1px;
}

.nav-links {
  display: flex;
  gap: 36px;
  list-style: none;
}

.nav-links a {
  font-family: 'Pacaembu', sans-serif;
  font-weight: 400;
  font-size: 15px;
  color: rgba(255,255,255,0.9);
  text-decoration: none;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--white); }

.nav-toggle,
.mobile-nav-panel {
  display: none;
}

.nav-toggle {
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255,255,255,0.28);
  border-radius: 50%;
  background: rgba(17,17,17,0.36);
  color: var(--white);
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 4px;
}

.nav-toggle span {
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav-actions {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-shrink: 0;
}

.btn-outline {
  padding: 8px 22px;
  border: 1.5px solid var(--white);
  border-radius: 50px;
  color: var(--white);
  font-family: 'Pacaembu', sans-serif;
  font-weight: 500;
  font-size: 14px;
  background: transparent;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  text-decoration: none;
}
.btn-outline:hover { background: rgba(255,255,255,0.15); }

.btn-solid {
  padding: 8px 22px;
  border: none;
  border-radius: 50px;
  color: var(--white);
  font-family: 'Pacaembu', sans-serif;
  font-weight: 600;
  font-size: 14px;
  background: var(--blue);
  color: #0a1a0a;
  cursor: pointer;
  transition: background 0.2s;
  text-decoration: none;
}
.btn-solid:hover { background: #dfff66; }

.hero {
  position: relative;
  height: auto;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  text-align: center;
  overflow: clip;
  padding-top: 68px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  transform: scale(1.03);
  transition: transform 8s ease;
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center top;
  filter: brightness(0.55);
  opacity: 0;
  transition: opacity 0.75s ease;
  will-change: opacity;
}

.hero-slide.is-active {
  opacity: 1;
}

.hero-slide:nth-child(1) {
  background-image: url('/assets/images/hero-1.jpg');
}

.hero-slide:nth-child(2) {
  background-image: url('/assets/images/hero-2.jpg');
}

.hero-slide:nth-child(3) {
  background-image: url('/assets/images/hero-3.png');
}

.hero-dots {
  position: relative;
  z-index: 3;
  left: auto;
  bottom: auto;
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: center;
  transform: none;
  margin: 0 0 clamp(28px, 6vh, 58px);
}

.hero-dot {
  width: 10px;
  height: 10px;
  padding: 0;
  border: 1px solid rgba(255,255,255,0.72);
  border-radius: 999px;
  background: rgba(255,255,255,0.44);
  cursor: pointer;
  transition: width 0.25s ease, background 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}

.hero-dot:hover,
.hero-dot:focus-visible {
  background: rgba(223,255,102,0.75);
  border-color: rgba(223,255,102,0.95);
  outline: none;
  transform: scale(1.12);
}

.hero-dot.is-active {
  width: 28px;
  background: var(--blue);
  border-color: var(--blue);
}
.hero:hover .hero-bg { transform: scale(1.0); }

.hero-overlay {
  display: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 980px;
  padding: 0 24px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: clamp(96px, 27vh, 700px);
  margin-bottom: 18px;
  animation: fadeUp 0.9s ease both;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero-content h1 {
  font-family: 'Pacaembu', sans-serif;
  font-weight: 900;
  font-size: clamp(52px, 8vw, 96px);
  color: var(--white);
  line-height: 1.05;
  letter-spacing: 0;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.hero-content p {
  font-family: 'Pacaembu', sans-serif;
  font-weight: 300;
  font-size: 17px;
  color: rgba(255,255,255,0.88);
  line-height: 1.7;
  margin-bottom: 32px;
  text-align: center;
}

.btn-cta {
  display: inline-block;
  padding: 14px 36px;
  background: var(--blue);
  color: #0a1a0a;
  font-family: 'Pacaembu', sans-serif;
  font-weight: 400;
  font-size: 16px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.25s, transform 0.2s, box-shadow 0.25s;
  box-shadow: 0 4px 24px rgba(200, 255, 0,0.4);
  animation: fadeUp 0.9s 0.3s ease both;
}
.btn-cta:hover {
  background: #dfff66;
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(200, 255, 0,0.5);
}

.trust-bar {
  position: relative;
  width: 100%;
  background: rgba(17,17,17,0.92);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-top: 1px solid rgba(200,255,0,0.72);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  padding: 20px 60px;
  display: flex;
  justify-content: center;
  gap: 80px;
  flex-wrap: wrap;
  z-index: 3;
}

.trust-bar::before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 1px;
  background: rgba(200,255,0,0.76);
  pointer-events: none;
}

.trust-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.trust-item div {
  min-width: 0;
}

.trust-icon {
  width: 36px;
  height: 36px;
  color: rgba(255,255,255,0.9);
  flex-shrink: 0;
  margin-top: 2px;
}

.trust-item h4 {
  font-family: 'Pacaembu', sans-serif;
  font-weight: 700;
  font-size: 14px;
  color: #ffffff;
  margin-bottom: 4px;
  overflow-wrap: anywhere;
}
.trust-item p {
  font-family: 'Pacaembu', sans-serif;
  font-weight: 300;
  font-size: 12.5px;
  color: rgba(255,255,255,0.8);
  line-height: 1.5;
  max-width: 180px;
  overflow-wrap: anywhere;
}

.who-we-are {
  background: #f7f7f7;
  padding: 96px 24px;
}

.who-inner {
  width: min(1180px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(300px, 0.78fr) minmax(0, 1.22fr);
  gap: 56px;
  align-items: center;
}

.who-header {
  text-align: left;
  padding: 0;
}

.who-eyebrow {
  display: inline-block;
  margin-bottom: 12px;
  font-family: 'Pacaembu', sans-serif;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 1.4px;
  color: #6f8f00;
  text-transform: uppercase;
}

.who-header h2 {
  font-family: 'Pacaembu', sans-serif;
  font-weight: 700;
  font-size: 56px;
  color: #0a1a0a;
  line-height: 1.06;
  margin-bottom: 18px;
}

.who-header p {
  font-family: 'Pacaembu', sans-serif;
  font-weight: 300;
  font-size: 16px;
  color: rgba(0,0,0,0.64);
  line-height: 1.75;
  max-width: 520px;
  margin: 0;
}

.who-highlights {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  max-width: 520px;
  margin-top: 22px;
}

.who-highlight {
  padding: 15px 16px;
  border-radius: 12px;
  border: 1px solid rgba(10,26,10,0.08);
  border-left: 4px solid var(--blue);
  background: rgba(255,255,255,0.78);
  box-shadow: 0 12px 32px rgba(0,0,0,0.04);
}

.who-highlight h3 {
  font-family: 'Pacaembu', sans-serif;
  font-weight: 700;
  font-size: 13px;
  color: #0a1a0a;
  margin-bottom: 6px;
}

.who-highlight p {
  font-size: 12.5px;
  line-height: 1.55;
  max-width: none;
}

.who-image {
  width: 100%;
  margin: 0;
  display: block;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 18px 48px rgba(0,0,0,0.12);
}

.who-image img {
  width: 100%;
  height: 560px;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.products {
  background: #161616;
  padding: 80px 60px 80px;
  position: relative;
  overflow: hidden;
}

@keyframes spinCoin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

.coins-deco {
  position: absolute;
  left: -320px;
  bottom: -280px;
  width: 820px;
  height: 820px;
  background-image: url('/assets/images/coins-bg.png');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  pointer-events: none;
  z-index: 0;
  will-change: transform;
  transform-origin: center center;
}

.coins-deco img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

@keyframes spinCoins {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

.products-inner {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
}

.products h2 {
  font-family: 'Pacaembu', sans-serif;
  font-weight: 700;
  font-size: clamp(28px, 4vw, 48px);
  color: var(--blue);
  text-align: center;
  margin-bottom: 56px;
}

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

.service-card {
  background: #1a1a1a;
  border-radius: 20px;
  padding: 40px 24px 32px;
  text-align: center;
  box-shadow: 0 2px 16px rgba(0,0,0,0.3);
  transition: transform 0.25s, box-shadow 0.25s;
  cursor: default;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 36px rgba(200, 255, 0, 0.2);
}

.service-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 16px;
  object-fit: contain;
  display: block;
  filter: brightness(0) invert(1) sepia(1) saturate(10) hue-rotate(30deg);
}

.service-card h3 {
  font-family: 'Pacaembu', sans-serif;
  font-weight: 500;
  font-size: 15px;
  color: #ffffff;
  margin-bottom: 12px;
}

.service-card p {
  font-family: 'Pacaembu', sans-serif;
  font-weight: 300;
  font-size: 13px;
  line-height: 1.6;
  color: rgba(255,255,255,0.66);
  max-width: 220px;
  margin: 0 auto;
}

.contact {
  background: #f7f7f7;
  padding: 80px 60px 36px;
}

.contact-inner {
  max-width: 1040px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 48px;
  align-items: start;
}

.contact-copy h2 {
  font-family: 'Pacaembu', sans-serif;
  font-weight: 700;
  font-size: clamp(32px, 5vw, 52px);
  color: #0a1a0a;
  margin-bottom: 18px;
}

.contact-copy p {
  font-family: 'Pacaembu', sans-serif;
  font-weight: 300;
  font-size: 15px;
  line-height: 1.7;
  color: rgba(0,0,0,0.64);
  max-width: 560px;
}

.contact-panel {
  background: #111;
  color: var(--white);
  padding: 32px;
  border-radius: 8px;
  display: grid;
  gap: 24px;
}

.contact-item span {
  display: block;
  font-family: 'Pacaembu', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.3px;
  color: rgba(255,255,255,0.42);
  text-transform: uppercase;
  margin-bottom: 8px;
}

.contact-item a,
.contact-item p {
  font-family: 'Pacaembu', sans-serif;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.6;
  color: rgba(255,255,255,0.82);
  text-decoration: none;
}

.contact-form {
  display: grid;
  gap: 18px;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.form-field {
  display: grid;
  gap: 8px;
}

.form-intro {
  font-family: 'Pacaembu', sans-serif;
  font-size: 14px;
  font-weight: 300;
  line-height: 1.7;
  color: rgba(255,255,255,0.68);
}

.form-field-full {
  grid-column: 1 / -1;
}

.form-field label {
  font-family: 'Pacaembu', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.3px;
  color: rgba(255,255,255,0.42);
  text-transform: uppercase;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 8px;
  background: rgba(255,255,255,0.08);
  color: var(--white);
  font-family: 'Pacaembu', sans-serif;
  font-size: 14px;
  font-weight: 300;
  padding: 12px 14px;
  outline: none;
}

.form-field textarea {
  min-height: 116px;
  resize: vertical;
}

.form-field select {
  color: rgba(255,255,255,0.82);
}

.form-field option {
  color: #111;
}

.form-field input::placeholder,
.form-field textarea::placeholder {
  color: rgba(255,255,255,0.36);
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(200,255,0,0.16);
}

.form-note,
.form-status {
  font-family: 'Pacaembu', sans-serif;
  font-size: 12px;
  font-weight: 300;
  line-height: 1.6;
  color: rgba(255,255,255,0.52);
}

.form-status {
  display: none;
  width: 100%;
  margin-top: 14px;
  font-family: 'Pacaembu', sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.5;
  color: rgba(255,255,255,0.72);
}

.form-status.is-visible {
  display: block;
}

.form-status.is-success {
  color: var(--blue);
}

.form-status.is-error {
  color: #ff8a8a;
}

.contact-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
}

.contact-actions a,
.contact-actions button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 42px;
  padding: 10px 18px;
  border-radius: 50px;
  font-family: 'Pacaembu', sans-serif;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  border: 0;
  cursor: pointer;
}

.contact-actions svg {
  width: 17px;
  height: 17px;
  flex-shrink: 0;
}

.contact-primary {
  background: var(--blue);
  color: #0a1a0a;
}

.contact-whatsapp {
  background: var(--blue);
  color: #0a1a0a;
}

.contact-email {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.18);
  color: var(--white);
}

.contact-secondary {
  border: 1px solid rgba(255,255,255,0.25);
  color: var(--white);
}

.join-section {
  background: #111;
  padding: 88px 60px 96px;
  scroll-margin-top: 86px;
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(200,255,0,0.22);
}

.join-inner {
  max-width: 1120px;
  margin: 0 auto;
  color: var(--white);
  display: grid;
  grid-template-columns: minmax(300px, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(40px, 6vw, 80px);
  align-items: start;
}

.join-copy {
  padding-top: 4px;
}

.join-eyebrow {
  display: inline-block;
  margin-bottom: 12px;
  font-family: 'Pacaembu', sans-serif;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 1.4px;
  color: var(--blue);
  text-transform: uppercase;
}

.join-copy h2 {
  font-family: 'Pacaembu', sans-serif;
  font-weight: 700;
  font-size: clamp(38px, 5vw, 58px);
  line-height: 1.08;
  margin-bottom: 16px;
  max-width: 420px;
}

.join-copy p {
  font-family: 'Pacaembu', sans-serif;
  font-weight: 300;
  font-size: 15px;
  line-height: 1.7;
  color: rgba(255,255,255,0.68);
  max-width: 440px;
}

.join-steps {
  list-style: none;
  display: grid;
  gap: 14px;
  counter-reset: join-step;
}

.join-steps li {
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 14px;
  padding: 18px;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  background: #191919;
  align-items: start;
}

.join-steps li::before {
  counter-increment: join-step;
  content: counter(join-step);
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--blue);
  color: #0a1a0a;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Pacaembu', sans-serif;
  font-weight: 700;
  font-size: 14px;
}

.join-steps h3 {
  font-family: 'Pacaembu', sans-serif;
  font-weight: 600;
  font-size: 15px;
  color: var(--white);
  margin-bottom: 6px;
}

.join-steps p {
  font-family: 'Pacaembu', sans-serif;
  font-weight: 300;
  font-size: 13px;
  line-height: 1.6;
  color: rgba(255,255,255,0.62);
}

.privacy-page {
  display: none;
  background: #f7f7f7;
  padding: 140px 24px 88px;
}

body.show-privacy .hero,
body.show-privacy .trust-bar,
body.show-privacy .who-we-are,
body.show-privacy .products,
body.show-privacy .contact,
body.show-privacy .join-section {
  display: none;
}

body.show-privacy .privacy-page {
  display: block;
}

.privacy-inner {
  width: min(1120px, 100%);
  margin: 0 auto;
}

.privacy-content {
  background: rgba(255,255,255,0.82);
  border: 1px solid rgba(10,26,10,0.08);
  border-radius: 18px;
  padding: clamp(28px, 5vw, 64px);
  box-shadow: 0 18px 54px rgba(0,0,0,0.08);
}

.privacy-content h1 {
  font-family: 'Pacaembu', sans-serif;
  font-weight: 800;
  font-size: clamp(40px, 6vw, 68px);
  line-height: 1.04;
  color: #0a1a0a;
  margin-bottom: 18px;
}

.privacy-content h2 {
  font-family: 'Pacaembu', sans-serif;
  font-weight: 700;
  font-size: clamp(21px, 3vw, 28px);
  line-height: 1.25;
  color: #6f8f00;
  margin-bottom: 14px;
}

.privacy-content h3 {
  font-family: 'Pacaembu', sans-serif;
  font-weight: 700;
  font-size: 17px;
  line-height: 1.4;
  color: #0a1a0a;
  margin-bottom: 12px;
}

.privacy-content p,
.privacy-content li,
.privacy-content a {
  font-family: 'Pacaembu', sans-serif;
  font-weight: 300;
  font-size: 15px;
  line-height: 1.75;
  color: rgba(0,0,0,0.66);
}

.privacy-content a {
  font-weight: 600;
  color: #0a1a0a;
  text-decoration: none;
}

.privacy-content a:hover {
  color: #6f8f00;
}

.privacy-content .effective-date,
.privacy-content .note {
  max-width: 860px;
}

.privacy-content .effective-date {
  font-weight: 500;
  color: rgba(0,0,0,0.72);
}

.privacy-content .note {
  margin-top: 10px;
}

.privacy-content .introduction {
  margin-top: 28px;
}

.privacy-content section {
  margin-top: 32px;
}

.privacy-content ul,
.privacy-content ol {
  margin: 12px 0 0 22px;
  display: grid;
  gap: 8px;
}

.privacy-content .data-types ul {
  margin: 10px 0 18px 22px;
}

.site-footer {
  position: relative;
  background: #0b0b0b;
  padding: 72px 80px 36px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.06), inset 0 18px 40px rgba(0,0,0,0.35);
}

.site-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 80px;
  right: 80px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(200,255,0,0.55), transparent);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 56px;
}

.footer-col-logo {
  text-align: center;
}

.footer-col-logo img {
  height: 44px;
  width: auto;
  margin-bottom: 20px;
  margin-left: auto;
  margin-right: auto;
  display: block;
}

.footer-desc {
  font-family: 'Pacaembu', sans-serif;
  font-weight: 300;
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  line-height: 1.7;
  max-width: 260px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 16px;
}

.footer-location {
  font-family: 'Pacaembu', sans-serif;
  font-weight: 400;
  font-size: 11px;
  letter-spacing: 2px;
  color: rgba(255,255,255,0.3);
}

.footer-col h4 {
  font-family: 'Pacaembu', sans-serif;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 1.5px;
  color: rgba(255,255,255,0.4);
  margin-bottom: 20px;
  text-transform: uppercase;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-col ul li a {
  font-family: 'Pacaembu', sans-serif;
  font-weight: 400;
  font-size: 14px;
  color: rgba(255,255,255,0.65);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-col ul li a:hover { color: var(--white); }

.footer-license-note {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.footer-license-note span {
  display: block;
  font-family: 'Pacaembu', sans-serif;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 1.2px;
  color: rgba(255,255,255,0.4);
  text-transform: uppercase;
  margin-bottom: 10px;
}

.footer-license-note p {
  font-family: 'Pacaembu', sans-serif;
  font-weight: 300;
  font-size: 13px;
  line-height: 1.6;
  color: rgba(255,255,255,0.58);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 28px;
  text-align: center;
  font-family: 'Pacaembu', sans-serif;
  font-weight: 400;
  font-size: 13px;
  color: rgba(255,255,255,0.25);
}

@media (max-width: 1200px) {
  .footer-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .footer-col-logo {
    grid-column: 1 / -1;
    text-align: center;
  }
}

@media (max-width: 1024px) {
  nav {
    padding: 0 24px;
    justify-content: flex-start;
    gap: 10px;
  }

  .nav-links {
    display: none;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .nav-actions {
    gap: 8px;
    margin-left: auto;
  }

  .nav-actions .btn-outline {
    display: none;
  }

  .nav-actions .btn-solid {
    padding: 8px 14px;
    font-size: 13px;
    white-space: nowrap;
  }

  .mobile-nav-panel {
    position: absolute;
    top: calc(100% + 10px);
    left: 16px;
    right: 16px;
    display: grid;
    gap: 4px;
    padding: 12px;
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 18px;
    background: rgba(17,17,17,0.96);
    box-shadow: 0 18px 48px rgba(0,0,0,0.28);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 0.2s ease, transform 0.2s ease;
  }

  .mobile-nav-panel a {
    padding: 12px 14px;
    border-radius: 12px;
    font-family: 'Pacaembu', sans-serif;
    font-weight: 500;
    font-size: 14px;
    color: rgba(255,255,255,0.86);
    text-decoration: none;
  }

  .mobile-nav-panel a:hover {
    background: rgba(255,255,255,0.08);
    color: var(--white);
  }

  nav.menu-open .mobile-nav-panel {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  nav.menu-open .nav-toggle span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }

  nav.menu-open .nav-toggle span:nth-child(2) {
    opacity: 0;
  }

  nav.menu-open .nav-toggle span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }
}

@media (max-width: 768px) {
  nav {
    padding: 0 20px;
    justify-content: flex-start;
    gap: 10px;
  }
  .nav-links { display: none; }
  .nav-toggle { display: inline-flex; }
  .mobile-nav-panel {
    position: absolute;
    top: calc(100% + 10px);
    left: 16px;
    right: 16px;
    display: grid;
    gap: 4px;
    padding: 12px;
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 18px;
    background: rgba(17,17,17,0.96);
    box-shadow: 0 18px 48px rgba(0,0,0,0.28);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 0.2s ease, transform 0.2s ease;
  }
  .mobile-nav-panel a {
    padding: 12px 14px;
    border-radius: 12px;
    font-family: 'Pacaembu', sans-serif;
    font-weight: 500;
    font-size: 14px;
    color: rgba(255,255,255,0.86);
    text-decoration: none;
  }
  .mobile-nav-panel a:hover {
    background: rgba(255,255,255,0.08);
    color: var(--white);
  }
  nav.menu-open .mobile-nav-panel {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }
  nav.menu-open .nav-toggle span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }
  nav.menu-open .nav-toggle span:nth-child(2) {
    opacity: 0;
  }
  nav.menu-open .nav-toggle span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }

  .hero-dots {
    position: relative;
    left: auto;
    bottom: auto;
    transform: none;
    margin: 18px 0 46px;
    gap: 9px;
  }

  .hero-dot {
    width: 8px;
    height: 8px;
  }

  .hero-dot.is-active {
    width: 22px;
  }

  .trust-bar { gap: 24px; padding: 16px 24px; }
  .products { padding: 60px 24px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  @keyframes spinCoin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

.coins-deco {
  position: absolute;
  left: -320px;
  bottom: -280px;
  width: 820px;
  height: 820px;
  background-image: url('/assets/images/coins-bg.png');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  pointer-events: none;
  z-index: 0;
  will-change: transform;
  transform-origin: center center;
}
  footer { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  .services-grid { grid-template-columns: 1fr; }
}

@media (max-width: 900px) {
  .who-we-are {
    padding: 72px 32px;
  }

  .who-inner {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .who-header {
    text-align: center;
  }

  .who-header h2 {
    font-size: 48px;
  }

  .who-header p {
    max-width: 640px;
    margin: 0 auto;
  }

  .who-highlights {
    max-width: 640px;
    margin: 24px auto 0;
    text-align: left;
  }

  .who-image {
    max-width: 820px;
    margin: 0 auto;
  }

  .who-image img {
    height: 460px;
  }

  .contact-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .join-inner {
    grid-template-columns: 1fr;
    gap: 28px;
    align-items: start;
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-col-logo {
    grid-column: 1 / -1;
    text-align: center;
  }

  .footer-col-logo img {
    margin-left: auto;
    margin-right: auto;
  }

  .footer-desc {
    max-width: 280px;
    margin-left: auto;
    margin-right: auto;
  }

  .hero {
    height: auto;
    min-height: 0;
    justify-content: flex-start;
    padding-top: 118px;
  }

  .hero-content {
    margin-top: 0;
    margin-bottom: 0;
  }

  .hero-dots {
    position: relative;
    left: auto;
    bottom: auto;
    transform: none;
    margin: 18px 0 46px;
    gap: 9px;
  }

  .hero-dot {
    width: 8px;
    height: 8px;
  }

  .hero-dot.is-active {
    width: 22px;
  }

  .trust-bar {
    margin-top: 0;
    background: rgba(11,11,11,0.96);
    border-top: 1px solid rgba(200,255,0,0.68);
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }
}

@media (max-width: 768px) {
  nav {
    height: 64px;
    padding: 0 16px;
  }

  .nav-actions {
    gap: 8px;
    margin-left: auto;
  }

  .nav-actions .btn-outline {
    display: none;
  }

  .nav-actions .btn-outline,
  .nav-actions .btn-solid {
    padding: 8px 12px;
    font-size: 12px;
    max-width: 112px;
    text-align: center;
    line-height: 1.1;
    white-space: normal;
  }

  .hero {
    height: auto;
    min-height: 0;
    justify-content: flex-start;
    padding-top: 118px;
  }

  .hero-content {
    margin-top: 0;
    margin-bottom: 0;
  }

  .hero-dots {
    position: relative;
    left: auto;
    bottom: auto;
    transform: none;
    margin: 18px 0 46px;
    gap: 9px;
  }

  .hero-dot {
    width: 8px;
    height: 8px;
  }

  .hero-dot.is-active {
    width: 22px;
  }

  .hero-content h1 {
    font-size: clamp(34px, 9vw, 44px);
    line-height: 1.08;
    max-width: 100%;
    overflow-wrap: anywhere;
  }

  .hero-content p {
    font-size: 15px;
    max-width: 100%;
    overflow-wrap: anywhere;
  }

  .trust-bar {
    position: relative;
    margin-top: 0;
    width: 100%;
    padding: 22px 24px;
    gap: 20px;
    justify-content: flex-start;
    background: rgba(11,11,11,0.96);
    border-top: 1px solid rgba(200,255,0,0.68);
    border-bottom: 1px solid rgba(255,255,255,0.08);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
  }

  .trust-item {
    width: 100%;
  }

  .trust-item p {
    max-width: none;
  }

  .contact {
    padding-top: 56px;
  }

  .who-we-are {
    padding: 56px 0 0;
  }

  .who-inner {
    gap: 36px;
  }

  .who-header {
    padding: 0 24px;
  }

  .who-header h2 {
    font-size: 42px;
  }

  .who-header p {
    font-size: 15px;
  }

  .who-highlight {
    padding: 14px 16px;
  }

  .who-highlights {
    grid-template-columns: 1fr;
  }

  .who-image {
    width: 100%;
    max-width: none;
    border-radius: 0;
    box-shadow: none;
  }

  .who-image img {
    height: 340px;
  }

  .service-card {
    border-radius: 8px;
    padding: 28px 18px 26px;
  }

  .contact {
    padding: 56px 24px 28px;
  }

  .join-section {
    padding: 64px 24px;
  }

  .privacy-page {
    padding: 112px 18px 64px;
  }

  .privacy-content {
    border-radius: 12px;
  }

  .join-inner {
    padding: 0;
  }

  .join-copy h2 {
    max-width: none;
  }

  .join-copy p {
    max-width: none;
  }

  .join-steps li {
    grid-template-columns: 34px 1fr;
    gap: 12px;
  }

  .join-steps li::before {
    width: 34px;
    height: 34px;
  }

  .contact-panel {
    padding: 24px;
  }

  .site-footer {
    padding: 56px 24px 32px;
  }

  .site-footer::before {
    left: 24px;
    right: 24px;
  }
}

@media (max-width: 560px) {
  .form-row {
    grid-template-columns: 1fr;
  }

  .form-field-full {
    grid-column: auto;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-col,
  .footer-col-logo {
    text-align: center;
  }

  .footer-col-logo img {
    margin-left: auto;
    margin-right: auto;
  }

  .footer-desc {
    max-width: 280px;
    margin-left: auto;
    margin-right: auto;
  }

  .footer-col ul {
    align-items: center;
  }

  .who-header h2 {
    font-size: 36px;
  }

  .who-image img {
    height: 340px;
  }

  .nav-logo-wrap img {
    height: 28px;
    max-width: 56px;
  }

  .nav-wordmark {
    font-size: 18px;
  }

  .nav-actions .btn-outline,
  .nav-actions .btn-solid {
    padding: 7px 10px;
    font-size: 11px;
  }
}
