*{
    margin: 0;
    padding: 0;
    scroll-behavior: smooth;
    /*outline: 1px solid red;*/
}
:root {
    --fundopreto: #010101;
    --texto: #F5F5F5;
    --rosaclaro: rgb(253, 8, 253); 
    --magenta: rgb(153, 12, 152); 
}
body{
    line-height:1.6;
    min-height: 100vh;
    font-family: 'Montserrat', sans-serif;
    background-color: var(--fundopreto);
    color: var(--texto);
    display: grid;
    grid-template-rows: auto 1fr auto;
    grid-template-areas: 
    "nav nav nav"
    "main main main"
    "footer footer footer";
}
.scroll-indicator {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    color: rgba(255, 255, 255, 0.9);
    width: 40px;
    height: 35px;
    background-color: rgba(0, 0, 0, 0.7);
    border-radius: 50%;
    display: none;
    align-items: center;
    justify-content: center;
    line-height: 1;
    text-align: center;
    font-size: 1.1rem;
    padding-top: 4px;
    animation: bounce 1.5s infinite;
    transition: opacity 0.3s ease;
}
@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(8px); }
}
.zap, .insta {
    position: fixed;
    bottom: 30px;
    right: 50px;
    z-index: 2;
    width: 70px;
    height: 70px;
    display: flex;
    transition: background-color 0.3s ease, transform 0.3s ease, opacity 0.3s ease;
}
.insta {
    bottom: 120px;
}
.zap:hover, .insta:hover{
    transform: translateY(-10px);
}

/* NAVBAR */

nav{
    top: 0;
    position: sticky;
    z-index: 999;   
    padding-top: 5px;
    grid-area: nav;
    background-color: var(--fundopreto);
}
nav ul{
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: center;
}
nav li{
    height: 60px;
    align-items: center;
    display: flex;
}
nav a{
    height: 100%;
    padding: 0 15px;
    display: flex;
    align-items: center;
    text-decoration: none;
    text-transform: uppercase;
    font-size: clamp(0.85rem, 1.2vw, 1.6rem);
    -webkit-tap-highlight-color: transparent;
    color: inherit;
}
.logo{
    width: 85px;
    height: auto;
    display: block;
    margin-bottom: 10px;
}
nav .logo{
    padding: 0 30px;
}
nav li:not(.experimental) a{
    position: relative;
    overflow: hidden;
    z-index: 1;
}
nav li:not(.experimental) a::before{
    content:'';
    position:absolute;
    bottom: 0;
    left: 0;
    height: 0%;
    width: 100%;
    background-color: #fc07fc50;
    transition: height 0.3s ease;
    z-index: -1;
}
nav li:not(.experimental) a:hover::before{
    height: 100%;
}
nav .experimental{
    background-color: var(--magenta);
    box-shadow: inset 0 -5px 10px rgba(0, 0, 0, 0.329);
    border-radius: 30px;
    margin-left: 10px;
    box-sizing: border-box;
    font-weight: 600;
    width: fit-content;
    transition: background-color 0.3s ease, transform 0.3s ease;
}
nav .experimental:hover{
    color: black;
    transform: scale(1.05);
}
.navmenu{
    display: none;
}
.mobile{
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    width: 250px;
    max-width: 250px;
    background-color: var(--fundopreto);
    z-index: 999;
    display: flex;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
}
.mobile.aberta{
    transform: translateX(0);
}
.mobile .logo{
    margin: 0;
    padding: 0;
}
.mobile li:not(.experimental){
    width: 100%;
}
.mobile a:not(.experimental){
    width: 100%;
}
.mobile .experimental{
    display: flex;
    justify-content: center;
    width: auto;
    margin: 10px;
}
.mobile li:not(.experimental) a:active {
    background-color: var(--magenta);
}
.mobile svg{
    margin-left: 10px;
}

/* FOOTER */
 footer{
    grid-area: footer;
    border-top: 1px var(--magenta) solid;
    background-color: #000;
    text-align: center;
    padding: 1rem;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
 }
.footer-h{
    text-align: left;
    color: var(--magenta);
    font-weight: bold;
    font-size: 1.2rem;
 }
 .logo-footer{
    text-align: left;
    color: rgba(255, 255, 255, 0.356);
    font-size: 1rem;
 }
.end-footer{
    text-align: left;
    color: var(--texto);
    font-size: 1rem;
 }
.end-footer ul{
    list-style: square;
}
li::marker{
    color: var(--magenta);   
}
.redes-footer ul{
    margin-top: 10px;
    list-style: none;
    display: flex;
    gap: 10px;
}
.redes-footer li{
    padding: 0 5px 0 0;
}
.direitos-footer{
    display: grid;
    text-align: center;
    color: rgba(255, 255, 255, 0.356);
    font-size: 0.9rem;
    grid-template-columns: auto auto;
    grid-column: 1 / -1;
    border-top: 1px rgba(255, 255, 255, 0.356) solid;
    margin-top: 1.5rem;
}
.direitos-footer a{
    color: var(--magenta);
    text-decoration: none;
    display: inline-block;
    position:relative;
    text-align: center;
}

@media(max-width: 765px){
    .redes-footer ul, .redes-footer .footer-h{
    margin-left: 10px;
    }
    .scroll-indicator{
        display: flex;
    }
}
    
 @media(max-width: 710px){
    .esconderMobile{
        display: none;
    }
    .navmenu{
        display: flex;
    }
      nav ul:not(.mobile){
        justify-content: space-between;
        margin: 0 20px 0 0;
    }
    footer{
        grid-template-columns: 1fr 1fr;
    }
    .redes-footer{
        margin-top: 10px;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
    }
    .logo-footer {
        grid-column: 1;
        grid-row: 1;
    }
    .redes-footer ul, .redes-footer .footer-h{
        margin: 0;
    }
        .zap, .insta{
        width: 50px;
        height: 50px;
        left: 90%;
    }
    .insta{
        bottom: 90px;
    }
}

@media (max-width: 480px) {
    footer {
        padding: 2rem 1rem;
    }
    .footer-h {
        margin-bottom: 0.5rem;
    }
    .logo-footer {
        margin-bottom: 1.5rem;
    }
    .end-footer {
        padding-left: 10px;
    }
    .end-footer ul {
        padding-left: 15px;
    }
    .direitos-footer {
        margin-top: 1rem;
        padding-top: 1rem;
    }
    .zap, .insta{
        left: 85%;
    }
}