/* ═══════════════════════════════════════════════════════
   GRINLIT SOLUTIONS — GLOBAL CSS
   Cinematic Dark Luxury · Playfair Display + Outfit
   ═══════════════════════════════════════════════════════ */

:root {
  --navy:        #030810;
  --navy-mid:    #081222;
  --navy-card:   #0c1a32;
  --blue:        #0057b8;
  --blue-light:  #1a8fe0;
  --blue-glow:   rgba(0,100,210,.18);
  --gold:        #c9a84c;
  --gold-light:  #e8cd82;
  --gold-dim:    rgba(201,168,76,.12);
  --white:       #ffffff;
  --off-white:   #f0ede8;
  --muted:       #7a8da4;
  --text:        #131d2e;
  --shadow-sm:   0 4px 20px rgba(0,0,0,.1);
  --shadow-md:   0 16px 48px rgba(0,0,0,.18);
  --shadow-lg:   0 32px 96px rgba(0,0,0,.28);
  --radius-sm:   6px;
  --radius-md:   12px;
  --wa-green:    #25d366;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Outfit', sans-serif;
  background: var(--navy);
  color: var(--text);
  overflow-x: hidden;
  cursor: none;
  -webkit-font-smoothing: antialiased;
}
a  { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }
button { cursor: pointer; font-family: inherit; }

/* ── CUSTOM CURSOR ── */
.cursor {
  width: 10px; height: 10px;
  background: var(--gold);
  border-radius: 50%;
  position: fixed; top: 0; left: 0;
  pointer-events: none; z-index: 99999;
  transform: translate(-50%,-50%);
  transition: transform .1s, background .3s;
}
.cursor-ring {
  width: 36px; height: 36px;
  border: 1.5px solid rgba(201,168,76,.5);
  border-radius: 50%;
  position: fixed; top: 0; left: 0;
  pointer-events: none; z-index: 99998;
  transform: translate(-50%,-50%);
  transition: transform .22s ease, opacity .3s;
  opacity: .7;
}

/* ── TOPBAR ── */
.topbar {
  background: rgba(3,8,16,.98);
  padding: .5rem 0;
  font-size: .75rem;
  letter-spacing: .04em;
  border-bottom: 1px solid rgba(201,168,76,.12);
  position: relative; z-index: 1001;
}
.topbar-inner {
  padding: 0 5%;
  display: flex; justify-content: space-between; align-items: center;
}
.topbar-links { display: flex; gap: 2rem; }
.topbar-links a {
  color: var(--muted); display: flex; align-items: center; gap: .4rem;
  transition: color .2s; font-size: .74rem;
}
.topbar-links a:hover { color: var(--gold); }
.topbar-socials { display: flex; gap: .45rem; }
.topbar-socials a {
  width: 24px; height: 24px;
  border: 1px solid rgba(255,255,255,.08); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--muted); font-size: .62rem;
  transition: all .2s;
}
.topbar-socials a:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-2px); }

/* ── HEADER ── */
.header {
  background: rgba(3,8,16,.88);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  position: sticky; top: 0; z-index: 9999;
  border-bottom: 1px solid rgba(255,255,255,.05);
  transition: all .3s;
}
.header.scrolled {
  background: rgba(3,8,16,.99);
  box-shadow: 0 8px 48px rgba(0,0,0,.5);
  border-bottom-color: rgba(201,168,76,.18);
}
.header-inner {
  padding: 0 5%;
  display: flex; align-items: center; justify-content: space-between;
  height: 76px;
}

