@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');


* {
    box-sizing: border-box;
    user-select: none;
}


body {
    background: radial-gradient(38.15% 56.29% at 21.38% 84.15%, rgba(0, 111, 255, 0.20) 0%, rgba(0, 111, 255, 0.00) 100%), radial-gradient(42.77% 40.06% at 74.25% 31.92%, rgba(0, 111, 255, 0.20) 0%, rgba(0, 111, 255, 0.00) 100%), radial-gradient(45.1% 53.68% at 78.5% 82.91%, rgba(241, 72, 0, 0.20) 0%, rgba(241, 72, 0, 0.00) 100%), radial-gradient(46.86% 44.3% at 22.83% 20.23%, rgba(241, 72, 0, 0.20) 0%, rgba(241, 72, 0, 0.00) 100%), linear-gradient(180deg, rgba(255, 255, 255, 0.10) 0%, rgba(0, 111, 255, 0.01) 100%), #FFF;
    font-size: 16px;
    color: #fff;
    font-family: "Inter", sans-serif;
    font-optical-sizing: auto;
    overflow-x: hidden;
    accent-color: #FF6600;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

body h1,
body h2,
body h3,
body h4 {
    font-family: "Inter", sans-serif;
    line-height: 1;
}

.container {
    max-width: 366px;
    margin: 0 auto
}

.flex {
    clear: both;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-evenly
}

.center {
    justify-content: center
}

.between {
    justify-content: space-between
}

.gap {
    gap: 30px;
}

.wrap {
    flex-wrap: wrap;
}


footer p {
    color: #000;
    font-size: 0.7rem;
    text-align: center;
    text-transform: uppercase;
    padding: 20px 0;
}

main{
    padding-top: 25px;
}



main .container{
    background: url(../img/bg-topo.webp) center top no-repeat;
    background-size: cover;
    border-radius: 25px;
}

main a{
    padding: 20px 20px 0;
}

main .foto{
    flex-shrink: 0;
    max-width: 150px;
}

h1{
    color: #fff;
    font-weight: 500;
    font-size: 1.3rem;
    margin-bottom: 10px;
}

h1 strong{
    color: #FF5F00;
}

@keyframes animacta{
    0%{
        scale: 1;
    }

    50%{
        scale: 1.02;
    }
}

.cta{
    color: #fff;
    background: #FF5F00;
    padding: 5px 10px;
    border-radius: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
    font-size: 0.9rem;
    width: fit-content;
    filter: drop-shadow(0px 5px 8px rgba(255, 89, 0, 0.7));
    transition: all 0.3s;
    animation: animacta 0.8s infinite;
}

.cta:hover{
    color: #fff;
}


.cta::after{
    content: url(../img/setinha-cta.webp);
}


#redessociais{
    text-align: center;
    padding-top: 20px;
    width: 100%;
}

h2{
    color: #2B2B2B;
    font-weight: 500;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

h2::before, h2::after{
    content: "";
    width: 6px;
    aspect-ratio: 1;
    background: #006FFF;
    border-radius: 50%;
}

ul{
    margin-bottom: 20px;
    
}

li{
    background: #fff;
    border: solid 2px #000;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding: 10px;
    border-radius: 15px;
    margin-bottom: 10px;
    gap: 8px;
    
    
}

li a, li a:hover {
    color: #000;
    line-height: 1;
    font-weight: 500;
}

li::after{
    content: url(../img/seta-laranja.webp);
    margin-left: auto;
    display: block;
    line-height: 1;
    translate: -10px 0;
    transition: all 0.3s;
}

li:hover:after{
    translate: 0 0;
}

li:nth-child(1):before{
    content: url(../img/ico-instagram.webp);
    line-height: 1;
}

li:nth-child(2):before{
    content: url(../img/ico-facebook.webp);
    line-height: 1;
}

li:nth-child(3):before{
    content: url(../img/ico-discord.webp);
    line-height: 1;
}

li:nth-child(4):before{
    content: url(../img/ico-tiktok.webp);
    line-height: 1;
}

li:nth-child(5):before{
    content: url(../img/ico-youtube.webp);
    line-height: 1;
}

li:nth-child(6):before{
    content: url(../img/ico-x.webp);
    line-height: 1;
}


