@import url('https://fonts.googleapis.com/css2?family=Sora:wght@300;400;600&family=Space+Grotesk:wght@400;600&family=Unbounded:wght@900&display=swap');
 
body {
    background-image: url(../img/bg.jpg);
    font-family: 'Sora', sans-serif;
    font: 18px;
}
 
.w90 {
    width: 90%;
}
 
h1,
h2,
h3 {
    font-size: 58px;
    font-family: 'Unbounded', sans-serif;
}
 
 
h2 {
    font-size: 38px;
 
}
 
h3 {
    font-size: 28px;
 
}
 
h1 span {
    margin-top: -41px;
    display: block;
    color: #fff;
    font-size: 92px;
}
 
.banner {
    /* height: 100vh; */
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-top: 140px;
}
 
.banner p {
    font-size: 30px;
    color: #fff;
    font-weight: 700;
}
 
.verde {
    color: aqua;
}
 
.gif1 {
    position: absolute;
    right: 440px;
    margin-top: 90px;
}
 
.havefun {
    position: absolute;
    top: 100px;
    margin-left: -110px;
    animation: have 10s linear infinite;
    mix-blend-mode: hard-light;
}
 
.filter {
    filter: blur(0px);
    transition: 5ms all linear;
    animation: filtro 1s linear infinite;
}
 
.filter:hover {
    filter: blur(3px);
    transition: 5ms all linear;
}
 
@keyframes filtro {
    0% {
        top: 230px;
 
    }
 
    100% {
        top: 250px;
 
    }
}
 
@keyframes have {
    0% {
        top: 230px;
        transform: rotate(0);
    }
 
    50% {
        top: 390px;
        transform: rotate(30deg);
    }
 
    100% {
        top: 230px;
        transform: rotate(0);
    }
}
 
.navbar-light .navbar-nav .nav-link {
    color: rgb(255 255 255);
    font-family: 'Unbounded', sans-serif;
    text-transform: uppercase;
    font-size: 16px;
}
 
.navbar-light .navbar-brand {
    color: rgba(255, 255, 255, 0.9);
    position: absolute;
    top: 0px;
}
 
.navv {
    background-color: #fe7694;
    border-radius: 120px;
    padding: 6px 50px;
    box-shadow: -1px 5px 0 #ffcc00;
    box-shadow: #c63a59 0px 7px 2px, #000 0px 8px 5px;
    margin-top: 30px;
    backdrop-filter: blur(2px);
    /* mix-blend-mode: exclusion; */
}
 
.navbar-brand img {
    width: 170px;
}
 