/* ── LOGO ── */
.logo {
  display: flex; align-items: center; gap: .75rem;
  text-decoration: none; flex-shrink: 0;
}
.logo-img-wrap {
  width: 52px; height: 52px;
  border-radius: 10px; overflow: hidden;
  border: 1.5px solid rgba(201,168,76,.25);
  box-shadow: 0 4px 18px rgba(0,0,0,.45), 0 0 0 3px rgba(201,168,76,.06);
  flex-shrink: 0; background: #0c1a32;
  display: flex; align-items: center; justify-content: center;
  transition: box-shadow .3s, border-color .3s;
}
.logo:hover .logo-img-wrap {
  border-color: rgba(201,168,76,.55);
  box-shadow: 0 6px 24px rgba(201,168,76,.2), 0 0 0 4px rgba(201,168,76,.08);
}
.logo-img-wrap img { width: 100%; height: 100%; object-fit: cover; display: block; }
.logo-text { display: flex; flex-direction: column; line-height: 1; }
.logo-name {
  font-family: 'Playfair Display', serif;
  font-weight: 700; font-size: 1.1rem;
  color: var(--white); letter-spacing: .02em; white-space: nowrap;
}
.logo-tagline {
  font-family: 'Outfit', sans-serif;
  font-size: .58rem; color: var(--gold);
  letter-spacing: .16em; text-transform: uppercase;
  margin-top: 3px; opacity: .85; white-space: nowrap;
}

/* ── MAIN NAV ── */
.nav { display: flex; align-items: center; gap: 2rem; }
.nav > a,
.nav > .nav-item > a {
  font-family: 'Outfit', sans-serif;
  font-size: .76rem; font-weight: 500;
  color: rgba(255,255,255,.65);
  letter-spacing: .08em; text-transform: uppercase;
  position: relative; padding-bottom: 3px;
  transition: color .2s; white-space: nowrap;
}
.nav > a::after,
.nav > .nav-item > a::after {
  content: ''; position: absolute; bottom: 0; left: 0;
  width: 0; height: 1.5px; background: var(--gold);
  transition: width .3s;
}
.nav > a:hover,
.nav > .nav-item > a:hover { color: var(--white); }
.nav > a:hover::after,
.nav > .nav-item > a:hover::after { width: 100%; }
.nav > a.active { color: var(--white); }
.nav > a.active::after { width: 100%; }

