:root {
    --primary-color: #003366;
    --secondary-color: #66CCFF;
    --background-color: #FFFFFF;
    --neutral-color: #CCCCCC;
    --text-color: #000000;
}

body {
    background-color: var(--background-color);
    color: var(--text-color);
    margin: 0;
    padding: 0;
    font-family: 'Figtree', sans-serif;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

header {
    background-color: #000;
    color: #fff;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
}

header .logo_mobile {
    height: 200px;
    margin-right: auto;
}

header nav {
    display: none; /* Oculta os links de navegação na barra superior */
}

header .auth-buttons {
    display: flex;
    align-items: center;
}

header .auth-buttons .profile-icon {
    cursor: pointer;
    margin-right: 1rem;
}

header .hamburger {
    display: block;
    cursor: pointer;
    z-index: 20; /* Garante que o menu hambúrguer fique acima do conteúdo principal */
}

header .hamburger div {
    width: 25px;
    height: 3px;
    background-color: #333;
    margin: 5px 0;
    transition: 0.4s;
}

/* .mobile-nav {
    display: none;
    flex-direction: column;
    align-items: center;
    background-color: #fff;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    box-shadow: 0 8px 16px rgba(0,0,0,0.2);
    z-index: 15; 
    padding-top: 60px; 
} */

.mobile-nav {
    position: fixed;
    top: 0; /* Adicione esta linha */
    left: 0;
    width: 100%;
    height: 100%;
    background-color: black;
    color: white;
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 1000;
}

.mobile-nav.show {
    display: flex;
}

.mobile-nav .menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 1rem;
    background-color: #000;
    color: #fff;
    font-size: 1.5rem;
}

.mobile-nav .menu-header .close-menu {
    cursor: pointer;
}

.mobile-nav hr {
    width: 100%;
    border: none;
    border-top: 1px solid #ccc;
    margin: 0;
}

.mobile-nav a {
    padding: 1rem;
    text-decoration: none;
    color: #fff;
    width: 100%;
    text-align: center;
}

/* .profile-menu {
    display: none;
    flex-direction: column;
    align-items: center;
    background-color: #fff;
    position: absolute;
    top: 60px;
    right: 0;
    width: 150px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.2);
    z-index: 15; 
}

.profile-menu.show {
    display: flex;
}

.profile-menu a {
    padding: 1rem;
    text-decoration: none;
    color: #333 !important;
    width: 100%;
    text-align: center;
} */

/* Estilos para o menu de perfil */
.profile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: black;
    color: white;
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 1000;
}

.profile-menu.show {
    display: flex;
}

.profile-menu .menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 1rem;
    background-color: #000;
    color: #fff;
    font-size: 1.5rem;
}

.profile-menu .menu-header .close-menu {
    cursor: pointer;
}

.profile-menu hr {
    width: 100%;
    border: none;
    border-top: 1px solid #ccc;
    margin: 0;
}

.profile-menu a {
    padding: 1rem;
    text-decoration: none;
    color: #fff;
    width: 100%;
    text-align: center;
}


main {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    position: relative;
    padding-top: 100px; 
    /* margin-bottom: 160px; */

    /* overflow-x: scroll; */
    
}

#background-video {
    width: 100%;
    height: calc(100vh - 200px);
    object-fit: cover;
}


#gradient-square {
    position: relative;
    /* top: 20px; */
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, #BF1A54, #4D2468);
    border-radius: 20px;
    margin-top: 50px;
    transform: rotate(45deg);
    bottom:-80px;
}

#community-text {
    top: -100px;
    text-align: center;
    text-decoration-color: #CCCCCC;
    color: #CCCCCC;
    font-size: 20px;
    position: relative;
    font-family: 'Trebuchet MS', sans-serif;
}

footer {
    background-color: #000;
    color: #fff;
    text-align: center;
    padding: 20px 0;
    margin-top: auto; /* Garante que o rodapé fique colado ao fundo */
    width: 100%;
    /* position: relative; */
    /* position:absolute; */
    bottom:0px;
    left:0;
}

footer .social-icons a {
    color: #fff;
    margin: 0 10px;
    font-size: 24px;
    text-decoration: none;
}