:root {
  --purple-dark: #0f0d1d;
  --purple: #2b7be4;
  --purple-light: #6fa5f4;
  --green: #2b7be4;
  --green-soft: #e9f4ff;
  --accent: #e62e2e;
  --white: #ffffff;
  --text-dark: #1a1a1a;
  --radius-xl: 32px;
  --radius-pill: 999px;
}

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

body {
  font-family: 'Inter', sans-serif;
  background: #fff;
  color: var(--text-dark);
}

.header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 100;
}

.header-inner {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 16px 24px;
  background: linear-gradient(90deg, #0f0d1d, #1b2340);
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 6px 16px rgba(0,0,0,0.15);
}

.logo {
  display: flex;
  align-items: center;
}

.logo img {
  height: 48px;
  width: auto;
  display: block;
}

.nav {
  display: flex;
  gap: 24px;
}

.nav a {
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  opacity: 0.85;
}

.nav a:hover {
  opacity: 1;
}

.actions {
  display: flex;
  gap: 12px;
}

.btn-primary {
  background: var(--accent);
  color: #fff;
  border: none;
  padding: 12px 24px;
  border-radius: var(--radius-pill);
  font-weight: 600;
  cursor: pointer;
}

.btn-outline {
  background: transparent;
  color: var(--green);
  border: 1px solid var(--green);
  padding: 12px 24px;
  border-radius: var(--radius-pill);
  font-weight: 600;
  cursor: pointer;
}

.hero {
  margin-top: 140px;
  background: linear-gradient(180deg, #1b2340, #2b3e85);
  border-radius: 0 0 80px 80px;
  padding: 80px 0 120px;
  position: relative;
  overflow: hidden;
}

.hero-inner {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 48px;
  position: relative;
  z-index: 2;
}

.hero-image {
  height: 420px;
  border-radius: 40px;
  background: url('https://images.unsplash.com/photo-1529626455594-4ff0802cfb7e') center/cover no-repeat;
}

.hero-content h1 {
  color: #fff;
  font-size: 44px;
  line-height: 1.2;
  margin-bottom: 24px;
}

.hero-content p {
  color: #e6dbff;
  font-size: 16px;
  margin-bottom: 32px;
  max-width: 420px;
}

.hero-bg-x {
  position: absolute;
  right: -120px;
  top: 40px;
  width: 600px;
  height: 600px;
  border: 2px solid rgba(255,255,255,0.15);
  border-radius: 80px;
  transform: rotate(45deg);
  z-index: 1;
}

.info {
  padding: 120px 0;
  background: #ffffff;
}

.info-inner {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 64px;
}

.info-text h2 {
  font-size: 40px;
  color: var(--purple);
  margin-bottom: 24px;
}

.info-text p {
  font-size: 16px;
  line-height: 1.7;
  color: #4b3b6e;
  max-width: 480px;
  margin-bottom: 32px;
}

.info-image {
  position: relative;
  height: 360px;
  border-radius: 40px;
  background: url('https://images.unsplash.com/photo-1521737604893-d14cc237f11d') center/cover no-repeat;
}

.line {
  position: absolute;
  height: 6px;
  background: var(--accent);
  border-radius: 999px;
}

.line-top {
  width: 140px;
  top: 24px;
  left: -40px;
}

.line-middle {
  width: 220px;
  top: 50%;
  right: -60px;
}

.line-bottom {
  width: 160px;
  bottom: 32px;
  left: -30px;
}

.vantagens {
  background: var(--green-soft);
  border-radius: 80px;
  padding: 120px 0;
  margin: 0 24px 120px;
}

.vantagens-inner {
  max-width: 1200px;
  margin: auto;
}

.vantagens h2 {
  text-align: center;
  font-size: 40px;
  color: var(--purple);
  margin-bottom: 32px;
}

.vantagens-sub {
  max-width: 520px;
  margin: 0 auto 64px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.vantagens-bar {
  width: 6px;
  height: 100%;
  background: var(--green);
  border-radius: 999px;
}

.vantagens-sub p {
  font-size: 15px;
  line-height: 1.6;
  color: #3f2f5f;
}

.cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  max-width: 820px;
  margin: 0 auto;
}

.card {
  background: transparent;
  border: 2px solid var(--purple-light);
  border-radius: 0;
  padding: 20px 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 0;
}

.card h3 {
  font-size: 18px;
  color: var(--purple);
  margin-bottom: 12px;
}

.card p {
  font-size: 13px;
  color: #4b3b6e;
  line-height: 1.6;
  margin-bottom: 16px;
}

.card .btn-outline {
  align-self: flex-start;
}

.mapa {
  background: linear-gradient(180deg, #1b2340, #2b3e85);
  padding: 120px 24px;
  border-radius: 80px;
  margin: 0 24px 120px;
  position: relative;
}

.mapa-inner {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 48px;
  align-items: center;
}

.mapa-text h2 {
  color: #ffffff;
  font-size: 36px;
  margin-bottom: 16px;
}

.mapa-text p {
  color: #e6dbff;
  font-size: 16px;
  line-height: 1.7;
  max-width: 520px;
}

.mapa-img {
  height: 360px;
  border-radius: 40px;
  background: url('img/mapa.png') center/contain no-repeat;
  background-color: #0f0d1d;
  border: 2px solid rgba(255,255,255,0.12);
  box-shadow: inset 0 -30px 60px rgba(0,0,0,0.35), 0 20px 40px rgba(0,0,0,0.25);
}

.mapa-bg-x {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background:
    radial-gradient(1200px 600px at -200px -200px, rgba(255,255,255,0.06), transparent 40%),
    radial-gradient(900px 500px at 100% 30%, rgba(255,255,255,0.05), transparent 50%);
}

 

.form-section {
  background: linear-gradient(180deg, #1b2340, #0f0d1d);
  padding: 120px 24px;
  border-radius: 80px;
  margin: 0 24px 120px;
}

.form-wrapper {
  max-width: 1200px;
  margin: auto;
  display: flex;
  justify-content: center;
}

.form-card {
  background: rgba(10, 8, 20, 0.35);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 48px;
  padding: 64px;
  max-width: 1200px;
  width: 100%;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 32px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.18);
}

.form-visual {
  position: relative;
  min-height: 420px;
  border-radius: 48px;
  background: #1a1426;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 32px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.25);
}

.form-logo {
  position: absolute;
  top: 32px;
  left: 32px;
  height: 96px;
}

.form-subtitle h3 {
  font-size: 24px;
  color: #fff;
  margin-bottom: 8px;
}

.form-subtitle p {
  font-size: 14px;
  color: #cfc3ff;
}

.form-content h2 {
  font-size: 38px;
  color: #ffffff;
  line-height: 1.2;
  margin-bottom: 24px;
}

.form {
  display: block;
}

.form input {
  padding: 14px 18px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.25);
  background: rgba(255,255,255,0.08);
  color: #ffffff;
  font-size: 14px;
}

.form input:focus {
  outline: none;
  border-color: #6fa5f4;
}

.form input::placeholder {
  color: rgba(255,255,255,0.7);
}

.form button {
  margin-top: 16px;
  width: fit-content;
}

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

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

.footer {
  background: linear-gradient(180deg, #eef4ff, #e7f0ff);
  padding: 80px 24px;
}

.footer-inner {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr 0.8fr;
  gap: 48px;
  align-items: flex-start;
}

.footer-logo {
  color: var(--purple);
  font-weight: 700;
  font-size: 20px;
  margin-bottom: 16px;
}

.footer-logo img {
  height: 56px;
  width: auto;
  display: block;
}

.footer-slogan {
  font-size: 28px;
  color: var(--purple);
  line-height: 1.3;
}

.footer-center h4,
.footer-right h4 {
  color: var(--purple);
  margin-bottom: 16px;
  font-size: 14px;
}

.footer-center p,
.footer-right p {
  font-size: 14px;
  color: #3f2f5f;
  line-height: 1.6;
  margin-bottom: 16px;
}

.footer-socials {
  display: flex;
  gap: 12px;
}

.footer-socials span {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--purple);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: var(--purple);
}

@media (max-width: 992px) {
  .hero-inner,
  .info-inner,
  .mapa-inner,
  .form-card {
    grid-template-columns: 1fr;
  }

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

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

  .hero {
    padding: 64px 24px 96px;
  }

  .hero-content h1 {
    font-size: 32px;
  }

  .vantagens {
    padding: 80px 24px;
  }

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

  .form-card {
    padding: 40px 24px;
  }
}

@media (max-width: 900px) {
  .footer-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-socials {
    justify-content: center;
  }
}