/* ── DROPDOWN ── */
.nav-item { position: relative; }
.nav-dropdown {
  position: absolute; top: calc(100% + 18px); left: 50%;
  transform: translateX(-50%) translateY(8px);
  background: #0c1a32;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 10px; min-width: 230px; padding: .8rem 0;
  box-shadow: 0 28px 70px rgba(0,0,0,.55);
  opacity: 0; pointer-events: none; transition: all .28s; z-index: 100;
}
.nav-item:hover .nav-dropdown {
  opacity: 1; pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.nav-dropdown a {
  display: flex; align-items: center; gap: .65rem;
  padding: .6rem 1.3rem;
  font-family: 'Outfit', sans-serif;
  font-size: .76rem; color: rgba(255,255,255,.5);
  transition: all .2s;
}
.nav-dropdown a i { font-size: .72rem; color: var(--gold); opacity: 0; transition: opacity .2s; }
.nav-dropdown a:hover { color: var(--gold); padding-left: 1.65rem; }
.nav-dropdown a:hover i { opacity: 1; }

/* ── NAV CTA BUTTON ── */
.nav-cta {
  background: var(--gold) !important; color: #030810 !important;
  padding: .6rem 1.5rem !important;
  border-radius: 4px !important;
  font-size: .74rem !important; font-weight: 700 !important;
  letter-spacing: .08em; white-space: nowrap;
  box-shadow: 0 4px 18px rgba(201,168,76,.3);
  transition: all .25s !important;
}
.nav-cta:hover {
  background: var(--gold-light) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 10px 28px rgba(201,168,76,.45) !important;
}
.nav-cta::after { display: none !important; }

/* ── HAMBURGER ── */
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; padding: 8px; border: none; background: none;
}
.hamburger span {
  display: block; width: 22px; height: 2px;
  background: rgba(255,255,255,.7); border-radius: 2px; transition: all .3s;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── MOBILE NAV ── */
.mobile-nav {
  position: fixed; inset: 0; background: #030810;
  z-index: 99998; display: flex; flex-direction: column;
  justify-content: center; align-items: center; gap: 1.75rem;
  opacity: 0; pointer-events: none; transition: opacity .4s;
}
.mobile-nav.open { opacity: 1; pointer-events: auto; }
.mobile-nav > a {
  font-family: 'Playfair Display', serif;
  font-size: 2rem; font-weight: 600;
  color: rgba(255,255,255,.55);
  transition: color .2s;
}
.mobile-nav > a:hover,
.mobile-nav > a.active { color: var(--gold); }
.mobile-close {
  position: absolute; top: 1.5rem; right: 2rem;
  font-size: 1.5rem; color: rgba(255,255,255,.35);
  cursor: pointer; transition: color .2s;
  background: none; border: none;
}
.mobile-close:hover { color: var(--gold); }
.mobile-logo {
  position: absolute; top: 1.2rem; left: 5%;
  display: flex; align-items: center; gap: .6rem;
}
.mobile-logo img {
  width: 38px; height: 38px;
  border-radius: 7px; object-fit: cover;
  border: 1px solid rgba(201,168,76,.3);
}
.mobile-logo span {
  font-family: 'Playfair Display', serif;
  font-size: .95rem; font-weight: 700; color: var(--white);
}
.mobile-wa-btn {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .7rem 2rem;
  background: var(--wa-green); color: #fff !important;
  border-radius: 50px; font-size: .85rem; font-weight: 600;
  margin-top: .5rem; transition: all .2s;
  font-family: 'Outfit', sans-serif;
}
.mobile-wa-btn:hover { background: #1fba59; transform: scale(1.04); }
.mobile-wa-btn i { font-size: 1.1rem; }

/* ── SECTION HELPERS ── */
.section { padding: 7rem 5%; width: 100%; }
.section-tag {
  display: inline-flex; align-items: center; gap: .6rem;
  font-size: .65rem; letter-spacing: .25em; text-transform: uppercase;
  color: var(--gold); font-weight: 600; margin-bottom: 1rem;
}
.section-tag::before { content: ''; width: 26px; height: 1.5px; background: var(--gold); display: block; }
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3.4rem);
  font-weight: 700; line-height: 1.12;
  color: var(--white); letter-spacing: -.01em;
}
.section-title em { font-style: italic; color: var(--gold); }
.section-sub {
  font-size: .95rem; color: rgba(255,255,255,.45);
  line-height: 1.8; max-width: 560px;
  margin-top: .75rem; font-weight: 300;
}

/* ── PAGE HERO ── */
.page-hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 60%, rgba(0,57,120,.25) 100%);
  padding: 7rem 5% 5rem; position: relative; overflow: hidden; text-align: center;
}
.page-hero::before {
  content: ''; position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none'%3E%3Cg fill='%23ffffff' fill-opacity='0.02'%3E%3Cpath d='M50 50c0-5.523 4.477-10 10-10s10 4.477 10 10-4.477 10-10 10c0 5.523-4.477 10-10 10s-10-4.477-10-10 4.477-10 10-10zM10 10c0-5.523 4.477-10 10-10s10 4.477 10 10-4.477 10-10 10c0 5.523-4.477 10-10 10S0 25.523 0 20s4.477-10 10-10z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.page-hero-content { position: relative; z-index: 2; max-width: 700px; margin: 0 auto; }
.page-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.4rem, 5vw, 4.2rem); font-weight: 700; line-height: 1.08;
  color: var(--white); margin: 1rem 0;
}
.page-hero h1 em { font-style: italic; color: var(--gold); }
.page-hero p { font-size: 1rem; color: rgba(255,255,255,.5); line-height: 1.8; max-width: 540px; margin: 0 auto; font-weight: 300; }
.breadcrumb {
  display: flex; align-items: center; gap: .5rem;
  justify-content: center; margin-top: 2rem; font-size: .75rem;
}
.breadcrumb a { color: rgba(255,255,255,.35); transition: color .2s; }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb span { color: rgba(255,255,255,.15); }
.breadcrumb .current { color: var(--gold); }