.zig {
    background-image: url(../img/zig.png);
    background-repeat: repeat-x;
    height: 46px;
}
 
 
.novaContract {
    background: linear-gradient(135deg, #b073ff 70%, #fe7694 100%);
    box-shadow: 0 6px 36px 0 rgba(170, 80, 200, 0.18), 0 1.5px 6px 0 rgba(0,0,0,0.12);
    border-radius: 24px;
    padding: 34px 24px 24px 24px;
    margin: 36px auto 18px auto;
    max-width: 450px;
    text-align: center;
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 18px;
  }
  
  .contractLabel {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    font-family: 'Unbounded', sans-serif;
    font-weight: 700;
    font-size: 19px;
    letter-spacing: 1px;
    color: #fff;
    margin-bottom: 8px;
    text-shadow: 0 1px 5px #bc5be988;
  }
  
  .copyBtn {
    background: #fff;
    border: none;
    border-radius: 8px;
    color: #bb47c7;
    font-size: 1.8em;
    padding: 5px 12px;
    cursor: pointer;
    transition: background .18s, color .18s, transform .18s;
    box-shadow: 0 2px 8px 0 #b073ff18;
  }
  .copyBtn:hover {
    background: #fae9fe;
    color: #7d1ac9;
    transform: scale(1.1);
  }
  
  .contractAddress {
    background: rgba(255,255,255,0.16);
    color: #fff;
    font-family: 'Space Grotesk', 'Sora', Arial, sans-serif;
    font-size: 1.22em;
    font-weight: bold;
    letter-spacing: .01em;
    border-radius: 14px;
    padding: 22px 14px;
    word-break: break-all;
    margin: 0 auto;
    cursor: pointer;
    user-select: all;
    box-shadow: 0 3px 9px 0 #c53a5912;
    transition: background .18s;
  }
  .contractAddress:hover {
    background: #c53a59;
    color: #fff;
  }
  
  @media (max-width: 600px) {
    .novaContract {
      padding: 19px 7vw 14px 7vw;
      border-radius: 16px;
      max-width: 97vw;
      gap: 9px;
    }
    .contractLabel {
      font-size: 14px;
      gap: 6px;
    }
    .copyBtn {
      font-size: 1.25em;
      padding: 2px 7px;
    }
    .contractAddress {
      padding: 12px 4vw;
      font-size: 0.98em;
      border-radius: 8px;
    }
  }

 
.paddinAbout {
    padding-top: 430px;
}
 
.about p {
    font-size: 20px;
}
 
.pushable {
    position: relative;
    background: transparent;
    padding: 0px;
    border: none;
    cursor: pointer;
    outline-offset: 4px;
    outline-color: deeppink;
    transition: filter 250ms;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
 
.shadow {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: hsl(226, 25%, 69%);
    border-radius: 8px;
    filter: blur(2px);
    will-change: transform;
    transform: translateY(2px);
    transition: transform 600ms cubic-bezier(0.3, 0.7, 0.4, 1);
}
 
.edge {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    border-radius: 8px;
    background: linear-gradient(to right,
            hsl(248, 39%, 39%) 0%,
            hsl(248, 39%, 49%) 8%,
            hsl(248, 39%, 39%) 92%,
            hsl(248, 39%, 29%) 100%);
}
 
.front {
    display: block;
    position: relative;
    border-radius: 8px;
    background: hsl(248, 53%, 58%);
    padding: 16px 32px;
    color: white;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen,
        Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-size: 1rem;
    transform: translateY(-4px);
    transition: transform 600ms cubic-bezier(0.3, 0.7, 0.4, 1);
}
 
.pushable:hover {
    filter: brightness(110%);
}
 
.pushable:hover .front {
    transform: translateY(-6px);
    transition: transform 250ms cubic-bezier(0.3, 0.7, 0.4, 1.5);
}
 
.pushable:active .front {
    transform: translateY(-2px);
    transition: transform 34ms;
}
 
.pushable:hover .shadow {
    transform: translateY(4px);
    transition: transform 250ms cubic-bezier(0.3, 0.7, 0.4, 1.5);
}
 
.pushable:active .shadow {
    transform: translateY(1px);
    transition: transform 34ms;
}
 
.pushable:focus:not(:focus-visible) {
    outline: none;
}
 
 
.front2 {
    display: block;
    position: relative;
    border-radius: 8px;
    background: hsl(167.92deg 61.11% 49.41%);
    padding: 16px 32px;
    color: white;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-size: 1rem;
    transform: translateY(-4px);
    transition: transform 600ms cubic-bezier(0.3, 0.7, 0.4, 1);
}
 
 
.pushable:hover {
    filter: brightness(110%);
}
 
.pushable:hover .front2 {
    transform: translateY(-6px);
    transition: transform 250ms cubic-bezier(0.3, 0.7, 0.4, 1.5);
}
 
.pushable:active .front2 {
    transform: translateY(-2px);
    transition: transform 34ms;
}
 
.pushable:hover .shadow {
    transform: translateY(4px);
    transition: transform 250ms cubic-bezier(0.3, 0.7, 0.4, 1.5);
}
 
.pushable:active .shadow {
    transform: translateY(1px);
    transition: transform 34ms;
}
 
.pushable:focus:not(:focus-visible) {
    outline: none;
}
 
 
.item img {
    border-radius: 20px;
}
 
.marginTop {
    margin-top: 200px;
}
 
.porcem {
    font-size: 42px;
    color: #0fc;
    font-weight: 900;
    font-family: 'Unbounded', sans-serif;
    line-height: 39px;
}
 
.description {
    font-size: 14px;
    color: #fff;
    font-weight: 900;
 
}
 
.box {
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #783fc273;
    border-radius: 11px;
    backdrop-filter: blur(1px);
    padding: 15px;
    box-shadow: 7px 12px 0 #49207f;
    margin-bottom: 20px;
    height: 180px;
    text-align: center;
    display: flex;
    justify-content: center;
    border: solid 2px #49207f;
}
 
.imgSql {
    width: 210px;
    transform: revert;
}
 
.ddFlex {
    display: flex;
    justify-content: flex-end;
    /* align-content: center; */
    align-items: center;
 
}
 
.mt-5 {
    margin-top: 120px !important;
}
 
h3.phase {
 
    font-size: 22px;
    color: #ffcc00;
    margin-bottom: 15px;
 
}
 
.mt-6 {
    margin-top: 40px;
}
 
.accordion-button:not(.collapsed) {
    color: #ffffff;
    background-color: #49207f;
    box-shadow: inset 0 -1px 0 rgba(0, 0, 0, .125);
}
 
.accordion {
    margin-bottom: 10px;
}
 
.rocketman {
    position: absolute;
    width: 240px;
 
}
 
.rocketman {
    position: absolute;
 
    animation: rock 10s linear infinite;
 
}
 
@keyframes rock {
    0% {
        margin-top: 230px;
        transform: rotate(0);
        margin-left: 20px;
    }
 
    50% {
        margin-top: 390px;
        transform: rotate(30deg);
        margin-left: 200px;
    }
 
    100% {
        margin-top: 230px;
        transform: rotate(0);
        margin-left: 20px;
    }
}
 
.paddingPadrao {
    padding: 120px 0;
}
 
.boxTeam {
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #7b42c5;
    width: 290px;
    padding: 20px;
    border-radius: 30px;
    box-shadow: 7px 12px 0 #49207f;
 
 
    text-align: center;
 
    justify-content: center;
    border: solid 2px #49207f;
}
 
.boxTeam img {
    border-radius: 30px;
    width: 260px;
 
}
 
.instagram {
    font-size: 42px;
}
 
.name {
    font-size: 32px;
    font-family: 'Unbounded', sans-serif;
    font-weight: 600;
    margin: 10px 0;
    color: #0fc;
}
 
.cargo,
.email {
    color: #fff;
}
 
.instagram i {
    color: #fff !important;
}
 
.boxCall {
    padding: 50px 40px;
    background-color: #49207f;
    border-radius: 40px;
    color: #fff;
}
 
.logoF {
    padding-top: 400px
}
 
.social {
    display: flex;
    font-size: 30px;
    gap: 10px;
}
 
.social i {
    background-color: #03A9F4;
    border-radius: 120px;
    padding: 10px 11px;
    box-shadow: -1px 5px 0 #ffcc00;
    box-shadow: #5d3899 0px 7px 2px, #000 0px 8px 5px;
    margin-top: 30px;
    backdrop-filter: blur(2px);
    color: #ffffff;
}
 
.social i.la-twitter {
    background-color: #000000;
    border-radius: 120px;
    padding: 10px 11px;
    box-shadow: -1px 5px 0 #ffcc00;
    box-shadow: #5d3899 0px 7px 2px, #000 0px 8px 5px;
    margin-top: 30px;
    backdrop-filter: blur(2px);
    color: #ffffff;
}
 
.wp {
    background-color: #b073ff;
    border-radius: 120px;
    padding: 10px 20px;
    box-shadow: -1px 5px 0 #ffcc00;
    box-shadow: #5d3899 0px 7px 2px, #000 0px 8px 5px;
    margin-top: 30px;
    backdrop-filter: blur(2px);
    color: #ffffff;
    margin-left: 20px;
}
 
footer {
    background-image: url(../img/terra.png);
    background-position: top center;
    background-repeat: no-repeat;
    height: 74vh;
}
 
.escondeM {
    display: none;
}
 
.escondeD {
    display: block;
}
 
.divContract {
    max-width: 320px;
    margin: 24px auto 0 auto;
    background: rgba(153, 50, 204, 0.35); /* Roxo mais sutil */
    padding: 12px 12px 16px;
    border-radius: 14px;
    box-shadow: 0 1px 6px rgba(0, 0, 0, 0.15); /* sombra mais leve */
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    transition: all 0.3s ease-in-out;
}

.contatroTitulo {
    width: 100%;
    padding: 6px;
    font-size: 12px;
    border-radius: 8px;
    background: #a5fcd6; /* verde água mais suave */
    color: #222;
    text-align: center;
    margin-bottom: 4px;
    font-weight: bold;
    cursor: pointer;
    user-select: none;
}

.contrato {
    width: 100%;
    padding: 6px 8px;
    font-size: 12px;
    border-radius: 8px;
    background: rgba(234, 91, 191, 0.7); /* rosa mais translúcido */
    color: #fff;
    text-align: center;
    word-break: break-word;
}

.gatoContrato img {
    width: 120px;
    opacity: 0.85;
    transition: transform 0.3s ease;
}

.gatoContrato img:hover {
    transform: scale(1.05);
}
 
@media (max-width:768px) {
    .divContract {
        display: flex;
        gap: 10px;
        background-color: #7017c3;
        padding: 15px;
        border-radius: 15px;
        margin-top: 20px;
        align-items: center;
        flex-direction: column;
    }
 
    .contrato {
        font-size: 69%;
        color: #fff;
        background-color: blueviolet;
        padding: 15px;
        border-radius: 10px;
    }
 
    .contatroTitulo {
        background-color: aquamarine;
        padding: 20px;
        border-radius: 10px;
        font-weight: bold;
        text-transform: uppercase;
        font-size: 12px;
        width: 100%;
    }
 
    .escondeM {
        display: block;
    }
 
    .escondeD {
        display: none;
    }
 
    h1,
    h2,
    h3 {
        font-size: 32px;
        font-family: 'Unbounded', sans-serif;
    }
 
    h1 span {
        margin-top: -20px;
        display: block;
        color: #fff;
        font-size: 47px;
    }
 
    .astronauta {
        position: absolute;
        top: 1126px;
        right: 62px;
        z-index: 10;
    }
 
    .astronauta img {
        width: 270px;
    }
 
    .mt-5 {
        margin-top: -5px !important;
    }
 
    .ddFlex {
        display: flex;
        justify-content: flex-start;
        /* align-content: center; */
        align-items: center;
        margin-top: 0px;
    }
 
    .boxTeam {
        display: flex;
        flex-direction: column;
        align-items: center;
        background-color: #7b42c5;
        width: 90%;
        padding: 20px;
        border-radius: 30px;
        box-shadow: 7px 12px 0 #49207f;
        text-align: center;
        justify-content: center;
        border: solid 2px #49207f;
        margin-bottom: 30px;
    }
 
    .boxTeam img {
        border-radius: 30px;
        width: 300px;
    }
 
    footer {
        background-image: url(../img/terra.png);
        background-position: top center;
        background-repeat: no-repeat;
        height: 62vh;
    }
 
    .rocketman {
        position: absolute;
        width: 170px;
    }
 
    .navbar-toggler {
        position: absolute;
        right: 0;
        top: 15px;
    }
 
    .navbar-brand img {
        width: 118px;
    }
 
    .margimTop {
        margin-top: 30px;
    }
 
    .navv {
        background-color: #c5c0ffe8;
        border-radius: 30px;
        padding: 6px 30px;
        box-shadow: -1px 5px 0 #ffcc00;
        box-shadow: #5d3899 0px 7px 2px, #000 0px 8px 5px;
        margin-top: 110px;
        backdrop-filter: blur(2px);
        /* mix-blend-mode: exclusion; */
    }
 
    .marginTop {
        margin-top: 90px;
    }
}
 
/* Style the video: 100% width and height to cover the entire window */
#myVideo {
    position: absolute;
    right: 0;
    bottom: 0;
    min-width: 100%;
    min-height: 99%;
    z-index: -1;
}
 
/* Add some content at the bottom of the video/page */
.content {
    position: fixed;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    color: #f1f1f1;
    width: 100%;
    padding: 20px;
}
 
/* Style the button used to pause/play the video */
#myBtn {
    width: 200px;
    font-size: 18px;
    padding: 10px;
    border: none;
    background: #000;
    color: #fff;
    cursor: pointer;
}
 
