/* GoDados.cam GOV Landing
   Brand: Navy #0f1f35 | Cyan #06b6d4 | Blue #3b82f6
*/

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --navy: #0f1f35;
  --navy-mid: #1a3358;
  --blue: #3b82f6;
  --cyan: #06b6d4;
  --green: #10b981;
  --amber: #f59e0b;
  --red: #ef4444;
  --gray-50: #f8fafc;
  --gray-100: #f1f5f9;
  --gray-200: #e2e8f0;
  --gray-400: #94a3b8;
  --gray-500: #64748b;
  --gray-600: #475569;
  --gray-900: #0f172a;
  --white: #ffffff;
  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --radius: 12px;
  --radius-sm: 8px;
  --shadow-sm: 0 1px 3px rgba(0,0,0,.08), 0 1px 2px rgba(0,0,0,.04);
  --shadow: 0 4px 16px rgba(15,31,53,.10), 0 1px 4px rgba(15,31,53,.06);
  --shadow-lg: 0 12px 40px rgba(15,31,53,.14), 0 4px 12px rgba(15,31,53,.08);
  --max-w: 1200px;
  --side-pad: clamp(20px, 5vw, 60px);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font);
  color: var(--gray-900);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
}

.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding-inline: var(--side-pad);
}

h1,
h2,
h3 {
  color: var(--navy);
  line-height: 1.18;
}

.header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px var(--side-pad);
  background: rgba(255,255,255,.92);
  border-bottom: 1px solid var(--gray-100);
  backdrop-filter: blur(12px);
}

.nav {
  display: flex;
  align-items: center;
  gap: 22px;
  font-size: 14px;
  color: var(--gray-600);
}

.nav a {
  text-decoration: none;
}

.nav a:hover {
  color: var(--blue);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 0;
  border-radius: var(--radius-sm);
  font-family: var(--font);
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  cursor: pointer;
  transition: transform .12s, box-shadow .15s, background .15s;
  white-space: nowrap;
}

.btn--primary {
  background: var(--navy);
  color: var(--white);
  padding: 14px 22px;
}

.btn--primary:hover {
  background: var(--navy-mid);
  box-shadow: var(--shadow);
  transform: translateY(-1px);
}

.btn--secondary {
  border: 1px solid var(--gray-200);
  color: var(--navy);
  background: var(--white);
  padding: 13px 20px;
}

.btn--secondary:hover {
  border-color: rgba(59,130,246,.35);
  box-shadow: var(--shadow-sm);
}

.btn--full {
  width: 100%;
  padding-block: 16px;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(59,130,246,.1);
  color: var(--blue);
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 18px;
}

.hero {
  padding: clamp(56px, 8vw, 96px) 0;
}

.hero__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 420px;
  gap: clamp(40px, 7vw, 88px);
  align-items: start;
}

.hero__headline {
  font-size: clamp(34px, 5vw, 58px);
  font-weight: 800;
  letter-spacing: 0;
  margin-bottom: 22px;
}

.highlight {
  color: var(--blue);
}

.hero__sub {
  max-width: 720px;
  color: var(--gray-600);
  font-size: clamp(16px, 2vw, 19px);
  line-height: 1.72;
  margin-bottom: 16px;
}

.hero__sub strong {
  color: var(--navy);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 28px 0;
}

.proof-snippet {
  max-width: 700px;
  padding: 16px 18px;
  background: var(--gray-50);
  border: 1px solid var(--gray-100);
  border-left: 3px solid var(--green);
  border-radius: var(--radius-sm);
}

.proof-snippet p {
  color: var(--gray-600);
  font-size: 14px;
  line-height: 1.6;
}

.form-card {
  position: sticky;
  top: 86px;
  padding: 30px 26px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
}

.form-card__title {
  font-size: 22px;
  margin-bottom: 6px;
}

.form-card__sub {
  color: var(--gray-500);
  font-size: 14px;
  line-height: 1.55;
  margin-bottom: 22px;
}

.form__group {
  margin-bottom: 14px;
}

.form__label {
  display: block;
  margin-bottom: 6px;
  color: var(--gray-600);
  font-size: 13px;
  font-weight: 700;
}

