:root {
  --c-navy: #00001C;
  --c-navy-90: #0a1330;
  --c-gold: #DA9132;
  --c-gold-light: #f5c068;
  --c-yellow: #FFBA00;
  --c-bg: #ffffff;
  --c-section-bg: #F2F2F2;
  --c-text: #1d1d2c;
  --c-text-muted: #4a4a5a;
  --c-border: #e7e7ec;
  --r-sm: 6px;
  --r-md: 12px;
  --r-lg: 18px;
  --shadow-sm: 0 4px 14px rgba(0,0,28,0.06);
  --shadow-md: 0 10px 30px rgba(0,0,28,0.10);
  --shadow-lg: 0 24px 50px rgba(0,0,28,0.16);
  --f-display: "Anton", "Antonio", Impact, sans-serif;
  --f-body: "Poppins", "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--f-body);
  color: var(--c-text);
  background: var(--c-bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  line-height: 1.55;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ========== Header ========== */
.lp-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: #fff;
  border-bottom: 1px solid var(--c-border);
}
.lp-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 0;
}
.lp-brand img { height: 44px; width: auto; }
.lp-nav { display: flex; align-items: center; gap: 22px; }
.lp-nav a { font-size: 14px; color: var(--c-navy); font-weight: 500; }
.lp-nav a:hover { color: var(--c-gold); }
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 22px;
  font-family: var(--f-body);
  font-weight: 600;
  font-size: 15px;
  border-radius: 999px;
  cursor: pointer;
  text-decoration: none;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
  border: 0;
  line-height: 1;
}
.btn-gold {
  background: var(--c-gold);
  color: #fff;
  box-shadow: 0 8px 18px rgba(218,145,50,0.35);
}
.btn-gold:hover { background: #c98129; transform: translateY(-1px); box-shadow: 0 12px 24px rgba(218,145,50,0.45); }
.btn-whats {
  background: #25D366;
  color: #fff;
  box-shadow: 0 8px 18px rgba(37,211,102,0.30);
}
.btn-whats:hover { background: #1fb957; transform: translateY(-1px); box-shadow: 0 12px 24px rgba(37,211,102,0.45); }
.btn-lg { padding: 16px 28px; font-size: 16px; }
.btn-xl { padding: 20px 34px; font-size: 18px; }
.btn svg { width: 20px; height: 20px; }
.btn-back {
  background: transparent;
  color: var(--c-navy);
  border: 1px solid var(--c-border);
  padding: 10px 18px;
  font-size: 14px;
}
.btn-back:hover { background: var(--c-section-bg); }

/* ========== Hero ========== */
.lp-hero {
  position: relative;
  background: linear-gradient(120deg, var(--c-navy) 0%, var(--c-navy-90) 65%, #1a1f3d 100%);
  color: #fff;
  overflow: hidden;
}
.lp-hero-grid {
  display: grid;
  gap: 36px;
  align-items: center;
  padding: 64px 0 80px;
}
@media (min-width: 900px) {
  .lp-hero-grid { grid-template-columns: 1.1fr 1fr; gap: 56px; padding: 92px 0 110px; }
}
.lp-hero-eyebrow {
  display: inline-block;
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--c-gold-light);
  font-weight: 600;
  margin-bottom: 18px;
}
.lp-hero h1 {
  font-family: var(--f-display);
  font-weight: 400;
  font-size: clamp(36px, 5.4vw, 64px);
  line-height: 1.05;
  letter-spacing: 0.005em;
  text-transform: uppercase;
  margin: 0 0 22px;
}
.lp-hero h1 span { color: var(--c-gold-light); display: inline-block; }
.lp-hero p.lead {
  font-size: clamp(16px, 1.4vw, 19px);
  color: rgba(255,255,255,0.85);
  max-width: 560px;
  margin: 0 0 32px;
}
.lp-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}
.lp-hero-image {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  box-shadow: var(--shadow-lg);
}
.lp-hero-image img { width: 100%; height: 100%; object-fit: cover; }
.lp-hero-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(0,0,28,0) 50%, rgba(0,0,28,0.45) 100%);
  pointer-events: none;
}

/* ========== Section base ========== */
.lp-section { padding: 80px 0; }
.lp-section.alt { background: var(--c-section-bg); }
.lp-section-head { text-align: center; max-width: 720px; margin: 0 auto 52px; }
.lp-section-eyebrow {
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--c-gold);
  font-weight: 600;
  margin-bottom: 12px;
  display: inline-block;
}
.lp-section-head h2 {
  font-family: var(--f-display);
  font-weight: 400;
  font-size: clamp(28px, 3.6vw, 44px);
  line-height: 1.1;
  text-transform: uppercase;
  margin: 0 0 16px;
  color: var(--c-navy);
}
.lp-section-head p {
  color: var(--c-text-muted);
  font-size: 17px;
  margin: 0;
}

