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

:root {
  --navy: #0d1b3e;
  --navy-light: #152347;
  --navy-mid: #1a2c55;
  --gold: #f4a400;
  --gold-light: #ffc107;
  --gold-dark: #d48c00;
  --white: #ffffff;
  --gray-50: #f8f9fa;
  --gray-100: #f1f3f5;
  --gray-200: #e9ecef;
  --gray-400: #ced4da;
  --gray-500: #6c757d;
  --gray-700: #495057;
  --gray-900: #1a1a2e;
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.07);
  --shadow-md: 0 4px 24px rgba(0,0,0,0.11);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.17);
  --radius: 12px;
  --radius-lg: 20px;
  --transition: all 0.3s ease;
}

html { scroll-behavior: smooth; }
body { font-family: 'Inter', sans-serif; color: var(--gray-900); background: var(--white); overflow-x: hidden; }

/* ── NAVBAR ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(13,27,62,0.97);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(244,164,0,0.18);
  transition: var(--transition);
}
nav.scrolled { box-shadow: var(--shadow-lg); }
.nav-inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 24px; height: 72px;
}
.nav-logo { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.logo-badge {
  width: 46px; height: 46px; border-radius: 50%;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  display: flex; align-items: center; justify-content: center;
  font-weight: 900; font-size: 16px; color: var(--navy);
  box-shadow: 0 0 0 3px rgba(244,164,0,0.25);
  flex-shrink: 0;
}
.logo-text span:first-child { display: block; font-size: 17px; font-weight: 800; color: var(--white); }
.logo-text span:last-child { display: block; font-size: 10px; font-weight: 500; color: var(--gold); letter-spacing: 1px; text-transform: uppercase; }
.nav-links { display: flex; align-items: center; gap: 2px; list-style: none; }
.nav-links a {
  display: block; padding: 8px 14px; border-radius: 8px;
  color: rgba(255,255,255,0.82); text-decoration: none;
  font-size: 14px; font-weight: 500; transition: var(--transition); white-space: nowrap;
}
.nav-links a:hover { color: var(--gold); background: rgba(244,164,0,0.1); }
.nav-links a.active { color: var(--gold); background: rgba(244,164,0,0.12); }
.nav-cta {
  background: var(--gold) !important; color: var(--navy) !important;
  font-weight: 700 !important; padding: 10px 20px !important;
  border-radius: 50px !important;
}
.nav-cta:hover { background: var(--gold-light) !important; box-shadow: 0 4px 16px rgba(244,164,0,0.4) !important; transform: translateY(-1px); }
.nav-cta.active { background: var(--gold) !important; }

/* Hamburger */
.nav-hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; }
.nav-hamburger span { width: 25px; height: 2px; background: var(--white); border-radius: 2px; transition: var(--transition); }
.mobile-menu {
  display: none; position: fixed; top: 72px; left: 0; right: 0;
  background: var(--navy); padding: 16px 24px 24px;
  border-bottom: 2px solid var(--gold); z-index: 999;
}
.mobile-menu.open { display: block; }
.mobile-menu ul { list-style: none; display: flex; flex-direction: column; gap: 4px; }
.mobile-menu a { display: block; padding: 12px 16px; color: rgba(255,255,255,0.85); text-decoration: none; font-weight: 500; border-radius: 8px; font-size: 15px; }
.mobile-menu a:hover, .mobile-menu a.active { background: rgba(244,164,0,0.15); color: var(--gold); }