/* ── BUTTONS ── */
.btn-primary {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .85rem 2rem;
  background: var(--gold); color: var(--navy); border-radius: 4px;
  font-size: .8rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
  box-shadow: 0 6px 24px rgba(201,168,76,.3);
  transition: all .25s; border: none;
}
.btn-primary:hover { background: var(--gold-light); transform: translateY(-3px); box-shadow: 0 12px 36px rgba(201,168,76,.4); color: var(--navy); }
.btn-outline {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .85rem 2rem;
  border: 1px solid rgba(255,255,255,.25);
  color: rgba(255,255,255,.8); border-radius: 4px;
  font-size: .8rem; font-weight: 500; letter-spacing: .08em; text-transform: uppercase;
  transition: all .25s; backdrop-filter: blur(10px);
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-3px); }
.btn-navy {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .85rem 2rem;
  background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.15);
  color: var(--white); border-radius: 4px;
  font-size: .82rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase;
  transition: all .25s;
}
.btn-navy:hover { background: var(--gold); border-color: var(--gold); color: var(--navy); transform: translateY(-2px); }
.btn-whatsapp {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .85rem 2rem;
  background: var(--wa-green); color: #fff; border-radius: 4px;
  font-size: .8rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
  transition: all .25s; border: none;
}
.btn-whatsapp:hover { background: #1fba59; transform: translateY(-3px); box-shadow: 0 12px 36px rgba(37,211,102,.35); color: #fff; }

/* ── TAGS ── */
.tag {
  display: inline-flex; align-items: center;
  padding: .28rem .7rem; border-radius: 50px;
  font-size: .6rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
}
.tag-gold { background: rgba(201,168,76,.15); color: var(--gold); border: 1px solid rgba(201,168,76,.25); }
.tag-blue { background: rgba(0,87,184,.2); color: #5ba4f5; border: 1px solid rgba(0,87,184,.3); }

/* ── SCROLL REVEAL ── */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }
.reveal-delay-4 { transition-delay: .4s; }
.reveal-delay-5 { transition-delay: .5s; }

/* ═══════════════════════════════════════════════════════
   WHATSAPP FLOATING BUTTON
   ═══════════════════════════════════════════════════════ */
.wa-float {
  position: fixed; bottom: 2rem; right: 2rem; z-index: 9990;
  width: 62px; height: 62px;
  background: var(--wa-green);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 1.9rem;
  box-shadow: 0 8px 28px rgba(37,211,102,.45);
  transition: all .3s;
  text-decoration: none;
}
.wa-float:hover {
  transform: scale(1.12) translateY(-3px);
  box-shadow: 0 14px 40px rgba(37,211,102,.55);
  color: #fff;
}
.wa-float:hover .wa-tooltip { opacity: 1; transform: translateX(-4px); pointer-events: none; }
.wa-tooltip {
  position: absolute; right: calc(100% + 12px); top: 50%;
  transform: translateY(-50%) translateX(8px);
  background: var(--navy-card); color: #fff;
  padding: .4rem .85rem; border-radius: 4px;
  font-family: 'Outfit', sans-serif; font-size: .78rem; font-weight: 500;
  white-space: nowrap; opacity: 0; transition: all .3s;
  border: 1px solid rgba(255,255,255,.1);
  pointer-events: none;
}
.wa-tooltip::after {
  content: ''; position: absolute; left: 100%; top: 50%;
  transform: translateY(-50%);
  border: 6px solid transparent;
  border-left-color: var(--navy-card);
}
.wa-pulse {
  position: absolute; top: 0; right: 0;
  width: 18px; height: 18px;
  background: #ff3b30; border-radius: 50%;
  border: 2px solid var(--navy);
  animation: wa-blink 2s infinite;
}
@keyframes wa-blink { 0%,100%{ transform: scale(1); opacity:1 } 50%{ transform: scale(1.3); opacity:.7 } }

/* ═══════════════════════════════════════════════════════
   PRE-FOOTER CTA BAND
   ═══════════════════════════════════════════════════════ */
.footer-cta-band {
  position: relative; overflow: hidden;
  padding: 7rem 5%;
  text-align: center;
  background:
    linear-gradient(180deg, rgba(3,8,16,0) 0%, rgba(3,8,16,.55) 100%),
    url('https://images.unsplash.com/photo-1558494949-ef010cbdcc31?w=1600&q=80') center/cover no-repeat;
  border-top: 1px solid rgba(255,255,255,.05);
}
.footer-cta-band::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(3,8,16,.85) 0%, rgba(8,18,34,.8) 50%, rgba(3,8,16,.85) 100%);
  z-index: 0;
}
.footer-cta-band-inner { position: relative; z-index: 1; max-width: 820px; margin: 0 auto; }
.footer-cta-eyebrow {
  display: flex; align-items: center; justify-content: center; gap: 1rem;
  margin-bottom: 1.75rem;
}
.footer-cta-eyebrow::before, .footer-cta-eyebrow::after {
  content: ''; display: block; width: 40px; height: 1px; background: var(--gold); opacity: .7;
}
.footer-cta-eyebrow span {
  font-family: 'Outfit', sans-serif;
  font-size: .68rem; letter-spacing: .28em; text-transform: uppercase;
  color: var(--gold); font-weight: 600;
}
.footer-cta-heading {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 700; line-height: 1.08; color: #fff;
  margin-bottom: 1.5rem; letter-spacing: -.01em;
}
.footer-cta-sub {
  font-family: 'Outfit', sans-serif;
  font-size: 1rem; color: rgba(255,255,255,.6);
  line-height: 1.75; max-width: 560px; margin: 0 auto 3rem; font-weight: 300;
}
.footer-cta-btns {
  display: flex; gap: 1.1rem; justify-content: center; flex-wrap: wrap;
}
.footer-cta-primary {
  display: inline-flex; align-items: center; gap: .55rem;
  padding: 1rem 2.4rem;
  background: var(--gold); color: #030810; border-radius: 4px;
  font-family: 'Outfit', sans-serif;
  font-size: .82rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  box-shadow: 0 8px 28px rgba(201,168,76,.4);
  transition: all .28s;
}
.footer-cta-primary:hover { background: var(--gold-light); transform: translateY(-3px); box-shadow: 0 14px 40px rgba(201,168,76,.5); color: #030810; }
.footer-cta-whatsapp {
  display: inline-flex; align-items: center; gap: .55rem;
  padding: 1rem 2.4rem;
  background: var(--wa-green); color: #fff; border-radius: 4px;
  font-family: 'Outfit', sans-serif;
  font-size: .82rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  transition: all .28s;
}
.footer-cta-whatsapp:hover { background: #1fba59; transform: translateY(-3px); box-shadow: 0 14px 40px rgba(37,211,102,.4); color: #fff; }
.footer-cta-secondary {
  display: inline-flex; align-items: center; gap: .55rem;
  padding: 1rem 2.4rem;
  border: 1.5px solid rgba(255,255,255,.3);
  color: rgba(255,255,255,.85); border-radius: 4px;
  font-family: 'Outfit', sans-serif;
  font-size: .82rem; font-weight: 500; letter-spacing: .1em; text-transform: uppercase;
  backdrop-filter: blur(10px); transition: all .28s;
}
.footer-cta-secondary:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-3px); background: rgba(201,168,76,.06); }

