/*----------------------------------------------------------*/
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
}

.wrapper-page-gpt {
    display: flex;
    flex-direction: row;
    height: 100vh;
    overflow-y: auto;
    position: relative; /* Adicionado para referência do menu */
}

.menu-about {
    width: 285px;
    background-color: #eeeeee;
    color: rgb(77, 18, 18);
    padding-bottom: 50px;
    padding-left: 0px;
    padding-right: 0px;
    margin: 0px auto;
    position: relative;
}

.menu-header {
    height: 180px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: flex-end; /* Alinha a imagem na parte inferior */
}

.menu-header-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #022946;
    clip-path: polygon(0% 0%, 100% 0%, 100% 85%, 50% 100%, 0 85%);
    z-index: 1;
}

.profile-pic {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border: 6px solid #fff;
    position: relative;
    bottom: -25px; 
    z-index: 2; 
    background-color: #555;
}

.content {
    flex: 1;
    padding: 20px;
}

.mobile-header {
    display: none;
    background-color: #f1f2f7;
    color: #2553b8;
    padding: 15px;
    text-align: left;
    cursor: pointer;
}

/* Responsivo */
@media (max-width: 991px) {
    .wrapper-page-gpt{
        flex-direction: column;
    }

    .menu-about {
        position: absolute;
        top: 60px;
        left: -285px;
        width: 285px;
        background-color: #f1f2f7;
        transition: left 0.3s ease-in-out;
        z-index: 1029; /* Adicionado para garantir que fique acima de outros elementos */
    }

    .menu-about.show {
        left: 0;
    }

    .mobile-header {
        display: block;
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
    }
}
/*----------------------------------------------------------*/


.wrapper-page {
    position: relative;
}

.header {
    width: 285px;
    margin-left: 0;
    background-color: rgb(247, 249, 252);
    overflow-x: hidden;
    overflow-y: hidden;
    transition: transform 0.3s ease-in-out;
}

.header .header-content {
    position: relative;
    min-height: 100%;
    padding-bottom: 50px;
    padding-left: 0px;
    padding-right: 0px;
    margin: 0px auto;
}

.profile-picture-block {
    position: relative;
    background-color: rgb(175 235 242);
    height: 180px;
}

.profile-picture-block::before, 
.profile-picture-block::after {
    content: "";
    position: absolute;
    left: -25%;
    bottom: -62%;
    width: 100%;
    height: 70%;
    transform: rotate(15deg);
    z-index: 3;
    background: rgb(247, 249, 252);
}

.profile-picture-block::after {
    left: auto;
    right: -25%;
    transform: rotate(-15deg);
}

.my-photo {
    width: 100px;
    height: 100px;
    text-align: center;
    position: absolute;
    bottom: -25px;
    left: 30%;
    z-index: 999;
    background-color: rgb(176, 236, 243);
    overflow: hidden;
    border-radius: 100%;
    padding: 8px;
}

.my-photo img {
    height: 100%;
    border-radius: 100%;
}

.site-title-block {
    position: relative;
    z-index: 6;
    text-align: center;
    margin: 40px 20px 10px;
}

.site-title {
    font-size: 22px;
    font-weight: 600;
    font-style: normal;
    line-height: 1.2em;
    color: rgb(51, 51, 51);
    letter-spacing: 1px;
    font-family: 'Ubuntu';
    margin: 20px 0px 0px;
}

span.typed {
    font-family: 'Ubuntu';
    font-weight: 400;
}

.typed {
    white-space: pre;
}

.site-nav {
    display: block;
    padding: 25px 0 40px;
    width: 100%;
    z-index: 999;
    position: relative;
}

.header-main-menu {
    display: block;
    padding: 0;
    margin: 0;
}

.header-main-menu li {
    display: block;
    position: relative;
    padding: 0;
    padding-left: 30px;
    list-style: none;
}

.header-main-menu li a:hover, 
.header-main-menu li a.active {
    background-color: #AFC6F2;
    color: inherit;
}

.header-main-menu li a {
    font-size: 14px;
    font-weight: 500;
    font-style: normal;
    line-height: 1.85em;
    color: #333333;
    letter-spacing: 0px;
    display: block;
    position: relative;
    padding: 10px 20px;
    position: relative;
    text-decoration: none;
    border-radius: 30px 0 0 30px;
    margin-bottom: 8px;
    outline: none;
}

.header-main-menu li a i {
    background-color: #2553b8;
    color: #fff;
    border-radius: 100%;
    width: 30px;
    height: 30px;
    text-align: center;
    line-height: 30px;
    margin-right: 5px;
}

.responsive-header {
    display: none;
}

img.responsive-logo {
    max-width: 100%;
}

.sub-page {
    display: none;
}

/*----------------------------------------------------------------------------------------*/


@media only screen and (max-width: 991px) {
    
    .header {
        /*position: absolute;
        top: 0;
        left: 0;*/
        width: 285px;
        height: auto; /* Permite que a altura se ajuste conforme o conteúdo */
        box-shadow: rgba(35, 34, 34, 0.19) 5px 0px 5px -5px;
        transform: translateX(-100%); /* Mantém oculto inicialmente */
        transition: transform 0.3s ease-in-out;
    }

    .header.active {
        transform: translateX(0); /* Exibe o menu ao adicionar a classe */
    }

    .header .header-content {
        padding-top: 0px;
        position: absolute;
        top: 0px;
        right: 0px;
        left: 0px;
    }

    .profile-picture-block {
        height: 90px;
    }

    .my-photo {
        left: 36%;
        width: 80px;
        height: 80px;
    }

    .site-nav {
        padding: 10px 0 40px;
    }

    .header-main-menu {
        float: none;
    }

    .header-main-menu li {
        text-align: left;
        float: none;
        width: 100%;
        margin: 0;
    }

    .header-main-menu li a {
        margin-bottom: 5px;
    }

    .responsive-header {
        height: 55px;
        /*position: fixed;*/
        background: #fff;
        /*z-index: 9999;*/
        width: 100%;
        padding: 12px 15px;
        display: block;
        color: #0e79ed;
        box-shadow: 0 3px 6px 3px rgba(0, 0, 0, .06);
    }

    .responsive-header-name {
        font-size: 16px;
        font-weight: 500;
    }

    img.responsive-logo {
        height: 30px;
        border-radius: 100%;
        margin-right: 5px;
        border: 3px solid #afc6f2;
    }

    .mobile-header .responsive-icon {
        position: absolute;
        right: 15px;
        top: 7px;
        font-size: 30px;
    }
}