/* ── PAGE HERO (shared for inner pages) ── */
.page-hero {
  background: linear-gradient(135deg, var(--navy) 0%, #1a2c55 50%, #0f2244 100%);
  padding: 140px 24px 80px; text-align: center; position: relative; overflow: hidden;
}
.page-hero::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 70% 80% at 50% 50%, rgba(244,164,0,0.1) 0%, transparent 65%);
}
.page-hero-grid {
  position: absolute; inset: 0; opacity: 0.035;
  background-image: linear-gradient(rgba(244,164,0,1) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(244,164,0,1) 1px, transparent 1px);
  background-size: 60px 60px;
}
.page-hero-inner { position: relative; z-index: 1; max-width: 760px; margin: 0 auto; }
.page-hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(244,164,0,0.15); border: 1px solid rgba(244,164,0,0.35);
  border-radius: 50px; padding: 6px 18px; margin-bottom: 20px;
  font-size: 12px; font-weight: 700; color: var(--gold); letter-spacing: 1.2px; text-transform: uppercase;
}
.page-hero h1 { font-size: clamp(32px, 5vw, 54px); font-weight: 900; color: var(--white); line-height: 1.12; margin-bottom: 16px; }
.page-hero h1 em { font-style: normal; color: var(--gold); }
.page-hero p { font-size: 17px; color: rgba(255,255,255,0.65); line-height: 1.75; max-width: 600px; margin: 0 auto; }
.breadcrumb { display: flex; align-items: center; justify-content: center; gap: 8px; margin-bottom: 20px; }
.breadcrumb a { color: rgba(255,255,255,0.5); text-decoration: none; font-size: 13px; transition: color 0.2s; }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb span { color: rgba(255,255,255,0.3); font-size: 13px; }
.breadcrumb strong { color: var(--gold); font-size: 13px; }

/* ── UTILITIES ── */
section { padding: 96px 24px; }
.section-inner { max-width: 1200px; margin: 0 auto; }
.section-label { font-size: 12px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--gold-dark); margin-bottom: 10px; }
.section-header { text-align: center; margin-bottom: 64px; }
.section-header h2 { font-size: clamp(28px, 3.5vw, 42px); font-weight: 900; color: var(--navy); margin-bottom: 14px; line-height: 1.2; }
.section-header h2 em { font-style: normal; color: var(--gold-dark); }
.section-header p { font-size: 16px; color: var(--gray-500); max-width: 600px; margin: 0 auto; line-height: 1.75; }
.divider { width: 56px; height: 4px; background: linear-gradient(90deg, var(--gold), var(--gold-light)); border-radius: 2px; margin: 14px auto 0; }

/* ── BUTTONS ── */
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--gold); color: var(--navy);
  padding: 15px 32px; border-radius: 50px;
  font-weight: 700; font-size: 15px; text-decoration: none;
  transition: var(--transition); box-shadow: 0 4px 20px rgba(244,164,0,0.35);
}
.btn-primary:hover { background: var(--gold-light); transform: translateY(-3px); box-shadow: 0 8px 28px rgba(244,164,0,0.5); }
.btn-secondary {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent; color: var(--navy);
  padding: 15px 32px; border-radius: 50px; border: 2px solid var(--navy);
  font-weight: 600; font-size: 15px; text-decoration: none; transition: var(--transition);
}
.btn-secondary:hover { border-color: var(--gold); color: var(--gold-dark); transform: translateY(-3px); }
.btn-white {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent; color: var(--white);
  padding: 15px 32px; border-radius: 50px; border: 2px solid rgba(255,255,255,0.35);
  font-weight: 600; font-size: 15px; text-decoration: none; transition: var(--transition);
}
.btn-white:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-3px); }

/* ── TAGLINE BANNER ── */
.tagline-banner { background: linear-gradient(135deg, var(--gold), var(--gold-dark)); padding: 26px 24px; }
.tagline-inner { max-width: 1200px; margin: 0 auto; display: flex; align-items: center; justify-content: center; gap: 40px; flex-wrap: wrap; }
.tagline-item { display: flex; align-items: center; gap: 10px; }
.tagline-item span { font-size: 14px; font-weight: 800; color: var(--navy); letter-spacing: 0.5px; text-transform: uppercase; }
.tagline-sep { font-size: 20px; color: rgba(13,27,62,0.3); }

