:root {
  --navy: #ffffff;
  --navy-mid: #ededed;
  --gold: #c9a84c;
  --gold-light: #e8c97a;
  --cream: #1f1f1f;
  --white: #fff;
  --dark: #2b2a2a;
  --text-muted: #42464e;
  --border: rgba(226, 185, 71, 0.5);
}

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

body {
  font-family: 'Sora', sans-serif;
  background: var(--navy);
  color: var(--dark);
  overflow-x: hidden;
}

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 140px 60px 80px;
  position: relative;
  overflow: hidden;

  background:
    linear-gradient(135deg, rgba(10, 22, 40, 0.6) 30%, rgba(17, 34, 64, 0.2) 60%),
    url('../images/hero_bg.png') center / cover no-repeat;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 40%, rgba(201, 168, 76, 0.08) 0%, transparent 35%);
  pointer-events: none;
}

.hero-inner {
  max-width: 680px;
}

.hero-badge {
  display: inline-block;
  background: rgba(201, 168, 76, 0.15);
  border: 1px solid var(--gold);
  color: var(--gold);
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 2px;
  margin-bottom: 28px;
}

.hero h1 {
  font-family: 'Sora', sans-serif;
  font-size: clamp(2.2rem, 4.5vw, 3.6rem);
  font-weight: 900;
  line-height: 1.15;
  color: var(--white);
  margin-bottom: 24px;
}

.hero h1 em {
  color: var(--gold);
  font-style: normal;
}

.hero p {
  font-size: 1.1rem;
  line-height: 1.75;
  color: var(--white);
  opacity: .88;
  margin-bottom: 40px;
  max-width: 560px;
}

.btn-primary {
  display: inline-block;
  background: var(--gold);
  color: white;
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  font-size: .95rem;
  letter-spacing: .04em;
  padding: 16px 36px;
  border-radius: 3px;
  text-decoration: none;
  margin-bottom: 12px;
  transition: background .2s, transform .2s;
}

.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
}

.btn-outline {
  display: inline-block;
  border: 1.5px solid var(--gold);
  color: var(--gold);
  font-family: 'Sora', sans-serif;
  font-weight: 600;
  font-size: .95rem;
  padding: 15px 36px;
  border-radius: 3px;
  text-decoration: none;
  margin-left: 12px;
  transition: all .2s;
}

.btn-outline:hover {
  background: rgba(201, 168, 76, .12);
}

.intro-quotes {
  background: var(--navy-mid);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 64px 60px;
  text-align: center;
}

.intro-quotes-inner {
  max-width: 760px;
  margin: 0 auto;
}

.intro-quotes-inner p {
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--dark);
  line-height: 1.7;
  margin-bottom: 8px;
}

.intro-quotes-inner p strong {
  color: var(--gold);
  font-weight: 700;
}

.intro-divider {
  width: 40px;
  height: 2px;
  background: var(--border);
  margin: 24px auto;
}

.intro-secondary {
  font-size: 1rem !important;
  font-weight: 400 !important;
  color: var(--cream) !important;
  opacity: .8;
}

.nogov {
  background: var(--navy);
  padding: 100px 60px;
  border-bottom: 1px solid var(--border);
}

.nogov .section-header h2 {
  color: var(--dark);
}

.nogov-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.nogov-card {
  background: rgba(201, 168, 76, 0.07);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 28px 24px;
  transition: border-color .3s, transform .3s;
}

.nogov-card:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
}

.nogov-icon {
  font-size: 1.6rem;
  margin-bottom: 16px;
}

.nogov-card h3 {
  font-family: 'Sora', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 12px;
  line-height: 1.3;
}

.nogov-card p {
  font-size: .88rem;
  color: var(--cream);
  opacity: .85;
  line-height: 1.65;
}

.solution {
  background: var(--navy-mid);
  padding: 100px 60px;
  border-bottom: 1px solid var(--border);
}

.solution .section-header h2 {
  color: var(--dark);
}

.sol-features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.sol-features-list {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.sol-feature-item {
  padding: 24px 28px;
  background: rgba(201, 168, 76, 0.07);
  border: 1px solid var(--border);
  border-left: 3px solid var(--gold);
  border-radius: 0 8px 8px 0;
  transition: border-color .3s;
}

.sol-feature-item:hover {
  background: rgba(201, 168, 76, 0.12);
}

.sol-feature-item h3 {
  font-family: 'Sora', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 8px;
}

.sol-feature-item p {
  font-size: .9rem;
  color: var(--cream);
  opacity: .85;
  line-height: 1.65;
}

.sol-phone {
  display: flex;
  justify-content: center;
  align-items: center;
}

.sol-phone-img {
  background: url('../images/ogfigovephone.png') center/contain no-repeat;
  width: 100%;
  height: 520px;
  border-radius: 12px;
}

.govchange {
  background: var(--navy);
  padding: 100px 60px;
  border-bottom: 1px solid var(--border);
}

.govchange .section-header h2 {
  color: var(--dark);
}

.govchange-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 32px;
  align-items: center;
  margin-bottom: 48px;
}

