/* assets/css/style.css */

body {
    display: flex;
    min-height: 100vh;
    flex-direction: column;
    overflow-x: hidden;
}

main {
    flex: 1;
}

.sidebar {
    width: 250px;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    background-color: #f8f9fa;
    padding-top: 60px;
    transition: transform 0.3s ease-in-out;
    z-index: 1000;
}

.sidebar.hidden {
    transform: translateX(-100%);
}

.content {
    margin-left: 250px;
    padding: 20px;
}


.btn-flex {
    display: flex;
    flex-direction: column;
    justify-content: center; /* Centraliza verticalmente */
    align-items: center; /* Centraliza horizontalmente */
    height: 100px; /* Define uma altura fixa para todos os botões */
}

#content {
    margin-left: 250px;
    padding: 20px;
    transition: margin-left 0.3s ease;
}

#content.full-width {
    margin-left: 0;
}

@media (max-width: 768px) {
    .sidebar {
        width: 220px;
        transform: translateX(-100%); /* Esconder o menu por padrão */
    }

    /* Quando ativo, exibir o menu */
    .sidebar.active {
        transform: translateX(0);
    }
}

/* Estilo para o Menu Lateral */
.sidebar {
    width: 250px;
    height: 100vh;
    position: fixed;
    top: 0;
    left: -250px;
    background-color: #f8f9fa;
    transition: all 0.3s;
    box-shadow: 2px 0 5px rgba(0, 0, 0, 0.1);
    z-index: 1000;
}
.sidebar.active {
    left: 0;
}
.content {
    transition: margin-left 0.3s;
}
.content.active {
    margin-left: 250px;
}

#login-button {
    transition: top 0.3s ease-in-out;
    position: fixed;
    top: 15px;
    right: 15px;
    z-index: 1100;
  }

/* Botão Menu sempre visível */
#menu-toggle {
    z-index: 1100;
    position: fixed;
    top: 15px;
    left: 15px;
    transition: top 0.3s ease-in-out;
}

/* Fundo escuro ao abrir o Menu Lateral */
.overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
}
.overlay.active {
    display: block;
}

/* Responsividade */
@media (max-width: 768px) {
    .sidebar {
        width: 200px;
        left: -200px;
    }
    .sidebar.active {
        left: 0;
    }
    .content.active {
        margin-left: 200px;
    }
}

/* Aplicamos os estilos apenas se a classe .curriculos-page estiver presente */
.curriculos-page .container {
    max-width: 700px;
    margin: auto;
}

/* Estilização dos cards para manter o mesmo tamanho e efeito */
.curriculos-page .curriculo-card {
    transition: transform 0.2s;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}
.curriculos-page .curriculo-card:hover {
    transform: scale(1.05);
}

/* Títulos centralizados e alinhados */
.curriculos-page h1 {
    font-size: 2rem;
    margin-bottom: 20px;
}

/* Garantindo espaçamento adequado */
.curriculos-page .btn {
    padding: 10px;
    font-size: 1.1rem;
}

/* Estilização específica para a página Planejamento Bimestral */
.planejamento-page .container {
    max-width: 700px;
    margin: auto;
}

/* Estilização dos cards */
.planejamento-page .card-hover {
    transition: transform 0.2s;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}
.planejamento-page .card-hover:hover {
    transform: scale(1.05);
}

/* Títulos e espaçamento */
.planejamento-page h1 {
    font-size: 2rem;
    margin-bottom: 20px;
}

/* Botões */
.planejamento-page .btn {
    padding: 10px;
    font-size: 1.1rem;
}

.navbar {
    border-bottom: none !important;
    box-shadow: none !important; /* remove sombra */
}