#myBtn:hover {
    background: #ddd;
    color: black;
}
 
.mt-5 {
    margin-top: 70px !important;
}
 
.bannerPrincipal {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    height: 695px;
}
 
.nuvens {
    background-image: url(../img/funddo.png);
    background-repeat: no-repeat;
    background-position: center top;
    height: 100vh;
    position: absolute;
    z-index: -1;
    width: 100%;
}
 
.verde {
    color: #c53a59;
}

 
.contrato {
    font-size: 20px;
    color: #fff;
    background-color: #fe7694;
    padding: 15px;
    border-radius: 10px;
    width: 100%;
}
 
.contatroTitulo {
    background-color: #ae84e9;
    padding: 20px;
    border-radius: 10px;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 12px;
    color: #fff;
    cursor: pointer;
}
 
.about {
    min-height: 320px;  /* Aumente esse valor até caber a imagem toda! */
    height: auto;
    background-image: url(../img/newmonn.png);
    background-repeat: no-repeat;
    background-position: center 20px; /* Pode testar outros valores tipo 40px, 60px, etc */
    background-size: contain;
    margin-top: 30px;
}
/* Click-To-Earn Section Styles */
.click-to-earn {
    padding: 80px 0;
    
    position: relative;
    overflow: hidden;
}
 
