
@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300&display=swap');

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Outfit', sans-serif;
}

body{
    height: 100vh;
    background-color: #131b23;
}

html {
    overflow-x: hidden; /* Remove o scroll horizontal */
    overflow-y: scroll; /* Garante que o scroll vertical esteja presente */
}

html::-webkit-scrollbar {
    width: 12px; /* Largura do scrollbar */
}

html::-webkit-scrollbar-track {
    background: #202020; /* Cor da trilha do scrollbar */
}

html::-webkit-scrollbar-thumb {
    background-color: #FF0077; /* Cor do polegar do scrollbar */
    border-radius: 20px; /* Borda arredondada do polegar */
    border: 3px solid #202020; /* Borda do polegar */
}

        /* Estilo para a grade de quadros */
        .grid-container {
            display: grid;
            grid-template-columns: repeat(3, 1fr); 
            gap: 30px; /* Espaçamento entre os quadros */
            padding: 120px; /* Espaçamento interno */
            box-sizing: border-box;
            margin: 65px auto; /* Centralizar a grade horizontalmente */
            width: 90%;
            margin-top:-60px;
            margin-left:100px;
        }

        /* Estilo para cada quadro */
        .grid-item {
            padding: 15px; /* Espaçamento interno */
            text-align: center; /* Centralizar conteúdo */
        }

        /* Estilo para as imagens */
        .grid-item img {
            max-width: 90%; /* Imagens não ultrapassam a largura do quadro */
            height: auto; /* Mantém a proporção da imagem */
            border-radius: 20px;
        }


        * {
            margin: 0;
            padding: 0;
          }
          
          a {
            color: #ff0000;
            text-decoration: none;
            transition: 0.5s;
          }
          
          a:hover {
            opacity: 0.7;
          }
          
          .logo {
            font-size: 24px;
            text-transform: uppercase;
            letter-spacing: 4px;
          }
          
          nav {
            display: flex;
            justify-content: space-around;
            align-items: center;
            font-family: system-ui, -apple-system, Helvetica, Arial, sans-serif;
            background: #000000;
            height: 10vh;
          }
          
          main {
            background: url("#") no-repeat center center;
            background-size: cover;
            height: 10vh;
           
          }
          
          .nav-list {
            list-style: none;
            display: flex;
            z-index: 2;
          }
          
          .nav-list li {
            letter-spacing: 3px;
            margin-left: 32px;
                box-shadow: #ff0054;
           
          }
          
          .mobile-menu {
            display: none;
            cursor: pointer;
        
            
          }
          
          .mobile-menu div {
            width: 32px;
            height: 2px;
            background: #fff;
            margin: 8px;
            transition: 0.3s;
            
         
          }
          
          @media (max-width: 999px) {
            body {
              overflow-x: hidden;
            }
            .nav-list {
              position: absolute;
              top: 8vh;
              right: 0;
              width: 50vw;
              height: 92vh;
              background: #0c0c0c;
              flex-direction: column;
              align-items: center;
              justify-content: space-around;
              transform: translateX(100%);
              transition: transform 0.3s ease-in;
            }
            .nav-list li {
              margin-left: 0;
              opacity: 0;
            }
            .mobile-menu {
              display: block;
            }
          }
          
          .nav-list.active {
            transform: translateX(0);
          }
          
          @keyframes navLinkFade {
            from {
              opacity: 0;
              transform: translateX(50px);
            }
            to {
              opacity: 1;
              transform: translateX(0);
            }
          }
          
          .mobile-menu.active .line1 {
            transform: rotate(-45deg) translate(-8px, 8px);
          }
          
          .mobile-menu.active .line2 {
            opacity: 0;
          }
          
          .mobile-menu.active .line3 {
            transform: rotate(45deg) translate(-5px, -7px);
          }
        

main {
    padding: 20px;
    position: fixed;
    z-index: 1;
    padding-left: calc(82px + 20px);
}

#sidebar {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background-color: #ffffff;
    height: 100vh;
    border-radius: 0px 18px 18px 0px;
    position: relative;
    transition: all .5s;
    min-width: 82px;
    z-index: 2;
}

#sidebar_content {
    padding: 12px;
}

#user {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 24px;
}

#user_avatar {
    width: 50px;
    height: 50px;
    object-fit: cover;
    border-radius: 20px;
}

#user_infos {
    display: flex;
    flex-direction: column;
}

#user_infos span:last-child {
    color: #6b6b6b;
    font-size: 12px;
}

