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

body{
    font-family:Arial, Helvetica, sans-serif;
    background:#070707;
    color:#fff;
    overflow-x:hidden;
}

  header {
      width: 100%;
      padding: 28px 7%;
      display: flex;
      justify-content: space-between;
      align-items: center;
      background: #070707;
      backdrop-filter: blur(10px);
      position: sticky;
      top: 0;
      z-index: 10;
    }
 .logo {
      font-size: 22px;
      font-weight: 800;
      letter-spacing: 1px;
    }

.logo {
    position: relative;

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

    letter-spacing: -0.3px;

    background:
        linear-gradient(
            90deg,
            #ffffff,
            #ffffff,
            #b96cff
        );

    -webkit-background-clip: text;
    background-clip: text;

    color: transparent;
}


.logo::after {
    content: "";

    position: absolute;

    width: 5px;
    height: 5px;

    right: -10px;
    top: 3px;

    border-radius: 50%;

    background: var(--purple);

    box-shadow:
        0 0 8px var(--purple),
        0 0 15px var(--purple);
}


    nav a {
      margin-left: 28px;
      text-decoration: none;
      color: #fff;
      font-weight: 600;
      font-size: 14px;
    }
.hero {
  width: min(100%, 1040px);
  min-height: calc(100vh - 90px);
  margin: 0 auto;
  padding: 40px 24px 70px;
  display: grid;
  grid-template-columns: 1fr 0.85fr;
  align-items: center;
  gap: 42px;
}

    .hero-text span {
      display: inline-block;
      background: #111;
      color: #fff;
      padding: 8px 16px;
      border-radius: 999px;
      font-size: 13px;
      margin-bottom: 25px;
    }

  .hero-text h1 {
  font-size: clamp(52px, 5.2vw, 86px);
  line-height: 0.92;
  font-weight: 900;
  letter-spacing: -1px;
  max-width: 620px;
}

    .hero-text p {
      margin-top: 30px;
      font-size: 19px;
      line-height: 1.7;
      max-width: 520px;
      color: #444;
    }

    .buttons {
      margin-top: 38px;
      display: flex;
      gap: 16px;
      flex-wrap: wrap;
    }

    .btn {
      padding: 16px 28px;
      border-radius: 40px;
      text-decoration: none;
      font-weight: 700;
      border: 2px solid #111;
      transition: transform 0.3s ease, background 0.3s ease;
    }

    .btn:hover {
      transform: translateY(-4px);
    }

    .btn.dark {
      background: #111;
      color: #fff;
    }

    .btn.light {
      color: #111;
    }
















#progress-bar{
    position:fixed;
    top:0;
    left:0;
    height:4px;
    width:0;
    background:#7b14c4;
    z-index:9999;
}














.hero{
    min-height:70vh;
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    text-align:center;
    position:relative;
    overflow:hidden;
    background:#070707;
}





