:root {
  --bg: #0b1220;
  --surface: #111a2c;
  --surface-2: #f5f7fb;
  --text: #0f172a;
  --text-light: #e5edf9;
  --muted: #94a3b8;
  --primary: #f59e0b;
  --primary-dark: #d97706;
  --accent: #22c55e;
  --border: #dbe4f0;
  --white: #ffffff;
  --shadow: 0 20px 50px rgba(15, 23, 42, 0.12);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background: #fff;
}

a { color: inherit; text-decoration: none; }
.container { width: min(1120px, calc(100% - 32px)); margin: 0 auto; }

.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(11, 18, 32, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.topbar-inner {
  display: flex; align-items: center; justify-content: space-between; padding: 14px 0;
}
.brand { display: flex; align-items: center; gap: 12px; color: var(--text-light); }
.brand strong { display: block; font-size: 0.98rem; }
.brand span { display: block; font-size: 0.8rem; color: #b6c3d7; }
.brand-badge {
  width: 44px; height: 44px; border-radius: 12px; display: grid; place-items: center;
  background: linear-gradient(135deg, var(--primary), #facc15); color: #1f2937; font-weight: 800;
}
.nav { display: flex; align-items: center; gap: 22px; color: #d7e0ef; }
.nav a:hover { color: #fff; }

.hero {
  background:
    radial-gradient(circle at top left, rgba(245,158,11,0.22), transparent 30%),
    radial-gradient(circle at right, rgba(34,197,94,0.14), transparent 25%),
    linear-gradient(180deg, #0b1220 0%, #131d34 100%);
  color: var(--text-light);
  padding: 72px 0 48px;
}
.hero-grid {
  display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 36px; align-items: center;
}
.hero-copy h1 {
  font-size: clamp(2.2rem, 5vw, 4.2rem);
  line-height: 1.05;
  margin: 18px 0 18px;
}
.hero-copy p {
  color: #d1dbeb; font-size: 1.08rem; line-height: 1.7; max-width: 62ch;
}
.hero-actions { display: flex; gap: 14px; margin: 28px 0 18px; flex-wrap: wrap; }
.hero-points {
  list-style: none; padding: 0; margin: 22px 0 0; display: flex; flex-wrap: wrap; gap: 18px;
  color: #dce7f8;
}
.pill {
  display: inline-flex; align-items: center; gap: 8px; padding: 8px 14px; border-radius: 999px;
  background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.12); font-size: 0.9rem;
}

.card {
  background: var(--white); color: var(--text); border-radius: 24px; padding: 26px;
  box-shadow: var(--shadow);
}
.card-head h2 { margin: 0 0 8px; font-size: 1.5rem; }
.card-head p { margin: 0 0 18px; color: #64748b; line-height: 1.6; }
.quote-form { display: grid; gap: 14px; }
.grid-2, .grid-3 { display: grid; gap: 14px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.field { display: grid; gap: 8px; }
.field label { font-weight: 600; font-size: 0.95rem; }
.field input, .field select, .field textarea {
  width: 100%; border: 1px solid var(--border); border-radius: 14px; padding: 14px 15px;
  font: inherit; outline: none; transition: 0.2s ease;
}
.field input:focus, .field select:focus, .field textarea:focus {
  border-color: var(--primary); box-shadow: 0 0 0 4px rgba(245,158,11,0.14);
}
.form-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 8px; }
.form-note { margin: 0; color: #64748b; font-size: 0.92rem; }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 14px 18px; border-radius: 14px; font-weight: 700; border: none; cursor: pointer;
  transition: transform 0.15s ease, opacity 0.15s ease, background 0.15s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary { background: linear-gradient(135deg, var(--primary), #fbbf24); color: #1f2937; }
.btn-primary:hover { background: linear-gradient(135deg, var(--primary-dark), #f59e0b); }
.btn-outline { border: 1px solid rgba(255,255,255,0.18); }
.btn-whatsapp { background: var(--accent); color: #062b12; }

.trust { padding: 22px 0; background: #fff; }
.trust-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px;
}
.trust-item {
  padding: 20px; background: #fff; border: 1px solid #edf2f7; border-radius: 18px; text-align: center;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.04);
}
.trust-item strong { display: block; font-size: 1.25rem; margin-bottom: 6px; }
.trust-item span { color: #64748b; }

.section { padding: 82px 0; }
.section.alt { background: var(--surface-2); }
.section-head { max-width: 760px; margin-bottom: 28px; }
.section-head h2 { font-size: clamp(1.8rem, 3.2vw, 2.8rem); margin: 14px 0 0; }
.section .pill { background: #fff7e6; color: #8a5a00; border: 1px solid #fde7b0; }
.cards-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.info-card {
  background: #fff; border-radius: 22px; padding: 26px; border: 1px solid #ebf0f7; box-shadow: 0 12px 28px rgba(15, 23, 42, 0.05);
}
.info-card h3 { margin-top: 0; }
.info-card p { color: #64748b; line-height: 1.7; }

.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.step {
  background: #fff; border-radius: 22px; padding: 26px; position: relative; border: 1px solid #e8edf5;
}
.step span {
  display: inline-grid; place-items: center; width: 42px; height: 42px; border-radius: 12px;
  background: #fff2cc; color: #8a5a00; font-weight: 800; margin-bottom: 18px;
}
.step h3 { margin: 0 0 10px; }
.step p { margin: 0; color: #64748b; line-height: 1.7; }

.cta-box {
  display: flex; justify-content: space-between; gap: 22px; align-items: center;
  padding: 34px; border-radius: 28px; background: linear-gradient(135deg, #0f172a, #1e293b); color: #f8fafc;
}
.cta-box .pill { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.12); color: #e2e8f0; }
.cta-box h2 { margin: 14px 0 10px; }
.cta-box p { margin: 0; color: #cbd5e1; }

.faq-list { display: grid; gap: 14px; }
details {
  background: #fff; border-radius: 18px; padding: 18px 20px; border: 1px solid #e8edf5;
}
summary { cursor: pointer; font-weight: 700; }
details p { color: #64748b; line-height: 1.7; margin: 12px 0 4px; }

.contact-grid {
  display: grid; grid-template-columns: 1fr 0.8fr; gap: 22px; align-items: start;
}
.contact-card {
  background: #fff; border: 1px solid #ebf0f7; border-radius: 22px; padding: 26px; box-shadow: 0 12px 28px rgba(15, 23, 42, 0.05);
}
.contact-card p { margin: 0 0 14px; color: #475569; }
.contact-card a { color: #0f172a; font-weight: 600; }

.footer { background: #0b1220; color: #b8c5d8; padding: 22px 0; }
.footer-inner { display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; }

@media (max-width: 980px) {
  .hero-grid, .contact-grid, .cards-3, .steps, .trust-grid, .grid-3 {
    grid-template-columns: 1fr 1fr;
  }
  .hero-grid { grid-template-columns: 1fr; }
  .cta-box { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 700px) {
  .nav { display: none; }
  .grid-2, .grid-3, .cards-3, .steps, .trust-grid, .contact-grid {
    grid-template-columns: 1fr;
  }
  .hero { padding-top: 42px; }
  .card { padding: 20px; }
  .section { padding: 62px 0; }
  .hero-copy h1 { font-size: 2.2rem; }
}