.form__input,
.form__select,
.form__textarea {
  width: 100%;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-sm);
  background: var(--white);
  color: var(--gray-900);
  font: 15px var(--font);
  outline: none;
  padding: 10px 13px;
  transition: border-color .15s, box-shadow .15s;
}

.form__textarea {
  min-height: 88px;
  resize: vertical;
}

.form__input:focus,
.form__select:focus,
.form__textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(59,130,246,.12);
}

.form__input.error,
.form__select.error,
.form__textarea.error {
  border-color: var(--red);
}

.field-error {
  display: block;
  color: var(--red);
  font-size: 12px;
  margin-top: 4px;
}

.form__privacy {
  margin-top: 12px;
  color: var(--gray-400);
  font-size: 12px;
  line-height: 1.5;
  text-align: center;
}

.section {
  padding: clamp(64px, 8vw, 96px) 0;
}

.section--soft {
  background: var(--gray-50);
  border-block: 1px solid var(--gray-100);
}

.section--dark {
  color: var(--white);
  background: var(--navy);
}

.section--dark h2,
.section--dark h3 {
  color: var(--white);
}

.section__header {
  max-width: 760px;
  margin-bottom: 36px;
}

.section-title {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  margin-bottom: 14px;
}

.section-lead {
  color: var(--gray-600);
  font-size: 17px;
  line-height: 1.75;
}

.section--dark .section-lead {
  color: rgba(255,255,255,.76);
}

.grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.card {
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}

.card h3 {
  font-size: 18px;
  margin-bottom: 9px;
}

.card p,
.card li {
  color: var(--gray-600);
  font-size: 15px;
  line-height: 1.65;
}

.card ul {
  padding-left: 18px;
}

.flow {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
}

.flow-step {
  padding: 20px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius);
}

.flow-step__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 999px;
  color: var(--white);
  background: var(--blue);
  font-weight: 800;
  margin-bottom: 14px;
}

.flow-step p {
  color: rgba(255,255,255,.76);
  font-size: 14px;
  line-height: 1.55;
}

.trust-panel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.trust-item {
  display: flex;
  gap: 12px;
  padding: 16px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-sm);
}

.trust-dot {
  width: 10px;
  height: 10px;
  margin-top: 7px;
  border-radius: 50%;
  background: var(--cyan);
  flex-shrink: 0;
}

.trust-item strong {
  display: block;
  color: var(--white);
  margin-bottom: 2px;
}

.trust-item span {
  color: rgba(255,255,255,.68);
  font-size: 14px;
}

.limits-box {
  padding: 28px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
}

.limits-box p {
  color: var(--gray-600);
  line-height: 1.72;
}

.limits-box p + p {
  margin-top: 14px;
}

.faq-list {
  display: grid;
  gap: 12px;
  max-width: 860px;
}

.faq-item {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-sm);
  overflow: hidden;
}

.faq-question {
  cursor: pointer;
  padding: 18px 20px;
  color: var(--navy);
  font-weight: 700;
  list-style: none;
}

.faq-question::-webkit-details-marker {
  display: none;
}

.faq-answer {
  padding: 0 20px 18px;
  color: var(--gray-600);
  font-size: 15px;
  line-height: 1.7;
}

.section-cta {
  padding: clamp(72px, 9vw, 110px) 0;
  background: var(--navy);
  text-align: center;
}

.section-cta h2 {
  max-width: 760px;
  color: var(--white);
  font-size: clamp(28px, 4vw, 42px);
  margin: 0 auto 16px;
}

.section-cta p {
  max-width: 680px;
  margin: 0 auto 28px;
  color: rgba(255,255,255,.74);
  font-size: 17px;
}

.section-cta .btn--primary {
  background: var(--blue);
}

.footer {
  padding: 34px var(--side-pad);
  border-top: 1px solid var(--gray-100);
  color: var(--gray-400);
  font-size: 13px;
}

.footer__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.footer a {
  color: var(--gray-500);
  text-decoration: none;
}

.footer a:hover {
  color: var(--blue);
}

@media (max-width: 960px) {
  .nav {
    display: none;
  }

  .hero__inner {
    grid-template-columns: 1fr;
  }

  .form-card {
    position: static;
  }

  .grid,
  .flow,
  .trust-panel {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .hero__actions {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .footer__inner {
    align-items: flex-start;
    flex-direction: column;
  }
}