/* ═══════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════ */
.footer {
  background: #020609;
  padding: 0;
  font-family: 'Outfit', sans-serif;
}
.footer-columns-wrap {
  padding: 5rem 5% 0;
  position: relative;
}
.footer-columns-wrap::before {
  content: ''; position: absolute; top: 0; left: 5%; right: 5%; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201,168,76,.3) 30%, rgba(201,168,76,.3) 70%, transparent);
}

/* Footer logo */
.footer-logo-link {
  display: flex; align-items: center; gap: .75rem;
  text-decoration: none; flex-shrink: 0; margin-bottom: .5rem;
}
.footer-logo-img {
  width: 58px; height: 58px;
  border-radius: 10px; overflow: hidden;
  border: 1.5px solid rgba(201,168,76,.2);
  box-shadow: 0 4px 20px rgba(0,0,0,.5);
  background: #0c1a32; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  transition: border-color .3s, box-shadow .3s;
}
.footer-logo-link:hover .footer-logo-img {
  border-color: rgba(201,168,76,.5);
  box-shadow: 0 6px 26px rgba(201,168,76,.15);
}
.footer-logo-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.footer-logo-text { display: flex; flex-direction: column; line-height: 1; }
.footer-logo-name { font-family: 'Playfair Display', serif; font-weight: 700; font-size: 1.05rem; color: #fff; }
.footer-logo-tagline { font-size: .56rem; color: var(--gold); letter-spacing: .16em; text-transform: uppercase; margin-top: 3px; opacity: .8; }

/* Footer grid */
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.3fr;
  gap: 3rem;
  padding-bottom: 4rem;
  border-bottom: 1px solid rgba(255,255,255,.04);
}
.footer-brand-desc {
  font-size: .85rem; color: rgba(255,255,255,.3);
  line-height: 1.85; margin: 1.4rem 0 1.75rem; font-weight: 300;
}
.footer-socials { display: flex; gap: .55rem; flex-wrap: wrap; }
.footer-socials a {
  width: 36px; height: 36px; border-radius: 8px;
  border: 1px solid rgba(255,255,255,.08);
  display: flex; align-items: center; justify-content: center;
  color: var(--muted); font-size: .8rem; transition: all .25s;
}
.footer-socials a:hover {
  border-color: var(--gold); color: var(--gold);
  background: rgba(201,168,76,.08); transform: translateY(-2px);
}
.footer-certifications { display: flex; gap: .6rem; flex-wrap: wrap; margin-top: 1.5rem; }
.footer-cert-badge {
  display: inline-flex; align-items: center; gap: .35rem;
  padding: .28rem .7rem; border-radius: 50px;
  background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.07);
  font-size: .6rem; font-weight: 600; letter-spacing: .07em; text-transform: uppercase; color: rgba(255,255,255,.3);
}
.footer-cert-badge i { color: var(--gold); font-size: .62rem; }
.footer-col h4 {
  font-size: .68rem; letter-spacing: .22em; text-transform: uppercase;
  color: var(--gold); font-weight: 600; margin-bottom: 1.5rem;
  display: flex; align-items: center; gap: .5rem;
}
.footer-col h4::before { content: ''; width: 18px; height: 1.5px; background: var(--gold); display: block; flex-shrink: 0; }
.footer-col ul { display: flex; flex-direction: column; gap: .55rem; }
.footer-col ul li a {
  font-size: .84rem; color: rgba(255,255,255,.3); font-weight: 300;
  display: flex; align-items: center; gap: .45rem; transition: all .2s;
}
.footer-col ul li a i { font-size: .6rem; color: var(--gold); opacity: 0; transition: opacity .2s; }
.footer-col ul li a:hover { color: #fff; padding-left: 4px; }
.footer-col ul li a:hover i { opacity: 1; }

/* Footer contact */
.footer-contact { display: flex; flex-direction: column; gap: 1rem; }
.footer-contact-item { display: flex; gap: .8rem; align-items: flex-start; }
.footer-contact-item .icon-box {
  width: 32px; height: 32px; flex-shrink: 0;
  background: rgba(201,168,76,.08); border: 1px solid rgba(201,168,76,.15);
  border-radius: 6px; display: flex; align-items: center; justify-content: center;
  color: var(--gold); font-size: .72rem; margin-top: 1px; transition: all .3s;
}
.footer-contact-item:hover .icon-box { background: rgba(201,168,76,.15); }
.footer-contact-item span,
.footer-contact-item a {
  font-size: .82rem; color: rgba(255,255,255,.35);
  line-height: 1.65; font-weight: 300; transition: color .2s;
}
.footer-contact-item a:hover { color: var(--gold); }

/* Newsletter */
.footer-newsletter { margin-top: 1.75rem; }
.footer-newsletter h5 {
  font-size: .65rem; letter-spacing: .18em; text-transform: uppercase;
  color: rgba(255,255,255,.4); font-weight: 600; margin-bottom: .65rem;
}
.newsletter-form {
  display: flex;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 5px; overflow: hidden;
  transition: border-color .25s;
}
.newsletter-form:focus-within { border-color: rgba(201,168,76,.4); }
.newsletter-form input {
  flex: 1; background: none; border: none; outline: none;
  color: #fff; font-size: .82rem; font-family: 'Outfit', sans-serif;
  padding: .7rem 1rem; min-width: 0;
}
.newsletter-form input::placeholder { color: rgba(255,255,255,.2); }
.newsletter-form button {
  background: var(--gold); color: #030810; border: none;
  padding: .7rem 1.1rem; font-size: .74rem; font-weight: 700;
  font-family: 'Outfit', sans-serif; cursor: pointer; transition: background .2s;
  white-space: nowrap; letter-spacing: .06em;
}
.newsletter-form button:hover { background: var(--gold-light); }

/* Partners strip */
.footer-partners-strip {
  padding: 2rem 0;
  border-bottom: 1px solid rgba(255,255,255,.04);
  display: flex; align-items: center; gap: 2rem; flex-wrap: wrap;
}
.footer-partners-strip h5 {
  font-size: .62rem; letter-spacing: .2em; text-transform: uppercase;
  color: rgba(255,255,255,.2); font-weight: 600; flex-shrink: 0; white-space: nowrap;
}
.footer-partner-logos { display: flex; gap: 1.5rem; align-items: center; flex-wrap: wrap; }
.footer-partner-logo {
  font-size: .68rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase;
  color: rgba(255,255,255,.18); transition: color .25s;
}
.footer-partner-logo:hover { color: rgba(255,255,255,.5); }

/* Footer bottom */
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding: 1.5rem 0; flex-wrap: wrap; gap: 1rem;
}
.footer-bottom-left { display: flex; align-items: center; gap: 1.5rem; flex-wrap: wrap; }
.footer-bottom p { font-size: .74rem; color: rgba(255,255,255,.2); }
.footer-bottom-links { display: flex; gap: 1.5rem; }
.footer-bottom-links a {
  font-size: .72rem; color: rgba(255,255,255,.2);
  transition: color .2s;
}
.footer-bottom-links a:hover { color: var(--gold); }
.footer-back-top {
  width: 36px; height: 36px; border-radius: 8px;
  border: 1px solid rgba(255,255,255,.08);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.3); font-size: .8rem;
  transition: all .25s; background: none;
}
.footer-back-top:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-2px); }

/* ═══════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════ */
@media (max-width: 1100px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 900px) {
  .nav { display: none; }
  .hamburger { display: flex; }
  .topbar-links { display: none; }
}
@media (max-width: 768px) {
  .section { padding: 4rem 5%; }
  .footer-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer-partners-strip { display: none; }
  .footer-columns-wrap { padding: 3.5rem 5% 0; }
  .footer-cta-band { padding: 5rem 5%; }
  .footer-cta-btns { flex-direction: column; align-items: center; }
  .footer-cta-primary, .footer-cta-secondary, .footer-cta-whatsapp {
    width: 100%; max-width: 320px; justify-content: center;
  }
  .wa-float { bottom: 1.25rem; right: 1.25rem; width: 54px; height: 54px; font-size: 1.6rem; }
}
