/* ─── RESET & BASE ─────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --gold:   #FFD700;
  --orange: #e87722;
  --bg:     #050505;
  --bg2:    #0d0d0d;
  --bg3:    #1a1a1a;
  --text:   #ffffff;
  --muted:  rgba(255,255,255,0.55);
  --border: rgba(255,255,255,0.08);
  --nav-h:  70px;
}

html { scroll-behavior: smooth; }

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a   { color: inherit; }

/* ─── NAV ───────────────────────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  background: rgba(5,5,5,0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  padding: 0 32px;
  gap: 40px;
}

.nav-logo {
  flex-shrink: 0;
  text-decoration: none;
}
.nav-logo img {
  height: 44px;
  width: auto;
  max-width: 220px;
}

.footer-brand img {
  height: 40px;
  width: auto;
  max-width: 200px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  flex: 1;
  list-style: none;
}

.nav-links a {
  display: block;
  padding: 8px 14px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  text-transform: uppercase;
  border-radius: 6px;
  transition: color 0.2s, background 0.2s;
}
.nav-links a:hover,
.nav-links a.active {
  color: #fff;
  background: rgba(255,255,255,0.07);
}
.nav-links a.active { color: var(--gold); }

.nav-cta {
  flex-shrink: 0;
  display: inline-block;
  background: var(--orange);
  color: #fff !important;
  font-size: 13px !important;
  font-weight: 700 !important;
  padding: 10px 22px !important;
  border-radius: 6px !important;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  transition: opacity 0.2s;
}
.nav-cta:hover { opacity: 0.9; background: var(--orange) !important; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  margin-left: auto;
  background: none;
  border: none;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform 0.25s, opacity 0.25s;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav drawer */
.mobile-nav {
  display: none;
  position: fixed;
  top: var(--nav-h);
  left: 0; right: 0;
  background: #050505;
  border-bottom: 1px solid var(--border);
  padding: 12px 0 20px;
  z-index: 999;
}
.mobile-nav.open { display: block; }
.mobile-nav ul { list-style: none; }
.mobile-nav a {
  display: block;
  padding: 13px 28px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  text-transform: uppercase;
}
.mobile-nav a:hover { color: var(--gold); }
.mobile-nav .m-cta {
  margin: 12px 28px 0;
  display: block;
  background: var(--orange);
  color: #fff !important;
  padding: 13px 22px;
  border-radius: 6px;
  text-align: center;
}

/* ─── PAGE BODY OFFSET ──────────────────────────────────────────────────── */
.page-body { padding-top: var(--nav-h); }

/* ─── SECTION WRAPPER ───────────────────────────────────────────────────── */
.sec {
  padding: 72px 0;
}
.sec-dark  { background: var(--bg); }
.sec-dark2 { background: var(--bg2); }
.sec-dark3 { background: var(--bg3); }

.wrap {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ─── FOOTER ────────────────────────────────────────────────────────────── */
footer {
  background: #000;
  border-top: 1px solid var(--border);
  padding: 56px 24px 32px;
}
.footer-inner {
  max-width: 1240px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
}
.footer-brand { flex: 1 1 220px; }
.footer-brand img { height: 36px; margin-bottom: 14px; }
.footer-brand p { color: var(--muted); font-size: 13px; line-height: 1.7; max-width: 240px; }

.footer-col { flex: 1 1 140px; }
.footer-col h4 {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  font-weight: 700;
  margin-bottom: 14px;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 8px; }
.footer-col a {
  color: var(--muted);
  text-decoration: none;
  font-size: 13px;
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--gold); }

.footer-socials {
  display: flex;
  gap: 8px;
  margin-top: 6px;
  flex-wrap: wrap;
}
.footer-socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px; height: 34px;
  border-radius: 7px;
  background: rgba(255,255,255,0.08);
  color: #fff;
  text-decoration: none;
  transition: background 0.2s;
}
.footer-socials a:hover { background: rgba(255,215,0,0.2); color: var(--gold); }
.footer-socials a.dim { background: rgba(255,255,255,0.04); color: rgba(255,255,255,0.25); cursor: default; }
.footer-socials a.dim:hover { background: rgba(255,255,255,0.04); color: rgba(255,255,255,0.25); }

.footer-bottom {
  max-width: 1240px;
  margin: 40px auto 0;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: space-between;
  align-items: center;
}
.footer-bottom p { color: rgba(255,255,255,0.25); font-size: 12px; }
.footer-bottom a { color: rgba(255,255,255,0.35); text-decoration: none; }
.footer-bottom a:hover { color: var(--gold); }

/* ─── WHATSAPP FLOAT ────────────────────────────────────────────────────── */
.wa-float {
  position: fixed;
  bottom: 28px;
  right: 24px;
  z-index: 900;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px; height: 52px;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  text-decoration: none;
  box-shadow: 0 4px 18px rgba(37,211,102,0.4);
  transition: transform 0.2s, box-shadow 0.2s;
}
.wa-float:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 24px rgba(37,211,102,0.55);
}

/* ─── CONTACT FORM ──────────────────────────────────────────────────────── */
.cf-form { display: flex; flex-direction: column; gap: 14px; }
.cf-form input,
.cf-form select,
.cf-form textarea {
  width: 100%;
  background: #1a1a1a;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  color: #fff;
  font-size: 14px;
  font-family: inherit;
  padding: 13px 16px;
  outline: none;
  transition: border-color 0.2s;
}
.cf-form input:focus,
.cf-form select:focus,
.cf-form textarea:focus {
  border-color: var(--gold);
}
.cf-form textarea { resize: vertical; min-height: 120px; }
.cf-form button {
  background: var(--orange);
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 14px 28px;
  cursor: pointer;
  transition: opacity 0.2s;
}
.cf-form button:hover { opacity: 0.9; }
.cf-success {
  display: none;
  background: rgba(37,211,102,0.1);
  border: 1px solid rgba(37,211,102,0.3);
  border-radius: 8px;
  padding: 16px;
  color: #25D366;
  font-size: 14px;
  text-align: center;
  margin-top: 8px;
}

/* ─── RESPONSIVE ────────────────────────────────────────────────────────── */
@media (max-width: 768px) {
  .nav-links, .nav-cta-wrap { display: none; }
  .hamburger { display: flex; }
  .nav { padding: 0 20px; }
}
