/* =========================
   Gêmeos Digital - Stylesheet
   Estrutura leve, sem frameworks
   ========================= */

:root {
  --bg: #f6f8fb;
  --surface: #ffffff;
  --surface-2: #eef3f9;
  --text: #132238;
  --muted: #5d6b80;
  --line: #dbe3ee;
  --primary: #0f5bd4;
  --primary-dark: #0a47a6;
  --accent: #0f172a;
  --success: #0e9f6e;
  --shadow: 0 18px 45px rgba(15, 23, 42, 0.08);
  --radius: 20px;
  --radius-sm: 14px;
  --container: 1160px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}

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

.container {
  width: min(calc(100% - 32px), var(--container));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(219, 227, 238, 0.9);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 78px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
}
.brand-mark {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--accent), var(--primary));
  color: #fff;
  font-size: 0.95rem;
}
.brand-text { font-size: 1rem; }

.site-nav {
  display: flex;
  align-items: center;
  gap: 18px;
}

.site-nav a:not(.btn) {
  color: var(--muted);
  font-weight: 600;
}
.site-nav a:not(.btn):hover,
.text-link:hover { color: var(--primary); }

.nav-toggle {
  display: none;
  border: 1px solid var(--line);
  background: var(--surface);
  border-radius: 12px;
  width: 46px;
  height: 46px;
  cursor: pointer;
}

.hero,
.page-hero {
  padding: 84px 0 48px;
  background:
    radial-gradient(circle at top right, rgba(15, 91, 212, 0.09), transparent 32%),
    linear-gradient(180deg, #ffffff 0%, #f6f8fb 100%);
}
.page-hero-small { padding-bottom: 24px; }

.hero-grid,
.footer-grid,
.contact-boxes,
.cta-band-wrap {
  display: grid;
  gap: 28px;
}
.hero-grid { grid-template-columns: 1.15fr 0.85fr; align-items: center; }
.footer-grid { grid-template-columns: 1fr 1.1fr; }
.contact-boxes { grid-template-columns: repeat(2, 1fr); }
.cta-band-wrap { grid-template-columns: 1.4fr auto; align-items: center; }

.eyebrow {
  display: inline-block;
  margin-bottom: 12px;
  color: var(--primary);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

h1, h2, h3 {
  margin: 0 0 14px;
  line-height: 1.15;
}
h1 { font-size: clamp(2.2rem, 5vw, 4.1rem); max-width: 12ch; }
h2 { font-size: clamp(1.7rem, 3vw, 2.7rem); }
h3 { font-size: 1.15rem; }

.lead,
.section-heading p,
.card p,
.timeline-item p,
.legal-card p {
  color: var(--muted);
}

.hero-actions,
.inline-links,
.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-points {
  list-style: none;
  padding: 0;
  margin: 22px 0 0;
  display: grid;
  gap: 10px;
}
.hero-points li {
  position: relative;
  padding-left: 26px;
  color: var(--text);
  font-weight: 600;
}
.hero-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--success);
}

.section { padding: 72px 0; }
.section-alt { background: var(--surface-2); }
.section-heading { max-width: 720px; margin: 0 auto 32px; text-align: center; }
.section-heading.align-left { margin-left: 0; text-align: left; }

.grid {
  display: grid;
  gap: 20px;
}
.three-cols { grid-template-columns: repeat(3, 1fr); }

.card {
  background: var(--surface);
  border: 1px solid rgba(219, 227, 238, 0.9);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
}

.card-label {
  color: var(--primary);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 10px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 22px;
}
.stats-grid div {
  padding: 16px;
  border-radius: var(--radius-sm);
  background: var(--surface-2);
  border: 1px solid var(--line);
}
.stats-grid strong,
#company-data strong { display: block; margin-bottom: 6px; }
.stats-grid span,
#company-data span { color: var(--muted); font-size: 0.95rem; }

.timeline {
  display: grid;
  gap: 18px;
}
.timeline-item {
  position: relative;
  padding-left: 90px;
}
.step {
  position: absolute;
  left: 28px;
  top: 28px;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
}

.cta-band {
  background: linear-gradient(135deg, var(--accent), var(--primary));
  color: #fff;
}
.cta-band .eyebrow,
.cta-band p { color: rgba(255,255,255,0.82); }
.cta-band h2 { max-width: 18ch; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 999px;
  border: 0;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #fff;
  box-shadow: 0 12px 26px rgba(15, 91, 212, 0.28);
}
.btn-secondary {
  background: #fff;
  color: var(--text);
  border: 1px solid var(--line);
}
.btn-light {
  background: #fff;
  color: var(--accent);
}

.form-section {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 28px;
  align-items: start;
}
.single-column { grid-template-columns: 1fr; }
.quote-form { padding: 30px; }
.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}
label span {
  display: block;
  margin-bottom: 8px;
  font-size: 0.94rem;
  font-weight: 700;
}
input, textarea, select {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 14px 16px;
  background: #fff;
  color: var(--text);
}
input:focus, textarea:focus, select:focus {
  outline: 2px solid rgba(15, 91, 212, 0.16);
  border-color: var(--primary);
}
.full-width { grid-column: 1 / -1; }
.form-note {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.legal-card {
  max-width: 900px;
}
.legal-card h2 {
  margin-top: 24px;
  font-size: 1.2rem;
}
.legal-card h2:first-child { margin-top: 0; }

.site-footer {
  padding: 42px 0;
  background: #0d1626;
  color: #f1f5f9;
}
.site-footer p,
.site-footer span,
.site-footer a { color: rgba(241, 245, 249, 0.82); }
#company-data {
  display: grid;
  gap: 12px;
}
.company-block {
  padding: 14px 16px;
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
}

.text-link {
  color: var(--primary);
  font-weight: 700;
}

@media (max-width: 920px) {
  .hero-grid,
  .footer-grid,
  .contact-boxes,
  .cta-band-wrap,
  .form-section,
  .three-cols {
    grid-template-columns: 1fr;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 8px);
    left: 16px;
    right: 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    padding: 18px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 20px;
    box-shadow: var(--shadow);
  }
  .site-nav.is-open { display: flex; }
  .nav-toggle { display: inline-grid; place-items: center; }
  .nav-wrap { position: relative; }
  .timeline-item { padding-left: 28px; }
  .step {
    position: static;
    margin-bottom: 16px;
  }
  .form-grid { grid-template-columns: 1fr; }
  .full-width { grid-column: auto; }
}

@media (max-width: 640px) {
  .hero,
  .page-hero { padding-top: 68px; }
  .section { padding: 56px 0; }
  .card,
  .quote-form { padding: 22px; }
  h1 { max-width: none; }
  .cta-band h2 { max-width: none; }
}