.govchange-card {
  background: rgba(201, 168, 76, 0.1);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 36px 32px;
  text-align: center;
}

.govchange-card p {
  font-size: 1.05rem;
  color: var(--cream);
  line-height: 1.7;
}

.govchange-card p strong {
  color: var(--gold);
}

.govchange-card p em {
  font-style: normal;
  color: var(--dark);
  font-weight: 700;
}

.govchange-sep {
  display: flex;
  align-items: center;
  justify-content: center;
}

.govchange-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(201, 168, 76, 0.15);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--gold);
}

.govchange-bottom {
  text-align: center;
  padding: 32px;
  background: rgba(201, 168, 76, 0.06);
  border: 1px solid var(--border);
  border-radius: 8px;
}

.govchange-bottom p {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--cream);
  line-height: 1.6;
}

.govchange-bottom p strong {
  color: var(--gold);
}

.trust {
  background: linear-gradient(135deg, rgba(201, 168, 76, 0.06) 0%, var(--navy-mid) 100%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 80px 60px;
}

.trust-inner {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.trust-lead {
  font-size: 1.05rem;
  color: var(--cream);
  opacity: .9;
  line-height: 1.8;
  margin-bottom: 36px;
}

.brand-name {
  color: var(--gold);
  font-weight: 700;
}

.trust-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
  text-align: left;
  max-width: 620px;
  margin: 0 auto;
}

.trust-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 18px 24px;
  background: rgba(201, 168, 76, 0.07);
  border-left: 3px solid var(--gold);
  border-radius: 0 8px 8px 0;
  font-size: .95rem;
  color: var(--cream);
  opacity: .9;
  line-height: 1.55;
}

.trust-icon {
  color: var(--gold);
  font-size: 1.1rem;
  flex-shrink: 0;
  margin-top: 1px;
}

.tech {
  background: var(--navy);
  padding: 100px 60px;
}

.tech-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.tech-card {
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
}

.tech-card-header {
  background: linear-gradient(135deg, rgba(201, 168, 76, 0.15), rgba(17, 34, 64, 0.9));
  border-bottom: 1px solid var(--border);
}

.techgroup-img {
  background: url('../images/techgroup.png') center/cover no-repeat;
  width: 100%;
  height: 250px;
}

.dashboard-img {
  background: url('../images/dashboard.png') center/cover no-repeat;
  width: 100%;
  height: 250px;
}

.tech-card-body {
  padding: 32px 40px;
  background: rgba(201, 168, 76, 0.06);
}

.tech-card-body h3 {
  font-family: 'Sora', sans-serif;
  font-size: 1.25rem;
  color: var(--gold);
  margin-bottom: 12px;
}

.tech-card-body p {
  color: var(--cream);
  opacity: .8;
  line-height: 1.7;
  font-size: .9rem;
}

.forwhom {
  background: var(--navy-mid);
  border-top: 1px solid var(--border);
  padding: 100px 60px;
}

.forwhom h2 {
  color: var(--dark);
  font-family: 'Sora', sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  line-height: 1.2;
}

.forwhom-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.profile-list {
  list-style: none;
  margin-top: 20px;
}

.profile-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(201, 168, 76, 0.12);
  font-size: .95rem;
  color: var(--cream);
  opacity: .9;
  line-height: 1.55;
}

.profile-list li:last-child {
  border-bottom: none;
}

.check {
  color: var(--gold);
  font-size: 1.1rem;
}

.forwhom-cta {
  background: linear-gradient(135deg, rgba(201, 168, 76, 0.1), rgba(201, 168, 76, 0.02));
  border: 1px solid var(--border);
  border-radius: 8px;
  text-align: center;
}

.forwhom-img {
  background: url('../images/forwhom.png') top/cover no-repeat;
  width: 100%;
  height: 450px;
  margin-bottom: 0;
  border-radius: 8px 8px 0 0;
}

.forwhom-text {
  padding: 48px;
}

.forwhom-cta h3 {
  font-family: 'Sora', sans-serif;
  font-size: 1.4rem;
  color: var(--gold);
  margin-bottom: 16px;
  line-height: 1.35;
}

