
.bsp-site { margin:0; padding:0; width:100%; max-width:none; color:var(--text); background:var(--white); line-height:1.6; font-family:Inter,system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif; }
.bsp-site, .bsp-site * { box-sizing:border-box; }
.bsp-site a { text-decoration:none; }
.bsp-site button { font:inherit; }
.elementor-widget-shortcode, .elementor-shortcode { width:100%; }

:root {
  --navy: #061426;
  --navy-2: #0b1f36;
  --gold: #c9a24f;
  --gold-light: #e3c77f;
  --ivory: #f7f4ee;
  --white: #ffffff;
  --text: #1e2937;
  --muted: #667085;
  --border: #d9dee6;
  --shadow: 0 20px 50px rgba(4, 18, 37, .12);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button, input, select, textarea { font: inherit; }

.container { width: min(1120px, calc(100% - 40px)); margin-inline: auto; }
.section { padding: 88px 0; }
.section-sm { padding: 56px 0; }
.eyebrow {
  display: inline-block;
  color: var(--gold);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
h1, h2, h3 { font-family: Georgia, "Times New Roman", serif; line-height: 1.15; margin: 0 0 18px; }
h1 { font-size: clamp(2.6rem, 6vw, 5.3rem); font-weight: 500; }
h2 { font-size: clamp(2rem, 4vw, 3.25rem); font-weight: 500; }
h3 { font-size: 1.35rem; }
p { margin: 0 0 18px; }
.lead { font-size: 1.15rem; color: #dbe3ee; max-width: 680px; }
.muted { color: var(--muted); }

.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(6, 20, 38, .94);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(201, 162, 79, .22);
}
.nav { height: 84px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: flex; align-items: center; min-width: 210px; }
.brand img { width: 220px; height: 58px; object-fit: cover; object-position: center; }
.nav-links { display: flex; align-items: center; gap: 26px; color: #e8edf4; font-size: .95rem; }
.nav-links a:hover { color: var(--gold-light); }
.mobile-toggle { display: none; background: none; border: 0; color: white; font-size: 1.6rem; }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  min-height: 48px; padding: 0 22px; border-radius: 4px;
  font-weight: 750; border: 1px solid transparent; transition: .2s ease;
  cursor: pointer;
}
.btn-primary { background: var(--gold); color: #111827; }
.btn-primary:hover { background: var(--gold-light); transform: translateY(-1px); }
.btn-outline { color: var(--white); border-color: rgba(255,255,255,.42); }
.btn-outline:hover { border-color: var(--gold); color: var(--gold-light); }
.btn-dark { background: var(--navy); color: var(--white); }
.btn-dark:hover { background: var(--navy-2); }

.hero {
  color: var(--white);
  min-height: 720px;
  display: grid; align-items: center;
  background:
    radial-gradient(circle at 82% 22%, rgba(201,162,79,.15), transparent 27%),
    linear-gradient(115deg, rgba(4,15,29,.99), rgba(7,27,48,.95));
  position: relative; overflow: hidden;
}
.hero::after {
  content: ""; position: absolute; inset: auto -8% -34% auto;
  width: 560px; height: 560px; border: 1px solid rgba(201,162,79,.18); border-radius: 50%;
}
.hero-grid { display: grid; grid-template-columns: 1.25fr .75fr; gap: 70px; align-items: center; position: relative; z-index: 1; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 30px; }
.hero-note { font-size: .83rem; color: #aeb9c8; max-width: 670px; margin-top: 16px; }
.hero-card {
  background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.13);
  padding: 34px; border-radius: 10px; box-shadow: var(--shadow);
}
.hero-card ul { margin: 20px 0 0; padding-left: 20px; color: #e2e8f0; }
.hero-card li { margin-bottom: 14px; }
.gold-line { width: 62px; height: 2px; background: var(--gold); margin: 20px 0; }

.stats { background: var(--ivory); border-bottom: 1px solid #ece7dc; }
.stats-grid { display: grid; grid-template-columns: repeat(3,1fr); }
.stat { padding: 35px; text-align: center; border-right: 1px solid #ded8cc; }
.stat:last-child { border-right: 0; }
.stat strong { display: block; color: var(--navy); font-family: Georgia, serif; font-size: 1.55rem; margin-bottom: 6px; }
.stat span { color: var(--muted); font-size: .95rem; }

.grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.card {
  background: var(--white); border: 1px solid var(--border); border-radius: 8px;
  padding: 30px; box-shadow: 0 10px 35px rgba(4,18,37,.06);
}
.card-icon { width: 42px; height: 42px; display: grid; place-items: center; background: #f5eddc; color: #896d2e; border-radius: 50%; font-weight: 900; margin-bottom: 20px; }
.card a { color: #7e6429; font-weight: 750; }
.card a:hover { text-decoration: underline; }

.split { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: center; }
.panel-dark { background: var(--navy); color: white; border-radius: 10px; padding: 42px; }
.check-list { list-style: none; padding: 0; margin: 26px 0 0; }
.check-list li { padding: 13px 0 13px 30px; position: relative; border-bottom: 1px solid rgba(255,255,255,.1); }
.check-list li::before { content: "✓"; position: absolute; left: 0; color: var(--gold-light); font-weight: 900; }

.faq { max-width: 850px; margin: 0 auto; }
details { border-bottom: 1px solid var(--border); padding: 20px 0; }
summary { cursor: pointer; font-weight: 800; color: var(--navy); }
details p { margin: 14px 0 0; color: var(--muted); }

.cta { background: var(--navy); color: var(--white); }
.cta-box { display: grid; grid-template-columns: 1fr auto; gap: 30px; align-items: center; }

.site-footer { background: #03101f; color: #b9c3d0; padding: 48px 0 30px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 50px; }
.footer-title { color: white; font-weight: 800; margin-bottom: 12px; }
.footer-brand { color: white; font-family: Georgia, serif; font-size: 1.6rem; margin-bottom: 15px; }
.footer-bottom { margin-top: 36px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.1); font-size: .82rem; }

.page-hero { background: var(--navy); color: white; padding: 98px 0 76px; }
.breadcrumb { font-size: .85rem; color: #aeb9c8; margin-bottom: 25px; }
.content-layout { display: grid; grid-template-columns: minmax(0,1fr) 340px; gap: 55px; align-items: start; }
.article h2 { margin-top: 42px; font-size: 2rem; }
.article h3 { margin-top: 30px; }
.article ul { padding-left: 22px; }
.article li { margin-bottom: 10px; }
.notice { background: #fff8e8; border-left: 4px solid var(--gold); padding: 20px; margin: 26px 0; }
.sidebar { position: sticky; top: 108px; }
.form-card { border: 1px solid var(--border); border-radius: 8px; padding: 26px; box-shadow: var(--shadow); }
.form-field { margin-bottom: 15px; }
.form-field label { display: block; font-size: .85rem; font-weight: 800; margin-bottom: 6px; }
.form-field input, .form-field select, .form-field textarea {
  width: 100%; border: 1px solid #cbd3dd; border-radius: 4px; padding: 12px; background: white;
}
.form-field textarea { min-height: 100px; resize: vertical; }
.form-help { font-size: .76rem; color: var(--muted); margin-top: 12px; }
.whatsapp-float {
  position: fixed; right: 22px; bottom: 22px; z-index: 90;
  width: 58px; height: 58px; border-radius: 50%; display: grid; place-items: center;
  background: #1fa855; color: white; font-size: 1.55rem; box-shadow: 0 10px 30px rgba(0,0,0,.25);
}

@media (max-width: 900px) {
  .nav-links { display: none; position: absolute; left: 0; right: 0; top: 84px; background: var(--navy); padding: 22px; flex-direction: column; align-items: stretch; }
  .nav-links.open { display: flex; }
  .mobile-toggle { display: block; }
  .hero { min-height: auto; padding: 90px 0; }
  .hero-grid, .split, .content-layout, .cta-box, .footer-grid { grid-template-columns: 1fr; }
  .grid-3 { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr; }
  .stat { border-right: 0; border-bottom: 1px solid #ded8cc; }
  .sidebar { position: static; }
  .brand img { width: 180px; }
}

@media (max-width: 520px) {
  .container { width: min(100% - 28px, 1120px); }
  .section { padding: 68px 0; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; }
  .hero-card { padding: 25px; }
  .nav { height: 72px; }
  .nav-links { top: 72px; }
}