.feature-box {
    background: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 15px;
    height: 100%;
    transition: transform 0.3s ease;
    backdrop-filter: blur(5px);
}
 
.feature-box:hover {
    transform: translateY(-5px);
}
 
.icon-box {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}
 
.icon-box i {
    font-size: 32px;
    color: #fff;
}
 
.feature-box h3 {
    margin-bottom: 15px;
    font-size: 24px;
}
 
.feature-box p {
    font-size: 16px;
    line-height: 1.6;
}
/* ... todo seu CSS acima, sem mexer em nada ... */
 
/* ===========================================
   RESPONSIVIDADE VÍDEO/GIF NO MOBILE (somente)
   =========================================== */
   /* ... todo seu CSS acima, sem mexer em nada ... */
 
/* ===========================================
   RESPONSIVIDADE VÍDEO/GIF NO MOBILE (somente)
   =========================================== */
@media (max-width: 800px) {
    .contrato {
        font-size: 16px; /* Menor para caber mais fácil */
        word-break: break-all;
        white-space: normal;
        overflow-wrap: anywhere;
        text-align: center;
    }
    .banner {
        flex-direction: column !important;
        align-items: center !important;
        justify-content: flex-start !important;
        min-height: unset !important;
        margin-top: 20px !important;
        padding-bottom: 0 !important;
    }
 
    /* Ajusta o vídeo/banner */
    .banner .video {
        width: 92vw !important;
        max-width: 340px !important;
        min-width: 0 !important;
        max-height: 200px !important;
        height: auto !important;
        margin: 0 auto 10px auto !important;
        border-radius: 18px !important;
        background: transparent !important;
        box-shadow: 0 2px 14px 0 rgba(0,0,0,0.13);
        object-fit: cover !important;
        display: block !important;
        position: relative !important;
        z-index: 2;
    }
    .banner .video video {
        width: 100% !important;
        height: 100% !important;
        object-fit: cover !important;
        border-radius: 18px !important;
        background: transparent !important;
    }
 
    /* Coloca o texto de boas-vindas logo abaixo do vídeo */
    .bannerPrincipal {
        justify-content: flex-start !important;
        align-items: center !important;
        height: auto !important;
        margin-top: 0 !important;
        margin-bottom: 0 !important;
        padding: 0 !important;
    }
    .bannerPrincipal h1 {
        margin-top: 10px !important;
        margin-bottom: 0 !important;
        text-align: center !important;
    }
    .bannerPrincipal p {
        margin-top: 10px !important;
        margin-bottom: 0 !important;
        text-align: center !important;
    }
 
    /* "HAVE FUN" centralizado embaixo do texto */
    .havefun {
        display: block !important;
        position: static !important;
        margin: 16px auto 0 auto !important;
        width: 68vw !important;
        max-width: 200px !important;
        height: auto !important;
        z-index: 1;
        animation: none !important;
        left: unset !important;
        top: unset !important;
    }
 
    /* Remove banner de desktop no mobile */
    .banner img.escondeD {
        display: none !important;
    }
    .banner img.escondeM {
        display: block !important;
        margin: 0 auto;
    }
 
    /* Remove espaço extra abaixo da banner */
    .banner + .container,
    .banner + section,
    .banner + .nuvens {
        margin-top: 0 !important;
        padding-top: 0 !important;
    }
 
    /* Remove espaço do .mt-5 na seção do banner (ajuste se necessário) */
    .mt-5 {
        margin-top: 0 !important;
    }
}
/* PC/Desktop: continua igual */
.astronauta {
    position: absolute;
    top: 980px;
    right: 0;
    z-index: 10;
}
.astronauta img {
    width: 700px;
}
 
