:root {
  --blue: #073b78;
  --blue-2: #0b5ed7;
  --dark: #102033;
  --text: #475569;
  --light: #f4f8fc;
  --white: #ffffff;
  --shadow: 0 20px 60px rgba(7, 59, 120, .12);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  background: var(--white);
  color: var(--dark);
}

.header {
  width: 100%;
  padding: 16px 8%;
  background: rgba(255,255,255,.94);
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: fixed;
  top: 0;
  z-index: 100;
  box-shadow: 0 4px 20px rgba(0,0,0,.05);
}

.logo img {
  height: 54px;
  width: auto;
  display: block;
}

.nav {
  display: flex;
  align-items: center;
  gap: 26px;
}

.nav a {
  text-decoration: none;
  color: var(--dark);
  font-weight: 700;
}

.nav a:hover {
  color: var(--blue-2);
}

.portal-btn {
  background: var(--blue-2);
  color: white !important;
  padding: 12px 18px;
  border-radius: 999px;
  transition: .25s;
}

.portal-btn:hover {
  background: #084298;
  transform: translateY(-2px);
}

.menu-btn {
  display: none;
  background: none;
  border: none;
  font-size: 32px;
  color: var(--blue);
  cursor: pointer;
}

.hero {
  min-height: 100vh;
  padding: 130px 8% 70px;
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 60px;
  align-items: center;
  background:
    radial-gradient(circle at top right, #d9ecff, transparent 35%),
    linear-gradient(135deg, #f7fbff, #ffffff);
}

.tag {
  display: inline-block;
  background: #e7f1ff;
  color: var(--blue-2);
  padding: 8px 16px;
  border-radius: 999px;
  font-weight: 800;
  margin-bottom: 18px;
}

.tag.light {
  background: rgba(255,255,255,.15);
  color: white;
}

.hero h1 {
  font-size: clamp(38px, 5vw, 66px);
  line-height: 1.02;
  color: var(--blue);
  margin-bottom: 24px;
}

.hero p {
  font-size: 20px;
  color: var(--text);
  line-height: 1.7;
  margin-bottom: 30px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn {
  padding: 14px 26px;
  border-radius: 999px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  font-weight: 800;
  display: inline-block;
}

.primary {
  background: var(--blue-2);
  color: white;
  box-shadow: 0 12px 30px rgba(11, 94, 215, .28);
}

.secondary {
  background: white;
  color: var(--blue);
  border: 1px solid #dbeafe;
}

.hero-image {
  background: white;
  padding: 18px;
  border-radius: 34px;
  box-shadow: var(--shadow);
}

.hero-image img {
  width: 100%;
  height: 460px;
  object-fit: contain;
  border-radius: 26px;
  display: block;
}

.trusted {
  padding: 28px 8%;
  text-align: center;
  background: var(--blue);
  color: white;
  font-weight: 700;
}

.section {
  padding: 90px 8%;
}

.section-title {
  max-width: 760px;
  margin: 0 auto 52px;
  text-align: center;
}

.section-title span {
  color: var(--blue-2);
  font-weight: 900;
}

.section-title h2 {
  font-size: clamp(32px, 4vw, 46px);
  color: var(--blue);
  margin: 12px 0 16px;
}

.section-title p {
  color: var(--text);
  font-size: 18px;
  line-height: 1.7;
}

.cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.card {
  padding: 30px;
  background: white;
  border-radius: 28px;
  box-shadow: var(--shadow);
  border: 1px solid #eef4fb;
  transition: .25s;
}

.card:hover {
  transform: translateY(-8px);
}

.icon {
  width: 62px;
  height: 62px;
  background: #e7f1ff;
  border-radius: 20px;
  display: grid;
  place-items: center;
  font-size: 30px;
  margin-bottom: 20px;
}

.card h3 {
  color: var(--blue);
  margin-bottom: 12px;
  font-size: 22px;
}

.card p {
  color: var(--text);
  line-height: 1.6;
}

.about {
  padding: 90px 8%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 55px;
  align-items: center;
  background: linear-gradient(135deg, var(--blue), #061f44);
  color: white;
}

.about h2 {
  font-size: clamp(34px, 4vw, 48px);
  margin-bottom: 20px;
}

.about p {
  color: #dbeafe;
  line-height: 1.7;
  font-size: 18px;
  margin-bottom: 30px;
}

.stats {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}

.stats div {
  padding: 30px;
  background: rgba(255,255,255,.12);
  border-radius: 24px;
}

.stats strong {
  display: block;
  font-size: 42px;
  margin-bottom: 8px;
}

.process {
  background: var(--light);
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.step {
  background: white;
  padding: 28px;
  border-radius: 24px;
  box-shadow: var(--shadow);
}

.step b {
  color: var(--blue-2);
  font-size: 28px;
}

.step h3 {
  margin: 14px 0 10px;
  color: var(--blue);
}

.step p {
  color: var(--text);
  line-height: 1.6;
}

.contact {
  padding: 90px 8%;
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 50px;
  align-items: start;
}

.contact-info h2 {
  font-size: clamp(34px, 4vw, 48px);
  color: var(--blue);
  margin-bottom: 18px;
}

.contact-info p {
  color: var(--text);
  line-height: 1.7;
  margin-bottom: 24px;
}

.contact-info ul {
  list-style: none;
}

.contact-info li {
  margin-bottom: 12px;
  font-weight: 700;
}

.form {
  background: white;
  padding: 34px;
  border-radius: 28px;
  box-shadow: var(--shadow);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form input,
.form select,
.form textarea {
  padding: 15px;
  border: 1px solid #d8e1ec;
  border-radius: 14px;
  font-size: 16px;
  outline: none;
}

.form input:focus,
.form select:focus,
.form textarea:focus {
  border-color: var(--blue-2);
}

.form textarea {
  grid-column: span 2;
  min-height: 130px;
  resize: vertical;
}

.form button {
  width: fit-content;
}

.whatsapp {
  position: fixed;
  right: 22px;
  bottom: 22px;
  background: #25d366;
  color: white;
  padding: 15px 20px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 900;
  box-shadow: 0 12px 30px rgba(37, 211, 102, .35);
  z-index: 99;
}

.footer {
  background: #061f44;
  color: white;
  text-align: center;
  padding: 28px 8%;
}

@media (max-width: 980px) {
  .hero,
  .about,
  .contact {
    grid-template-columns: 1fr;
  }

  .cards,
  .steps {
    grid-template-columns: 1fr 1fr;
  }

  .hero-image img {
    height: 360px;
  }
}

@media (max-width: 680px) {
  .menu-btn {
    display: block;
  }

  .nav {
    position: absolute;
    top: 86px;
    left: 0;
    width: 100%;
    background: white;
    flex-direction: column;
    align-items: flex-start;
    padding: 24px 8%;
    display: none;
    box-shadow: 0 16px 30px rgba(0,0,0,.08);
  }

  .nav.active {
    display: flex;
  }

  .cards,
  .steps,
  .form {
    grid-template-columns: 1fr;
  }

  .form textarea {
    grid-column: span 1;
  }

  .hero {
    padding-top: 120px;
  }

  .hero-image img {
    height: 280px;
  }
}
