/* Landing pages SEO do gourl.ai — folha de estilo branded compartilhada.
   HTML estático (sem React) para crawlers e IAs lerem o conteúdo completo. */
:root {
  --blue: #0058DD;
  --blue-dark: #0040a8;
  --navy: #0F1F39;
  --ink: #031F39;
  --muted: #4a5562;
  --bg: #FEFEFE;
  --surface: #F4F6FA;
  --border: #E2E6EC;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  font-family: 'Manrope', system-ui, -apple-system, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }

.wrap { max-width: 760px; margin: 0 auto; padding: 0 20px; }

/* Header */
.site-header {
  display: flex; align-items: center; justify-content: space-between;
  max-width: 1000px; margin: 0 auto; padding: 16px 20px;
}
.logo {
  display: flex; align-items: center; gap: 9px;
  font-weight: 800; font-size: 20px; text-decoration: none;
  letter-spacing: -0.02em; color: var(--ink);
}
.logo img { width: 28px; height: 28px; }
.logo .ai { color: var(--blue); }

/* Botões */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-weight: 700; text-decoration: none; border-radius: 10px;
  padding: 12px 22px; font-size: 15px;
  transition: background .15s ease, transform .1s ease;
}
.btn-primary { background: var(--blue); color: #fff; }
.btn-primary:hover { background: var(--blue-dark); }
.btn-primary:active { transform: scale(.98); }
.btn-lg { padding: 15px 32px; font-size: 17px; }

/* Hero */
.hero { text-align: center; padding: 52px 0 44px; }
.eyebrow {
  display: inline-block; font-size: 12.5px; font-weight: 800;
  text-transform: uppercase; letter-spacing: .14em; color: var(--blue);
  background: rgba(0, 88, 221, .08); padding: 6px 14px;
  border-radius: 999px; margin-bottom: 20px;
}
.hero h1 {
  font-size: clamp(32px, 6vw, 48px); line-height: 1.1;
  letter-spacing: -0.03em; margin-bottom: 16px;
}
.hero .lead {
  font-size: clamp(16px, 2.4vw, 19px); color: var(--muted);
  max-width: 560px; margin: 0 auto 28px;
}

/* Seções */
section { padding: 32px 0; }
h2 {
  font-size: clamp(22px, 4vw, 30px); line-height: 1.2;
  letter-spacing: -0.02em; margin-bottom: 14px;
}
h3 { font-size: 18px; margin: 22px 0 6px; }
p { margin-bottom: 14px; color: var(--muted); }
p strong { color: var(--ink); }
ul { margin: 0 0 14px 22px; color: var(--muted); }
li { margin-bottom: 6px; }

/* Passos numerados */
.steps ol { counter-reset: step; list-style: none; margin: 0; }
.steps li {
  position: relative; padding: 15px 16px 15px 62px; margin-bottom: 12px;
  background: var(--surface); border: 1px solid var(--border); border-radius: 12px;
}
.steps li::before {
  counter-increment: step; content: counter(step);
  position: absolute; left: 16px; top: 15px;
  width: 32px; height: 32px; border-radius: 50%;
  background: var(--blue); color: #fff; font-weight: 800; font-size: 15px;
  display: flex; align-items: center; justify-content: center;
}
.steps li strong { display: block; color: var(--ink); margin-bottom: 2px; }
.steps li span { color: var(--muted); }

/* Tabela comparativa */
table { width: 100%; border-collapse: collapse; margin: 6px 0 14px; font-size: 15px; }
th, td { padding: 11px 12px; text-align: left; border-bottom: 1px solid var(--border); }
th { font-weight: 800; color: var(--ink); }
td:first-child { color: var(--ink); font-weight: 600; }

/* FAQ */
.faq details {
  border: 1px solid var(--border); border-radius: 12px;
  padding: 16px 18px; margin-bottom: 10px; background: #fff;
}
.faq summary {
  font-weight: 700; cursor: pointer; color: var(--ink);
  list-style: none; font-size: 16px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq details[open] summary { margin-bottom: 8px; }
.faq details p { margin: 0; }

/* CTA final */
.cta-final {
  text-align: center; background: var(--navy);
  border-radius: 20px; padding: 44px 24px; margin: 16px 0 32px;
}
.cta-final h2 { color: #fff; }
.cta-final p { color: #b8c3d4; max-width: 440px; margin: 0 auto 22px; }

/* Breadcrumb + footer */
.crumb { font-size: 13px; color: var(--muted); padding-top: 18px; }
.crumb a { color: var(--blue); text-decoration: none; }
footer {
  border-top: 1px solid var(--border); padding: 28px 0;
  text-align: center; color: var(--muted); font-size: 14px;
}
footer a { color: var(--blue); text-decoration: none; font-weight: 600; }
