.landing-page{
  min-height:100vh;
  background:
    radial-gradient(circle at top left, #ffe4f3 0, transparent 35%),
    linear-gradient(180deg, #fff7fc 0%, #ffffff 45%);
  padding:24px;
  color:var(--texto);
}

.landing-header{
  max-width:1180px;
  margin:0 auto 40px;
  display:flex;
  align-items:center;
  justify-content:space-between;
}

.brand{
  display:flex;
  align-items:center;
  gap:12px;
  font-size:22px;
  font-weight:900;
}

.brand-icon{
  width:52px;
  height:52px;
  border-radius:18px;
  display:flex;
  align-items:center;
  justify-content:center;
  background:var(--gradiente-marca);
  color:white;
  box-shadow:var(--sombra-rosa);
  font-size:26px;
}

.btn-login,
.btn-secondary{
  text-decoration:none;
  padding:14px 20px;
  border-radius:999px;
  background:white;
  border:1px solid var(--borda);
  color:var(--texto);
  font-weight:900;
}

.hero{
  max-width:1180px;
  margin:0 auto;
  display:grid;
  grid-template-columns:1.1fr .9fr;
  gap:48px;
  align-items:center;
  min-height:620px;
}

.badge{
  display:inline-block;
  background:#fff0f7;
  color:var(--rosa-principal);
  padding:10px 16px;
  border-radius:999px;
  font-weight:900;
  margin-bottom:20px;
}

.hero h1{
  font-size:58px;
  line-height:1.02;
  margin-bottom:22px;
  font-weight:950;
  letter-spacing:-1.5px;
}

.hero p{
  font-size:19px;
  line-height:1.6;
  color:var(--texto-suave);
  max-width:620px;
}

.hero-actions{
  margin-top:30px;
  display:flex;
  gap:14px;
  flex-wrap:wrap;
}

.btn-primary{
  text-decoration:none;
  padding:16px 24px;
  border-radius:999px;
  background:var(--gradiente-marca);
  color:white;
  font-weight:950;
  box-shadow:var(--sombra-rosa);
}

.hero-preview{
  display:flex;
  justify-content:center;
}

.preview-card{
  width:360px;
  background:white;
  border-radius:32px;
  padding:18px;
  box-shadow:0 24px 70px rgba(123, 61, 104, .18);
  border:1px solid var(--borda);
  position:relative;
  overflow:hidden;
}

.preview-cover{
  height:150px;
  border-radius:24px;
  background:linear-gradient(135deg, #ffd1ea, #e7abd1);
}

.preview-avatar{
  width:92px;
  height:92px;
  border-radius:28px;
  background:#e7abd1;
  color:white;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:30px;
  font-weight:950;
  border:6px solid white;
  margin-top:-46px;
  margin-left:18px;
  box-shadow:var(--sombra-card);
}

.preview-card h3{
  margin:18px 0 6px;
  font-size:28px;
}

.preview-card p{
  color:#f59e0b;
  font-weight:900;
  margin-bottom:10px;
}

.preview-card span{
  color:var(--texto-suave);
  font-weight:800;
}

.preview-services{
  display:grid;
  gap:10px;
  margin:20px 0;
}

.preview-services div{
  padding:12px 14px;
  background:#fff8fc;
  border:1px solid var(--borda);
  border-radius:16px;
  font-weight:900;
}

.preview-card button{
  width:100%;
  border:none;
  border-radius:999px;
  padding:15px;
  background:var(--gradiente-marca);
  color:white;
  font-weight:950;
  font-size:15px;
}

.beneficios,
.publico,
.como-funciona,
.cta-final{
  max-width:1180px;
  margin:70px auto 0;
}

.beneficios h2,
.publico h2,
.como-funciona h2,
.cta-final h2{
  font-size:38px;
  line-height:1.1;
  margin-bottom:24px;
  letter-spacing:-.8px;
}

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

.grid article{
  background:white;
  border:1px solid var(--borda);
  border-radius:26px;
  padding:24px;
  box-shadow:var(--sombra-card);
  font-size:28px;
}

.grid article strong{
  display:block;
  font-size:20px;
  margin:14px 0 8px;
}

.grid article span{
  display:block;
  font-size:15px;
  color:var(--texto-suave);
  font-weight:700;
  line-height:1.5;
}

.tags{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
}

.tags span{
  background:white;
  border:1px solid var(--borda);
  border-radius:999px;
  padding:13px 18px;
  font-weight:900;
  box-shadow:var(--sombra-card);
}

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

.passos div{
  background:white;
  border:1px solid var(--borda);
  border-radius:26px;
  padding:24px;
  box-shadow:var(--sombra-card);
}

.passos strong{
  width:44px;
  height:44px;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  background:var(--gradiente-marca);
  color:white;
  font-size:20px;
  margin-bottom:16px;
}

.passos span{
  font-weight:900;
}

.cta-final{
  text-align:center;
  background:#fff0f7;
  border-radius:36px;
  padding:50px 24px;
  margin-bottom:80px;
}

.cta-final p{
  color:var(--texto-suave);
  font-size:18px;
  margin-bottom:28px;
}

@media(max-width:900px){
  .hero{
    grid-template-columns:1fr;
    min-height:auto;
    padding-top:20px;
  }

  .hero h1{
    font-size:42px;
  }

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

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

  .preview-card{
    width:100%;
    max-width:380px;
  }
}

@media(max-width:600px){
  .landing-page{
    padding:18px;
  }

  .landing-header{
    margin-bottom:24px;
  }

  .brand strong{
    font-size:18px;
  }

  .brand-icon{
    width:46px;
    height:46px;
  }

  .hero h1{
    font-size:34px;
  }

  .hero p{
    font-size:16px;
  }

  .hero-actions{
    flex-direction:column;
  }

  .btn-primary,
  .btn-secondary,
  .btn-login{
    text-align:center;
  }

  .beneficios h2,
  .publico h2,
  .como-funciona h2,
  .cta-final h2{
    font-size:28px;
  }
}