/* SHARED STYLES - polaris-paraguay.com */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --navy: #0d1520; --navy2: #131e2e; --navy3: #1a2740;
  --gold: #c9a84c; --gold-light: #e8c97a;
  --cream: #f5f0e8; --text: #f0ece4; --text-muted: #8a9ab0;
  --border: rgba(201,168,76,0.18);
  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans: 'DM Sans', system-ui, sans-serif;
}
html { scroll-behavior: smooth; }
body { font-family: var(--sans); background: var(--navy); color: var(--text); line-height: 1.6; 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: 1.25rem 3rem; background: rgba(13,21,32,0.85); backdrop-filter: blur(12px); border-bottom: 1px solid var(--border); }
.nav-logo { font-family: var(--serif); font-size: 1.35rem; font-weight: 600; letter-spacing: 0.12em; color: var(--gold); text-decoration: none; text-transform: uppercase; display: flex; align-items: center; gap: 0.6rem; }
.nav-logo svg { width: 22px; height: 22px; }
.nav-links { display: flex; align-items: center; gap: 2.5rem; list-style: none; }
.nav-links a { font-size: 0.78rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-muted); text-decoration: none; transition: color 0.2s; }
.nav-links a:hover, .nav-links a.active { color: var(--gold); }
.nav-cta { font-size: 0.75rem !important; padding: 0.5rem 1.25rem; border: 1px solid var(--gold); color: var(--gold) !important; border-radius: 2px; transition: background 0.2s, color 0.2s !important; }
.nav-cta:hover { background: var(--gold) !important; color: var(--navy) !important; }
section { padding: 6rem 3rem; }
.section-label { font-size: 0.68rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold); margin-bottom: 1rem; display: flex; align-items: center; gap: 0.75rem; }
.section-label::before { content: ''; display: block; width: 24px; height: 1px; background: var(--gold); }
h1 { font-family: var(--serif); font-size: clamp(2.8rem, 6vw, 4.5rem); font-weight: 500; line-height: 1.1; margin-bottom: 1.75rem; color: var(--cream); }
h1 em, h2 em { font-style: italic; color: var(--gold); }
h2 { font-family: var(--serif); font-size: clamp(2rem, 4vw, 3rem); font-weight: 500; color: var(--cream); line-height: 1.15; margin-bottom: 1rem; }
h3 { font-family: var(--serif); font-size: 1.5rem; font-weight: 500; color: var(--cream); margin-bottom: 0.75rem; }
.btn-primary { display: inline-block; padding: 0.85rem 2rem; background: var(--gold); color: var(--navy); font-size: 0.78rem; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; text-decoration: none; border-radius: 2px; transition: background 0.2s, transform 0.15s; }
.btn-primary:hover { background: var(--gold-light); transform: translateY(-1px); }
.btn-secondary { display: inline-block; padding: 0.85rem 2rem; border: 1px solid rgba(201,168,76,0.4); color: var(--cream); font-size: 0.78rem; font-weight: 400; letter-spacing: 0.1em; text-transform: uppercase; text-decoration: none; border-radius: 2px; transition: border-color 0.2s, color 0.2s; }
.btn-secondary:hover { border-color: var(--gold); color: var(--gold); }
/* PAGE HERO (inner pages) */
.page-hero { padding: 10rem 3rem 5rem; background: linear-gradient(160deg, #0d1520 0%, #111c2c 60%, #0d1520 100%); border-bottom: 1px solid var(--border); position: relative; overflow: hidden; }
.page-hero-bg { position: absolute; inset: 0; background-image: linear-gradient(var(--border) 1px, transparent 1px), linear-gradient(90deg, var(--border) 1px, transparent 1px); background-size: 60px 60px; opacity: 0.4; }
.page-hero-content { position: relative; z-index: 2; max-width: 680px; animation: fadeUp 0.8s ease both; }
@keyframes fadeUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
.page-hero p { font-size: 1.05rem; color: var(--text-muted); line-height: 1.75; font-weight: 300; margin-top: 1rem; max-width: 520px; }
/* FOOTER */
footer { background: #08101a; padding: 2.5rem 3rem; border-top: 1px solid var(--border); display: flex; justify-content: space-between; align-items: flex-start; gap: 2rem; flex-wrap: wrap; }
.footer-brand { font-family: var(--serif); font-size: 1.1rem; font-weight: 600; letter-spacing: 0.12em; color: var(--gold); text-transform: uppercase; margin-bottom: 0.5rem; }
.footer-legal { font-size: 0.72rem; color: var(--text-muted); line-height: 1.7; }
.footer-links { display: flex; flex-direction: column; gap: 0.5rem; align-items: flex-end; }
.footer-links a { font-size: 0.72rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--text-muted); text-decoration: none; transition: color 0.2s; }
.footer-links a:hover { color: var(--gold); }
.footer-disclaimer { width: 100%; font-size: 0.68rem; color: rgba(138,154,176,0.5); border-top: 1px solid var(--border); padding-top: 1.25rem; margin-top: 0.5rem; line-height: 1.7; }
@media (max-width: 768px) { nav { padding: 1rem 1.5rem; } .nav-links { display: none; } section { padding: 4rem 1.5rem; } .page-hero { padding: 8rem 1.5rem 4rem; } footer { flex-direction: column; } .footer-links { align-items: flex-start; } }