.hero-logo{
    width:170px;
    margin-bottom:25px;
    z-index:2;

    filter:
    drop-shadow(0 0 15px #7b14c4)
    drop-shadow(0 0 30px #7b14c4);

    animation:hologram 6s ease-in-out infinite;
}

@keyframes hologram{

    0%,100%{
        transform:
        rotateY(0deg)
        translateY(0);
    }

    50%{
        transform:
        rotateY(12deg)
        translateY(-10px);
    }

}
.laser{
    position:absolute;
    height:2px;
    background:#7b14c4;

    box-shadow:
    0 0 10px #7b14c4,
    0 0 20px #7b14c4,
    0 0 40px #7b14c4;
}

.laser1{
    width:250px;
    top:35%;
    left:-300px;

    animation:laser1 7s linear infinite;
}

.laser2{
    width:350px;
    top:65%;
    right:-350px;

    animation:laser2 8s linear infinite;
}

@keyframes laser1{

    from{
        left:-300px;
    }

    to{
        left:120%;
    }

}

@keyframes laser2{

    from{
        right:-350px;
    }

    to{
        right:120%;
    }

}
.hero h1{
    font-size:80px;
    color:white;
    z-index:2;

    text-shadow:
    0 0 10px #7b14c4,
    0 0 20px #7b14c4;
}

.hero p{
    color:#d0d0d0;
    max-width:700px;
    z-index:2;
}

.badge{
    z-index:2;
    background:#7b14c4;
    color:white;
    padding:10px 20px;
    border-radius:50px;
    margin-bottom:20px;
    font-size:12px;
    letter-spacing:3px;
}














.badge{
    background:#7b14c4;
    padding:10px 20px;
    border-radius:30px;
    font-size:12px;
    letter-spacing:2px;
    font-weight:700;
    margin-bottom:20px;
    z-index:2;
}

.hero h1{
    font-size:80px;
    margin-bottom:20px;
    z-index:2;
}

.hero p{
    color:#ccc;
    max-width:700px;
    z-index:2;
}

.terms{
    max-width:1000px;
    margin:auto;
    padding:80px 20px;
    display:grid;
    gap:25px;
}

.card{
    background:rgba(255,255,255,.03);
    border:1px solid rgba(123,20,196,.35);
    backdrop-filter:blur(10px);
    padding:35px;
    border-radius:20px;

    opacity:0;
    transform:translateY(50px);

    transition:.7s;
    position:relative;
    overflow:hidden;
}

.card::before{
    content:"";
    position:absolute;
    top:0;
    left:-100%;
    width:100%;
    height:2px;
    background:#7b14c4;
    box-shadow:0 0 20px #7b14c4;
    animation:scan 4s linear infinite;
}

.card.active{
    opacity:1;
    transform:translateY(0);
}

.card:hover{
    transform:translateY(-8px);
    box-shadow:0 0 35px rgba(123,20,196,.3);
}

.card h2{
    margin-bottom:15px;
    color:#7b14c4;
}

.card p{
    line-height:1.8;
    color:#d8d8d8;
}

footer{
    text-align:center;
    padding:40px;
    color:#888;
}

@keyframes pulse{
    0%,100%{
        transform:scale(1);
    }

    50%{
        transform:scale(1.2);
    }
}

@keyframes scan{
    from{
        left:-100%;
    }

    to{
        left:100%;
    }
}

@media(max-width:768px){

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

.card{
    padding:25px;
}

}



/* Imagens normais */
.card-images img {
    width: auto;
    height: auto;
    max-width: 100%;

    border-radius: 12px;
    border: 1px solid rgba(139, 0, 255, 0.45);

    cursor: zoom-in;
}


/* Fundo do zoom */
.image-zoom {
    display: none;

    position: fixed;
    inset: 0;

    width: 100%;
    height: 100%;

    background: rgba(0, 0, 0, 0.90);

    z-index: 999999;

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

    padding: 30px;
    box-sizing: border-box;
}


/* Quando estiver aberto */
.image-zoom.active {
    display: flex;
}


/* Imagem ampliada */
.image-zoom img {
    width: auto;
    height: auto;

    max-width: 95vw;
    max-height: 90vh;

    object-fit: contain;

    border-radius: 10px;

    box-shadow: 0 0 40px rgba(139, 0, 255, 0.5);

    cursor: zoom-in;

    transition: transform 0.25s ease;
}

/* Zoom extra quando clicar */
.image-zoom img.zoom-extra {
    transform: scale(1.30);
    cursor: zoom-out;
}


/* X para fechar */
.image-zoom-close {
    position: fixed;

    top: 20px;
    right: 35px;

    color: white;

    font-size: 45px;
    font-weight: bold;

    cursor: pointer;

    z-index: 1000000;
}

.exclusivo {
    color: white;
    font-size: 15px;
    margin-left: 10px;
    font-weight: 600;
}

.exclusivo i {
    color: #ffd700;
    margin-right: 4px;
}


.sumario {
    width: 100%;
    margin: 35px 0 45px 0;
    padding: 25px;

    background: rgba(15, 15, 20, 0.75);

    border: 1px solid rgba(139, 0, 255, 0.35);
    border-radius: 15px;

    box-sizing: border-box;
}

.sumario h2 {
    margin-top: 0;
    margin-bottom: 20px;
}

.sumario-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.sumario-links a {
    display: flex;
    align-items: center;
    gap: 12px;

    padding: 12px 15px;

    color: #ffffff;
    text-decoration: none;

    background: rgba(255, 255, 255, 0.03);

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

    transition: 0.25s ease;
}

.sumario-links a span {
    color: #a855f7;
    font-weight: bold;
}

.sumario-links a:hover {
    background: rgba(139, 0, 255, 0.12);
    border-color: rgba(139, 0, 255, 0.6);

    transform: translateX(5px);
}

.card {
    scroll-margin-top: 140px;
}


.coroa-exclusivo {
    color: #ffd700;
    margin-left: 6px;
}


.icone-atencao {
    color: #ff3b3b !important;
    margin-right: 5px;
}