/* ── CTA BAND ── */
.cta-band {
  background: linear-gradient(135deg, var(--navy), #1a2c55);
  padding: 80px 24px; text-align: center;
}
.cta-band h2 { font-size: clamp(26px, 3.5vw, 40px); font-weight: 900; color: var(--white); margin-bottom: 14px; }
.cta-band h2 em { font-style: normal; color: var(--gold); }
.cta-band p { font-size: 16px; color: rgba(255,255,255,0.65); margin-bottom: 36px; max-width: 540px; margin-left: auto; margin-right: auto; line-height: 1.7; }
.cta-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ── FOOTER ── */
footer { background: var(--gray-900); color: rgba(255,255,255,0.65); padding: 64px 24px 32px; }
.footer-inner { max-width: 1200px; margin: 0 auto; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
.footer-logo { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.footer-logo-badge { width: 40px; height: 40px; border-radius: 50%; background: linear-gradient(135deg, var(--gold), var(--gold-dark)); display: flex; align-items: center; justify-content: center; font-weight: 900; font-size: 14px; color: var(--navy); }
.footer-logo-text span:first-child { display: block; font-size: 15px; font-weight: 800; color: var(--white); }
.footer-logo-text span:last-child { display: block; font-size: 10px; color: var(--gold); letter-spacing: 1px; text-transform: uppercase; }
.footer-brand p { font-size: 14px; line-height: 1.75; color: rgba(255,255,255,0.45); margin-bottom: 16px; max-width: 300px; }
.footer-platforms { display: flex; gap: 10px; }
.platform-pill { padding: 5px 14px; border-radius: 50px; font-size: 11px; font-weight: 700; border: 1px solid rgba(255,255,255,0.15); color: rgba(255,255,255,0.5); }
.footer-col h4 { font-size: 13px; font-weight: 700; color: var(--white); margin-bottom: 20px; text-transform: uppercase; letter-spacing: 1px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col a { color: rgba(255,255,255,0.5); text-decoration: none; font-size: 14px; transition: color 0.2s; }
.footer-col a:hover { color: var(--gold); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding-top: 28px; display: flex; justify-content: space-between; align-items: center; gap: 12px; flex-wrap: wrap; }
.footer-bottom p, .footer-bottom span { font-size: 13px; color: rgba(255,255,255,0.3); }

/* ── SCROLL TOP & WHATSAPP ── */
.scroll-top {
  position: fixed; bottom: 32px; right: 32px;
  width: 46px; height: 46px; border-radius: 50%;
  background: var(--gold); color: var(--navy); border: none;
  font-size: 18px; cursor: pointer; display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 16px rgba(244,164,0,0.45); transition: var(--transition);
  opacity: 0; pointer-events: none; z-index: 999;
}
.scroll-top.visible { opacity: 1; pointer-events: all; }
.scroll-top:hover { transform: translateY(-4px); box-shadow: 0 8px 24px rgba(244,164,0,0.55); }
.wa-float {
  position: fixed; bottom: 32px; left: 32px;
  display: flex; align-items: center; gap: 10px;
  background: #25D366; color: var(--white);
  padding: 11px 18px; border-radius: 50px;
  text-decoration: none; font-weight: 700; font-size: 13px;
  box-shadow: 0 4px 20px rgba(37,211,102,0.45); transition: var(--transition); z-index: 999;
}
.wa-float:hover { transform: translateY(-3px); box-shadow: 0 8px 28px rgba(37,211,102,0.55); }
.wa-float svg { width: 20px; height: 20px; fill: var(--white); }

/* ── ANIMATIONS ── */
.fade-up { opacity: 0; transform: translateY(28px); transition: opacity 0.55s ease, transform 0.55s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* ── RESPONSIVE ── */
@media (max-width: 960px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 640px) {
  section { padding: 64px 20px; }
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .tagline-inner { flex-direction: column; gap: 14px; }
  .tagline-sep { display: none; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .cta-btns { flex-direction: column; align-items: center; }
  .wa-float span { display: none; }
  .wa-float { padding: 12px; border-radius: 50%; }
}