.forwhom-cta p {
  color: var(--cream);
  opacity: .8;
  line-height: 1.7;
  margin-bottom: 28px;
}

#contato {
  background: var(--navy);
  border-top: 1px solid var(--border);
  padding: 100px 60px;
}

#contato .container {
  max-width: 800px;
  margin: 0 auto;
  padding: 2%;
  background-color: var(--navy-mid);
  border-radius: 12px;
  border-bottom: 6px solid var(--gold);
  box-shadow: 1px 1px 9px rgba(0, 0, 0, 0.188);
}

.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-header h2 {
  font-family: 'Sora', sans-serif;
  font-size: clamp(2rem, 3.5vw, 3rem);
  line-height: 1.2;
  margin-bottom: 16px;
  color: var(--dark);
}

.section-header p {
  color: var(--cream);
  opacity: .75;
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.75;
}

.section-label {
  display: block;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.gold-divider {
  width: 56px;
  height: 3px;
  background: var(--gold);
  margin: 20px auto 0;
}

.gold-divider.left {
  margin-left: 0;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
}

.form-wrapper {
  max-width: 640px;
  margin: 0 auto;
}

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

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group.full {
  grid-column: 1 / -1;
}

label {
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--text-muted);
}

input,
textarea {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border);
  color: var(--dark);
  font-family: 'Sora', sans-serif;
  font-size: .95rem;
  padding: 14px 16px;
  border-radius: 4px;
  outline: none;
  transition: border-color .2s;
}

input::placeholder,
textarea::placeholder {
  color: rgba(0, 0, 0, 0.24);
}

input:focus,
textarea:focus {
  border-color: var(--gold);
  background: rgba(201, 168, 76, 0.05);
}

textarea {
  resize: vertical;
  min-height: 120px;
}

.checkbox-row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-top: 8px;
}

.checkbox-row input[type=checkbox] {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  margin-top: 2px;
  accent-color: var(--gold);
}

.btn-submit {
  width: 100%;
  background: var(--gold);
  color: white;
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 18px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  margin-top: 24px;
  transition: background .2s;
}

.btn-submit:hover {
  background: var(--gold-light);
}

.form_message {
  background-color: var(--navy-mid);
  box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.5);
  border-bottom: 4px solid #c14800;
  width: 290px;
  height: 50px;
  position: fixed;
  opacity: 0;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  border-bottom-left-radius: 12px;
  align-content: center;
  text-align: center;
  border-bottom-right-radius: 12px;
  transition: opacity 0.5s ease-in;
  color: var(--dark);
  z-index: 9999;
}

.form_message.success {
  opacity: 1;
  border-bottom: 3px solid #70e000;
}

.form_message.error {
  opacity: 1;
  display: block;
}

footer {
  background: #151E45;
  border-top: 1px solid var(--border);
  padding: 28px 60px;
  display: grid;
  align-items: center;
  font-size: .76rem;
  font-weight: 100;
  color: white;
  height: 120px;
}

.footer-logo {
  background: url('../images/gove_logo.png') left/cover no-repeat;
  position: absolute;
  width: 340px;
  height: 80px;
}

footer p {
  justify-self: center;
  color: white
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero-inner > * {
  animation: fadeUp .8s ease forwards;
  opacity: 0;
}

.hero-inner > *:nth-child(1) { animation-delay: .1s; }
.hero-inner > *:nth-child(2) { animation-delay: .25s; }
.hero-inner > *:nth-child(3) { animation-delay: .4s; }
.hero-inner > *:nth-child(4) { animation-delay: .55s; }

@media (max-width: 900px) {

  .hero,
  .intro-quotes,
  .nogov,
  .solution,
  .govchange,
  .trust,
  .tech,
  .forwhom,
  #contato {
    padding-left: 24px;
    padding-right: 24px;
  }

  .hero {
    background-attachment: fixed;
  }

  .nogov-grid {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }

  .sol-features-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .sol-phone-img {
    height: 340px;
  }

  .govchange-inner {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .govchange-sep {
    display: none;
  }

  .forwhom-inner,
  .tech-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .dashboard-img { height: 172px; }
  .techgroup-img { height: 160px; }

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

  footer {
    display: grid;
    padding: 24px;
    grid-template-rows: 1fr 1fr;
    gap: 8px;
    text-align: center;
    width: 100%;
    height: fit-content;
  }

  .footer-logo {
    position: unset;
    width: 280px;
  }

  .btn-outline {
    margin-left: 0;
    margin-top: 12px;
    display: block;
    width: fit-content;
  }
}

@media (max-width: 600px) {
  .nogov-grid {
    grid-template-columns: 1fr;
  }
}
