/* ================================================================
   FDS Landing Page Theme — Dark High-Conversion LP
   Fábrica de Sites — v2.0.0 (azul marinho)
================================================================ */

/* ── Variables ─────────────────────────────────────────────── */
:root {
  --lp-bg:         #29176d;   /* roxo InPark */
  --lp-bg2:        #1f1156;   /* roxo escuro */
  --lp-bg3:        #180e45;
  --lp-bg4:        #100a30;
  --lp-gold:       #83c422;
  --lp-gold-light: #a0e03a;
  --lp-gold-dark:  #5f8f18;
  --lp-white:      #f5f0e8;
  --lp-gray:       #e8ecf5;   /* texto de corpo — quase branco */
  --lp-gray-dark:  #3a5070;
  --lp-red:        #c0392b;
  --lp-green:      #27ae60;
  --lp-border:     rgba(201,168,68,.18);
  --lp-radius:     8px;
  --lp-font:       'Montserrat', Arial, sans-serif;
  --lp-heading:    'Montserrat', Arial, sans-serif;
  --lp-ease:       0.28s cubic-bezier(.4,0,.2,1);
}

/* ── Reset LP ───────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  background: var(--lp-bg);
  color: var(--lp-white);
  font-family: var(--lp-font);
  font-size: var(--font-size-base, 18px);
  line-height: 1.75;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--lp-heading);
  font-weight: 800;
  line-height: 1.2;
  color: var(--lp-white);
}

a { color: var(--lp-gold); text-decoration: none; transition: color var(--lp-ease); }
a:hover { color: var(--lp-gold-light); }

img { max-width: 100%; height: auto; display: block; }

.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.container--narrow { max-width: 820px; }
.container--wide   { max-width: 1280px; }

/* ── LP Buttons ─────────────────────────────────────────────── */
.lp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: 1.1rem 2.75rem;
  border-radius: var(--lp-radius);
  font-family: var(--lp-heading);
  font-weight: 700;
  font-size: .95rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--lp-ease);
  text-decoration: none;
}

.lp-btn--gold {
  background: var(--lp-gold);
  color: #050e1c;
  border-color: var(--lp-gold);
}
.lp-btn--gold:hover {
  background: var(--lp-gold-light);
  border-color: var(--lp-gold-light);
  color: #050e1c;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201,168,68,.35);
}

.lp-btn--outline {
  background: transparent;
  color: var(--lp-white);
  border-color: rgba(245,240,232,.35);
}
.lp-btn--outline:hover {
  border-color: var(--lp-gold);
  color: var(--lp-gold);
}

.lp-btn--full { width: 100%; }

/* ── Section commons ────────────────────────────────────────── */
.lp-section { padding: 5rem 0; }
.lp-section--sm { padding: 3rem 0; }
.lp-section--lg { padding: 7rem 0; }

.lp-eyebrow {
  display: block;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--lp-gold);
  margin-bottom: .75rem;
}

.lp-section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 800;
  color: var(--lp-white);
  margin-bottom: 1.25rem;
}

.lp-section-title em, .lp-highlight {
  font-style: normal;
  color: var(--lp-gold);
}

.lp-text { color: var(--lp-gray); line-height: 1.85; }
.lp-text strong { color: var(--lp-white); }

/* ── LP Header ──────────────────────────────────────────────── */
.lp-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 900;
  background: rgba(5,14,28,.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--lp-border);
  height: 70px;
  display: flex;
  align-items: center;
}

.lp-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.lp-header__logo { height: 44px; width: auto; }

.lp-header__cta {
  padding: .55rem 1.5rem;
  font-size: .8rem;
}

/* ── LP Footer ──────────────────────────────────────────────── */
.lp-footer {
  background: #020810;
  border-top: 1px solid var(--lp-border);
  padding: 2rem 0;
  text-align: center;
}

.lp-footer__text {
  color: var(--lp-gray-dark);
  font-size: .82rem;
}

.lp-footer__links {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-top: .75rem;
}

.lp-footer__links a {
  color: var(--lp-gray);
  font-size: .82rem;
}

/* ── Page body offset for fixed header ──────────────────────── */
body.lp-page { padding-top: 70px; }

/* ── Responsive ─────────────────────────────────────────────── */
@media (max-width: 768px) {
  .lp-section { padding: 3.5rem 0; }
  .lp-section--lg { padding: 4.5rem 0; }
  .lp-btn { padding: .95rem 1.75rem; font-size: .88rem; }
  body.lp-page { padding-top: 60px; }
  .lp-header { height: 60px; }
}