/* Esconde o gato grande no mobile, mostra só no desktop */
@media (max-width: 800px) {
    .astronauta {
        display: none !important;
    }
    .gatoContrato {
        display: flex !important;
        justify-content: center;
        align-items: flex-start;
        width: 230px !important; /* tamanho do gato */
        margin: -80px auto 0 auto !important; /* sobe o gato e centraliza */
        position: relative !important;
        z-index: 10;
        pointer-events: none !important;
    }
    .gatoContrato img {
        width: 200px !important;
        height: auto !important;
        display: block;
    }
}
 

 
/* .divContract precisa ser relative para o gato ficar no lugar certo */
.divContract {
    position: relative !important;
    overflow: visible !important;
}
.roadmap-section {
    padding: 20px 0 20px 0;
}
.timeline {
    position: relative;
    max-width: 700px;
    margin: 0 auto;
    padding-left: 30px;
}
.timeline::before {
    content: '';
    position: absolute;
    left: 40px;
    top: 0;
    bottom: 0;
    width: 6px;
    background: linear-gradient(to bottom, #c53a59, #ffcc00 90%);
    border-radius: 6px;
}
.timeline-item {
    position: relative;
    margin-bottom: 60px;
    min-height: 120px;
    display: flex;
    align-items: flex-start;
}
.timeline-icon {
    position: absolute;
    left: 16px;
    top: 0;
    width: 48px;
    height: 48px;
    background: #fff;
    border: 4px solid #ae84e9;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #c53a59;
    z-index: 10;
    box-shadow: 0 2px 10px 0 rgba(0,0,0,0.11);
}
.timeline-content {
    background: rgba(207, 58, 89, 0.17);
    padding: 24px 32px 24px 70px;
    border-radius: 18px;
    margin-left: 40px;
    box-shadow: 0 2px 12px 0 rgba(0,0,0,0.09);
    color: #fff;
    width: 100%;
}
.timeline-content h3 {
    margin-top: 0;
    color: #ffcc00;
    font-family: 'Unbounded', sans-serif;
    font-size: 26px;
}
.timeline-content ul {
    padding-left: 18px;
    margin: 0;
}
.timeline-content li {
    font-size: 18px;
    margin-bottom: 7px;
    color: #fff;
    opacity: .85;
    list-style: disc;
}
 
@media (max-width: 700px) {
    body {
        font-size: 15px !important;
        line-height: 1.4 !important;
    }
    h1, h2, h3 {
        font-size: 26px !important;
        line-height: 1.1 !important;
        margin-bottom: 10px !important;
    }
    h1 span {
        font-size: 32px !important;
        margin-top: 0 !important;
    }
    .navbar-brand img {
        width: 68px !important;
        margin-bottom: 0 !important;
    }
    .navv {
        padding: 6px 10px !important;
        margin-top: 10px !important;
        border-radius: 24px !important;
        box-shadow: none !important;
    }
    .navbar-nav .nav-link {
        font-size: 13px !important;
        padding: 6px 10px !important;
    }
    .banner {
        margin-top: 60px !important;
        padding: 0 2vw !important;
    }
    .banner .video {
        margin-bottom: 10px !important;
        border-radius: 12px !important;
        max-width: 95vw !important;
        min-width: 0 !important;
        box-shadow: none !important;
    }
    .bannerPrincipal {
        padding: 0 !important;
        margin-top: 0 !important;
        margin-bottom: 0 !important;
    }
    .bannerPrincipal h1, .bannerPrincipal p {
        font-size: 19px !important;
        font-weight: 600 !important;
    }
    .havefun {
        max-width: 120px !important;
        margin: 10px auto 10px auto !important;
    }
    .divContract {
        padding: 10px !important;
        gap: 6px !important;
        margin-top: 12px !important;
        border-radius: 10px !important;
        background: #bb47c7 !important;
    }
    .contatroTitulo {
        padding: 10px !important;
        font-size: 13px !important;
        border-radius: 8px !important;
    }
    .contrato {
        padding: 10px !important;
        font-size: 13px !important;
        border-radius: 8px !important;
        background: #ea5bbf !important;
    }
    .gatoContrato {
        margin-bottom: -35px !important;
        margin-top: 35px !important;
        width: 110px !important;
        margin: -40px auto 0 auto !important;
    }
    .gatoContrato img {
        margin-bottom: -35px !important;
        margin-top: 35px !important;
        width: 100px !important;
    }
    /* Section "about" quase oculta */
    .about {
        min-height: 220px !important; /* Ou um valor que funcione para o mobile, tipo 240px */
        margin-top: 0 !important;
        background-size: contain !important;
        background-position: center 30px !important;
    }
    .marginTop, .mt-5, .mt-6 {
        margin-top: 32px !important;
    }
    .Tokenomics .box {
        height: auto !important;
        min-height: 80px !important;
        padding: 8px !important;
        border-radius: 10px !important;
        margin-bottom: 10px !important;
        box-shadow: none !important;
        background: #8843ad88 !important;
    }
    .porcem {
        font-size: 21px !important;
        line-height: 1 !important;
    }
    .subD {
        font-size: 13px !important;
    }
    .description, .desc {
        font-size: 12px !important;
    }
    .boxTeam {
        padding: 10px !important;
        width: 98% !important;
        margin-bottom: 18px !important;
        border-radius: 18px !important;
    }
    .boxTeam img {
        width: 100px !important;
        border-radius: 10px !important;
    }
    .name {
        font-size: 18px !important;
        margin: 8px 0 !important;
    }
    .boxCall {
        padding: 15px 8px !important;
        border-radius: 18px !important;
        font-size: 13px !important;
    }
    .feature-box {
        padding: 14px !important;
        border-radius: 10px !important;
        min-height: 100px !important;
        margin-bottom: 16px !important;
    }
    .feature-box h3 {
        font-size: 17px !important;
        margin-bottom: 7px !important;
    }
    .feature-box p {
        font-size: 13px !important;
    }
    .icon-box {
        width: 38px !important;
        height: 38px !important;
        margin-bottom: 7px !important;
    }
    .icon-box i {
        font-size: 18px !important;
    }
    .roadmap-section {
        padding: 10px 0 0 0 !important;
    }
    .timeline {
        padding-left: 0 !important;
        max-width: 98vw !important;
    }
    .timeline::before {
        left: 16px !important;
        width: 4px !important;
    }
    .timeline-item {
        margin-bottom: 18px !important;
        min-height: 60px !important;
    }
    .timeline-icon {
        width: 18px !important;
        height: 18px !important;
        left: 0 !important;
        font-size: 0.85rem !important;
        border-width: 2px !important;
    }
    .timeline-content {
        padding: 8px 7px 8px 24px !important;
        margin-left: 12px !important;
        border-radius: 8px !important;
        font-size: 13px !important;
        background: rgba(207, 58, 89, 0.11) !important;
    }
    .timeline-content h3 {
        font-size: 13px !important;
        margin-bottom: 4px !important;
    }
    .timeline-content li {
        font-size: 12px !important;
        margin-bottom: 2px !important;
    }
    /* Footer */
    footer {
        height: auto !important;
        padding: 16px 0 0 0 !important;
        background-size: contain !important;
    }
    .logoF {
        padding-top: 36px !important;
        padding-bottom: 12px !important;
    }
    .logoF img {
        width: 58px !important;
    }
    .rocketman {
        width: 58px !important;
    }
    /* Social e WP */
    .social, .wp {
        margin-top: 9px !important;
        gap: 3px !important;
        font-size: 16px !important;
        padding: 3px 8px !important;
        border-radius: 16px !important;
        box-shadow: none !important;
    }

    /* --- ROADMAP AJUSTADO MOBILE --- */
    .roadmap-zigzag {
        align-items: stretch !important;
        margin: 16px 0 8px 0 !important;
    }
    .roadmap-row {
        display: block !important;
        min-height: 0 !important;
        margin-bottom: 28px !important;
        max-width: 100vw !important;
        padding: 0 !important;
    }
    .roadmap-card {
        max-width: 95vw !important;
        min-width: 0 !important;
        margin: 0 auto 10px auto !important;
        padding: 12px 13px 10px 13px !important;
        border-radius: 14px !important;
        box-shadow: 0 2px 8px 0 rgba(0,0,0,0.10);
        font-size: 15px !important;
        text-align: left;
    }
    .roadmap-card h3 {
        font-size: 18px !important;
        margin-bottom: 6px !important;
        text-align: left !important;
    }
    .roadmap-card ul {
        padding-left: 15px !important;
    }
    .roadmap-dot {
        margin: 8px auto 0 auto !important;
        width: 22px !important;
        height: 22px !important;
        font-size: 1.1rem !important;
        border-width: 2px !important;
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
    }
    .roadmap-center {
        width: 100%;
        display: flex !important;
        flex-direction: column;
        align-items: center !important;
        justify-content: center !important;
        margin: 0 auto 0 auto !important;
        padding: 0 !important;
    }
    .roadmap-line {
        margin: 0 auto !important;
        min-height: 30px !important;
        width: 3px !important;
    }
}
.roadmap-trail {
    position: relative;
    margin: 70px 0 30px 0;
    min-height: 540px;
  }
  
  .roadmap-trail::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 4px;
    background: repeating-linear-gradient(
      to bottom,
      #ffcc00 0 14px,
      transparent 14px 28px
    );
    transform: translateX(-50%);
    z-index: 1;
  }
  
  .trail-item {
    display: flex;
    align-items: center;
    width: 100%;
    position: relative;
    margin-bottom: 70px;
    min-height: 120px;
  }
  
  .trail-item.left {
    justify-content: flex-start;
  }
  
  .trail-item.right {
    flex-direction: row-reverse;
    justify-content: flex-end;
  }
  
  .trail-card {
    background: rgba(207,58,89,0.17);
    color: #fff;
    padding: 24px 34px 18px 24px;
    border-radius: 18px;
    box-shadow: 0 2px 14px 0 rgba(0,0,0,0.12);
    max-width: 370px;
    min-width: 250px;
    z-index: 2;
    margin: 0 32px 0 0;
    transition: box-shadow 0.2s;
  }
  
  .trail-item.right .trail-card {
    margin: 0 0 0 32px;
  }
  
  .trail-card h3 {
    color: #ffcc00;
    font-family: 'Unbounded', sans-serif;
    margin-top: 0;
    margin-bottom: 12px;
    font-size: 1.28rem;
  }
  .trail-card ul {
    padding-left: 20px;
    margin: 0;
  }
  .trail-card li {
    font-size: 1rem;
    margin-bottom: 7px;
    opacity: .9;
  }
  
  .trail-dot {
    position: relative;
    z-index: 3;
    width: 48px;
    height: 48px;
    min-width: 48px;
    min-height: 48px;
    border-radius: 50%;
    background: #fff;
    border: 5px solid #ae84e9;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #c53a59;
    box-shadow: 0 2px 10px 0 rgba(0,0,0,0.10);
    left: 50%;
    transform: translateX(-50%);
  }
  
  .trail-item.left .trail-dot,
  .trail-item.right .trail-dot {
    left: 50%;
    transform: translateX(-50%);
  }
  
  /* Responsivo */
  @media (max-width: 900px) {
    .roadmap-trail {
      margin: 30px 0 10px 0;
    }
    .roadmap-trail::before {
      left: 20px;
      width: 3px;
      transform: none;
    }
    .trail-item,
    .trail-item.right {
      flex-direction: row !important;
      justify-content: flex-start !important;
      margin-bottom: 38px;
    }
    .trail-dot {
      left: 0;
      transform: none;
      margin-right: 12px;
      width: 30px;
      height: 30px;
      min-width: 30px;
      min-height: 30px;
      font-size: 1.05rem;
    }
    .trail-card {
      margin: 0 0 0 10px !important;
      max-width: 96vw;
      min-width: 0;
      padding: 11px 7px 10px 10px;
      font-size: 13px;
    }
  }
  
  /* Deixa o texto centralizado na bolinha, sempre */
  .trail-dot span {
    display: block;
    width: 100%;
    text-align: center;
    line-height: 1;
  }
  .roadmap-zigzag {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 80px 0 60px 0;
    position: relative;
  }
  
  .roadmap-row {
    display: grid;
    grid-template-columns: 1fr 60px 1fr;
    align-items: center;
    margin-bottom: 0px;
    min-height: 160px;
    width: 100%;
    max-width: 900px;
    position: relative;
  }
  
  .roadmap-card {
    background: rgba(207,58,89,0.17);
    color: #fff;
    padding: 22px 32px 16px 26px;
    border-radius: 16px;
    min-height: 120px;
    min-width: 230px;
    max-width: 340px;
    box-shadow: 0 2px 14px 0 rgba(0,0,0,0.10);
    z-index: 2;
    font-family: 'Sora', sans-serif;
    font-size: 1rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .roadmap-card:not(.left):not(.right) {
    background: none;
    box-shadow: none;
    min-width: 0;
    min-height: 0;
    padding: 0;
  }
  .roadmap-card.right:empty,
  .roadmap-card.left:empty {
    background: none;
    box-shadow: none;
    min-width: 0;
    min-height: 0;
    padding: 0;
  }
  
  .roadmap-card h3 {
    color: #ffcc00;
    margin: 0 0 10px 0;
    font-size: 1.3rem;
    font-family: 'Unbounded', sans-serif;
  }
  .roadmap-card ul {
    padding-left: 20px;
    margin: 0;
  }
  .roadmap-card li {
    font-size: 1rem;
    margin-bottom: 7px;
    opacity: .92;
  }
  
  .roadmap-center {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    height: 100%;
    position: relative;
  }
  
  .roadmap-dot {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #fff;
    border: 4px solid #ae84e9;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: #c53a59;
    z-index: 4;
    margin: 0 0 0 0;
    box-shadow: 0 2px 10px 0 rgba(0,0,0,0.11);
  }
  .roadmap-line {
    width: 6px;
    flex: 1;
    min-height: 65px;
    background: repeating-linear-gradient(
      to bottom,
      #ffcc00 0 14px,
      transparent 14px 26px
    );
    margin: 0 auto;
    border-radius: 6px;
  }
  
  .roadmap-row:last-child .roadmap-line {
    display: none;
  }
  
  /* Responsivo para mobile */
  @media (max-width: 900px) {
    .roadmap-zigzag { margin: 35px 0 15px 0; }
    .roadmap-row {
      grid-template-columns: 18px auto 1fr;
      min-height: 100px;
      max-width: 98vw;
    }
    .roadmap-card {
      font-size: 0.97rem;
      min-width: 0;
      max-width: 92vw;
      padding: 10px 10px 8px 8px;
    }
    .roadmap-center {
        display: none !important;
    }
    .roadmap-dot {
      width: 22px;
      height: 22px;
      font-size: 1.08rem;
      border-width: 2px;
    }
    .roadmap-line {
      width: 3.3px;
      min-height: 38px;
    }
  }
  
  /* Deixa o roadmap bem centralizado na tela grande */
  @media (min-width:1200px) {
    .roadmap-zigzag { max-width: 1100px; margin: 100px auto 80px auto; }
  }
  .toast-copied {
    display: none;
    position: fixed;
    left: 50%;
    top: 22%;
    transform: translate(-50%, -50%);
    background: rgba(80, 22, 94, 0.91);
    color: #fff;
    padding: 14px 32px 14px 24px;
    border-radius: 22px;
    font-family: 'Unbounded', sans-serif;
    font-size: 1.1rem;
    box-shadow: 0 4px 18px 0 rgba(120,30,160,0.15);
    z-index: 99;
    opacity: 0;
    transition: opacity 0.36s;
    align-items: center;
    gap: 12px;
}
.toast-copied__icon {
    font-size: 1.3em;
    animation: toast-bounce 1.1s;
}
@keyframes toast-bounce {
    0% { transform: scale(1); }
    20% { transform: scale(1.24); }
    40% { transform: scale(0.95);}
    60% { transform: scale(1.13);}
    100% { transform: scale(1);}
}
.toast-copied {
    display: none;
    /* ...restante do estilo... */
}
.toast-copied.show {
    display: flex;
    opacity: 1;
}
