: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;
  background:
    linear-gradient(135deg, rgba(10, 22, 40, 0.9) 50%, rgba(17, 34, 64, 0.1) 60%),
    url('../images/hero_bg.png') center/cover no-repeat;
  padding: 140px 60px 80px;
  position: relative;
  overflow: hidden;
}

.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.4rem, 5vw, 4rem);
  font-weight: 900;
  line-height: 1.1;
  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: var(--navy);
  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;
  transition: all .2s;
}

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

.problem {
  background: var(--navy-mid);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 80px 60px;
}

.problem-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

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

.problem h2 {
  font-family: 'Sora', sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  line-height: 1.2;
  margin-bottom: 20px;
}

.problem p {
  color: var(--cream);
  opacity: .8;
  line-height: 1.75;
}

.problem-list {
  list-style: none;
  margin-top: 32px;
}

.problem-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  font-size: .95rem;
  color: var(--cream);
  opacity: .85;
  line-height: 1.55;
}

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

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
  margin-top: 6px;
}

.problem-card {
  background: linear-gradient(135deg, rgba(201, 168, 76, 0.1), rgba(201, 168, 76, 0.02));
  border: 1px solid var(--border);
  border-radius: 12px;
  height: 300px;
}
.problem-card iframe {
  border-radius: 12px;
  width: 100%;
  height: 100%;
}

.problem-card .icon {
  font-size: 2.2rem;
  margin-bottom: 20px;
}

.problem-card h3 {
  font-family: 'Sora', sans-serif;
  font-size: 1.4rem;
  margin-bottom: 14px;
  color: var(--gold);
}

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

section {
  padding: 100px 60px;
}

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

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

.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;
}

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

.solution {
  background: var(--navy);
}

.solution-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.sol-card {
  background: rgba(218, 180, 75, 0.15);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 32px;
  transition: border-color .3s, transform .3s;
}

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

.sol-icon {
  font-size: 1.8rem;
  margin-bottom: 18px;

}
.sol-icon img {
  width: 30px;
  height: 30px;
}

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

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

.risks {
  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);
}

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

.risk-list {
  list-style: none;
  margin-top: 28px;
}

.risk-list li {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 20px;
  background: rgba(176, 147, 65, 0.09);
  border-left: 3px solid var(--gold);
  border-radius: 12px 12px 12px 12px;
  margin-bottom: 12px;
  font-size: .95rem;
  color: var(--cream);
  opacity: .9;
}

.risk-list li .risk-icon {
  font-size: 1.2rem;
}

.risk-highlight {
  background: linear-gradient(135deg, rgba(201, 168, 76, 0.15), rgba(201, 168, 76, 0.04));
  border: 1px solid var(--border);
  border-radius: 8px;
  text-align: center;
}

.risk-highlight .big-icon {
  background: url('../images/ogfigovephone.png')center /100% no-repeat;
  width: 100%;
  height: 600px;
  margin-bottom: 24px;
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
}

.risk-highlight h3 {
  font-family: 'Sora', sans-serif;
  font-size: 1.5rem;
  color: var(--gold);
  margin-bottom: 20px;
}

.risk-highlight p {
  color: var(--cream);
  opacity: .8;
  line-height: 1.7;
  margin-bottom: 20px;
}

.tech {
  background: var(--navy);
}

.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(218, 180, 75, 0.9), rgba(17, 34, 64, 0.8));
  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-header h3 {
  font-family: 'Sora', sans-serif;
  font-size: 1.4rem;
  color: var(--gold);
  margin-bottom: 10px;
}

.tech-card-body {
  padding: 32px 40px;
  background: rgba(218, 180, 75, 0.15)
}

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

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

.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(255, 255, 255, 0.06);
  font-size: .95rem;
  color: var(--cream);
  opacity: .85;
  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')center /cover no-repeat;
  width: 100%;
  height: 300px;
  margin-bottom: 25px;
}

.forwhom-text {
  padding: 48px;
}

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

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

/* ── CONTACT ── */
#contato {
  background: var(--navy);
  border-top: 1px solid var(--border);
}

.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_message {
  background-color: white;
  box-shadow: 0px 4px 20px #00000069;
  border-bottom: 4px solid #c14800;
  width: 290px;
  height: 50px;
  position: fixed;
  opacity: 0;
  top: 0;
  place-self: center;
  border-bottom-left-radius: 12px;
  align-content: center;
  text-align: center;
  border-bottom-right-radius: 12px;
  transition: opacity 0.5s ease-in;
}

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

}

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


.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: var(--navy-mid);
  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);
}

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);
}

.checkbox-row span {
  font-size: .82rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.btn-submit {
  width: 100%;
  background: var(--gold);
  color: var(--navy);
  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);
}

footer {
  background: #151E45;
  border-top: 1px solid var(--border);
  padding: 28px 60px;
  display: grid;
  align-items: center;
  color: white;
  height: 120px;

}

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

footer p {
  font-size: .8rem;
  justify-self: center;
  color: var(--white);
}

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

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

@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) {

  section,
  .problem,
  .hero {
    padding-left: 24px;
    padding-right: 24px;
  }

  .hero{
    background-attachment: fixed;
  }

  .risk-highlight-text {
    padding: 18px;
  }

  .risk-highlight .big-icon {
    height: 420px;
  }

  .problem-card {
    height: 150px;
  }

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

  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;
  }

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

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

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