/* ========== Sobre a área ========== */
.about-area-grid {
  display: grid;
  gap: 36px;
  align-items: center;
}
@media (min-width: 900px) {
  .about-area-grid { grid-template-columns: 1fr 1fr; gap: 64px; }
}
.about-area-image {
  border-radius: var(--r-lg);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  box-shadow: var(--shadow-md);
}
.about-area-image img { width: 100%; height: 100%; object-fit: cover; }
.about-area-text h2 {
  font-family: var(--f-display);
  font-weight: 400;
  font-size: clamp(26px, 3vw, 38px);
  line-height: 1.15;
  margin: 0 0 22px;
  color: var(--c-navy);
  text-transform: uppercase;
}
.about-area-text p {
  font-size: 17px;
  color: var(--c-text-muted);
  margin: 0 0 18px;
  line-height: 1.65;
}
.about-area-cta { margin-top: 8px; }

/* ========== Tipos de ação ========== */
.tipos-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}
.tipo-card {
  background: #fff;
  border: 1px solid var(--c-border);
  border-radius: var(--r-md);
  padding: 26px 24px;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.tipo-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: rgba(218,145,50,0.4);
}
.tipo-card-num {
  font-family: var(--f-display);
  font-size: 28px;
  color: var(--c-gold);
  margin-bottom: 12px;
  letter-spacing: 0.04em;
}
.tipo-card h3 {
  font-family: var(--f-display);
  font-weight: 400;
  font-size: 19px;
  line-height: 1.25;
  text-transform: uppercase;
  margin: 0 0 10px;
  color: var(--c-navy);
}
.tipo-card p {
  margin: 0;
  font-size: 15px;
  color: var(--c-text-muted);
  line-height: 1.55;
}

/* ========== Final CTA ========== */
.final-cta {
  background:
    linear-gradient(120deg, rgba(0,0,28,0.92) 0%, rgba(10,19,48,0.95) 100%),
    radial-gradient(800px 400px at 80% 20%, rgba(218,145,50,0.18), transparent 60%);
  background-color: var(--c-navy);
  color: #fff;
  padding: 80px 0;
  text-align: center;
}
.final-cta h2 {
  font-family: var(--f-display);
  font-weight: 400;
  font-size: clamp(28px, 3.4vw, 42px);
  text-transform: uppercase;
  margin: 0 0 18px;
  line-height: 1.15;
}
.final-cta p {
  font-size: 17px;
  color: rgba(255,255,255,0.78);
  max-width: 620px;
  margin: 0 auto 32px;
}

/* ========== Footer ========== */
.lp-footer {
  background: var(--c-navy);
  color: rgba(255,255,255,0.78);
  padding: 48px 0 24px;
  font-size: 14px;
}
.lp-footer-grid {
  display: grid;
  gap: 28px;
  grid-template-columns: 1fr;
  margin-bottom: 24px;
}
@media (min-width: 700px) {
  .lp-footer-grid { grid-template-columns: 1.5fr 1fr 1fr; }
}
.lp-footer h4 {
  font-family: var(--f-display);
  font-weight: 400;
  font-size: 16px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #fff;
  margin: 0 0 14px;
}
.lp-footer ul { list-style: none; padding: 0; margin: 0; }
.lp-footer ul li { margin-bottom: 8px; }
.lp-footer a:hover { color: var(--c-gold-light); }
.lp-footer-brand img { height: 50px; margin-bottom: 14px; filter: brightness(1.05) contrast(1.05); }
.lp-footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.10);
  padding-top: 20px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  font-size: 12px;
  color: rgba(255,255,255,0.55);
}

/* ========== WhatsApp floating ========== */
.whats-float {
  position: fixed;
  right: 20px;
  bottom: 20px;
  background: #25D366;
  color: #fff;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 24px rgba(37,211,102,0.45);
  z-index: 100;
  transition: transform .2s ease;
}
.whats-float:hover { transform: scale(1.08); }
.whats-float svg { width: 30px; height: 30px; }

/* ========== Mobile nav toggle ========== */
@media (max-width: 720px) {
  .lp-nav a:not(.btn) { display: none; }
  .lp-nav .btn { padding: 10px 16px; font-size: 13px; }
}