#side_items {
    display: flex;
    flex-direction: column;
    gap: 8px;
    list-style: none;
}

.side-item {
    border-radius: 8px;
    padding: 14px;
    cursor: pointer;
}

.side-item.active {
    background-color: #4f46e5;
}

.side-item:hover:not(.active),
#logout_btn:hover {
    background-color: #e3e9f7;
}

.side-item a {
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0a0a0a;
}

.side-item.active a {
    color: #e3e9f7;
}

.side-item a i {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
}

#logout {
    border-top: 1px solid #e3e9f7;
    padding: 12px;
}

#logout_btn {
    border: none;
    padding: 12px;
    font-size: 14px;
    display: flex;
    gap: 20px;
    align-items: center;
    border-radius: 8px;
    text-align: start;
    cursor: pointer;
    background-color: transparent;
}

#open_btn {
    position: absolute;
    top: 30px;
    right: -10px;
    background-color: #4f46e5;
    color: #e3e9f7;
    border-radius: 100%;
    width: 20px;
    height: 20px;
    border: none;
    cursor: pointer;
}

#open_btn_icon {
    transition: transform .3s ease;
}

.open-sidebar #open_btn_icon {
    transform: rotate(180deg);
}

.item-description {
    width: 0px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    font-size: 14px;
    transition: width .6s;
    height: 0px;
}

#sidebar.open-sidebar {
    min-width: 15%;
}

#sidebar.open-sidebar .item-description {
    width: 150px;
    height: auto;
}

#sidebar.open-sidebar .side-item a {
    justify-content: flex-start;
    gap: 14px;
}






body {
    font-family: 'Outfit', sans-serif;
    margin: 0;
    padding: 0;
    background-image: url('Leonardo_Phoenix_A_serene_and_majestic_mountain_landscape_with_3.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-position: center center;
    background-color: #f4f4f4;
}


        
        @import url('https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600&display=swap');



      
     
        .footer {
            background-color: #1a1a1a; /* Combina com o fundo escuro da página */
            color: #ffd700; /* Dourado para o texto */
            padding: 40px 20px;
            font-family: 'Outfit', sans-serif;
        }
        
        .footer-logo h3 {
            color: #ff4c4c; /* Tom quente de vermelho */
            font-family: 'Cinzel', sans-serif;
            font-size: 26px;
            margin-bottom: 20px;
        }
        
        .footer-content {
            display: flex;
            justify-content: space-between;
            flex-wrap: wrap;
        }
        
        .footer-section {
            flex-basis: 30%;
            margin-bottom: 20px;
        }
        
        .footer-section h4 {
            color: #ff0077;
            font-size: 20px;
            margin-bottom: 15px;
        }
        
        .footer-section p, .footer-section ul, .footer-section a {
            color: #f0e1d1;
            line-height: 1.8;
            text-decoration: none;
        }
        
        .footer-section a:hover {
            color: #00ffc8; /* Cor do link combina com os elementos já existentes */ /* Destaque ao passar o mouse */
            transition: color 0.3s ease;
        }
        
        .footer-bottom {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid #ff7b7b;
            margin-top: 20px;
        }
        
        .social-icons a {
            margin-right: 15px;
            font-size: 20px;
            color: #ff7b7b;
        }
        
        .social-icons a:hover {
            color: #ff4c4c;
        }
        
        @media (max-width: 768px) {
            .footer-content {
                flex-direction: column;
                text-align: center;
            }
        
            .footer-section {
                flex-basis: 100%;
            }
        
            .social-icons a {
                margin-right: 10px;
            }
        }
        

        /* Smartphones em retrato (telas menores) */
@media (max-width: 600px) {
    .grid-container {
        grid-template-columns: repeat(2, 2fr); /* Uma coluna */
        padding: 20px; /* Reduzir espaçamento interno */
        margin-left: 10px;
        margin-top: 60px;
    }

    .grid-item img {
        max-width: 100%; /* Garantir que as imagens ocupem 100% da largura */
    }

    .menu-lateral {
        width: 40px; /* Reduzir a largura da barra lateral em telas pequenas */
    }

    .bottom-header nav ul li a {
        padding: 10px 20px; /* Reduzir o espaçamento dos links do menu */
        font-size: 14px; /* Diminuir tamanho da fonte */
    }

    /* Título e redes sociais no footer */
    footer h3 {
        font-size: 18px; /* Reduzir o tamanho da fonte no footer */
    }

    footer ul li i {
        font-size: 18px; /* Ajustar ícones sociais para telas menores */
    }
}
