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

body{
  background:#030010;
  font-family:'Poppins', sans-serif;
  color:white;
  overflow-x:hidden;
}

/* BARRA TOP */
.top-bar{
  width:100%;
  background:linear-gradient(90deg,#ff2d2d,#ff7a00);
  text-align:center;
  padding:8px;
  font-size:12px;
  font-weight:600;
}

/* CONTAINER */
.container{
  width:100%;
  min-height:100vh;

  display:flex;
  flex-direction:column;
  align-items:center;

  padding:40px 20px 80px;
}

/* FOTO */
.profile{
  width:120px;
  height:120px;

  border-radius:50%;
  overflow:hidden;

  margin-bottom:25px;

  border:4px solid rgba(140,80,255,0.4);

  box-shadow:
    0 0 25px rgba(98,0,255,0.45);
}

.profile img{
  width:100%;
  height:100%;

  object-fit:cover;
  object-position:center;

  display:block;
}

/* CARD */
.hero-card{
  width:100%;
  max-width:420px;

  background:linear-gradient(
    180deg,
    #1b0054 0%,
    #130033 100%
  );

  border-radius:22px;

  border:1px solid rgba(255,255,255,0.08);

  padding:38px 28px;

  text-align:center;

  box-shadow:
    0 0 40px rgba(89,0,255,0.25);
}

.small-text{
  display:block;

  font-size:11px;
  letter-spacing:3px;

  color:#b6a2ff;

  margin-bottom:18px;
}

h1{
  font-size:30px;
  line-height:1.25;

  font-weight:800;

  margin-bottom:18px;
}

h1 span{
  color:#ffe600;
}

/* BADGE */
.badge{
  display:inline-block;

  background:#ffe8a3;
  color:#ff5e00;

  font-size:11px;
  font-weight:700;

  padding:7px 18px;

  border-radius:30px;

  margin-bottom:18px;
}

/* TEXTO */
.members{
  font-size:14px;
  color:#e0e0e0;

  margin-bottom:26px;
}

/* BOTÃO */
.btn{
  width:100%;
  height:72px;

  display:flex;
  align-items:center;
  justify-content:center;

  text-decoration:none;

  border-radius:16px;

  background:linear-gradient(
    180deg,
    #70e164 0%,
    #5ac953 100%
  );

  color:white;

  font-size:24px;
  font-weight:800;

  transition:0.2s;

  box-shadow:
    0 0 25px rgba(88,255,88,0.45);
}

.btn:hover{
  transform:scale(1.02);
}

/* MINI BADGE */
.mini-badge{
  display:inline-block;

  margin-top:18px;

  border:1px solid rgba(255,70,70,0.5);

  color:#ff9090;

  font-size:11px;

  padding:7px 15px;

  border-radius:30px;
}

/* SECTION */
.section{
  width:100%;
  max-width:420px;

  margin-top:60px;

  text-align:center;
}

.section p{
  color:#d0d0d0;

  margin-bottom:12px;
}

.section h2{
  font-size:32px;

  margin-bottom:25px;
}

/* BENEFÍCIOS */
.benefits{
  background:rgba(255,255,255,0.03);

  border:1px solid rgba(255,255,255,0.05);

  border-radius:18px;

  padding:26px;

  text-align:left;
}

.benefit-item{
  display:flex;

  gap:14px;

  margin-bottom:22px;

  line-height:1.6;

  color:#efefef;

  font-size:15px;
}

.benefit-item:last-child{
  margin-bottom:0;
}

.check{
  width:24px;
  height:24px;

  min-width:24px;

  border-radius:50%;

  background:rgba(88,255,125,0.15);

  color:#58ff7d;

  display:flex;
  align-items:center;
  justify-content:center;

  font-size:14px;
  font-weight:bold;
}

/* RESPONSIVO */
@media(max-width:600px){

  .hero-card{
    padding:30px 22px;
  }

  h1{
    font-size:26px;
  }

  .btn{
    height:64px;
    font-size:21px;
  }

}