/* Estilos específicos para os exemplos e screenshots na página de ajuda */

.screenshot-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin: 20px 0;
}

.screenshot-box {
    flex: 1;
    min-width: 300px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    padding: 15px;
    transition: all 0.3s ease;
}

.screenshot-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.15);
}

.screenshot-title {
    font-size: 18px;
    font-weight: 600;
    color: #2a3f54;
    margin-bottom: 10px;
    border-bottom: 2px solid #3498db;
    padding-bottom: 8px;
}

.screenshot-description {
    font-size: 14px;
    color: #555;
    margin-bottom: 15px;
}

.screenshot-image {
    width: 100%;
    border: 1px solid #ddd;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.screenshot-image:hover {
    transform: scale(1.02);
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

/* Estilo para os atalhos de teclado e dicas */
.keyboard-shortcut {
    display: inline-block;
    background-color: #f1f1f1;
    border: 1px solid #ddd;
    border-radius: 3px;
    padding: 2px 5px;
    font-family: monospace;
    font-size: 12px;
    box-shadow: 0 1px 2px rgba(0,0,0,0.1);
}

/* Exemplo de uso para a página de ajuda */
.example-container {
    background-color: #f9f9f9;
    border-radius: 8px;
    padding: 20px;
    margin: 20px 0;
    border-left: 4px solid #3498db;
}

.example-title {
    font-size: 18px;
    font-weight: 600;
    color: #2a3f54;
    margin-bottom: 15px;
}

.example-steps {
    list-style-type: none;
    padding-left: 0;
}

.example-steps li {
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
}

.example-steps li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: #3498db;
    font-weight: bold;
}

/* Estilo para vídeos tutoriais */
.video-tutorial {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    padding: 20px;
    margin: 30px 0;
}

.video-title {
    font-size: 20px;
    font-weight: 600;
    color: #2a3f54;
    margin-bottom: 15px;
}

.video-description {
    font-size: 14px;
    color: #555;
    margin-bottom: 20px;
}

/* Estilo para accordion de perguntas frequentes */
.faq-accordion {
    margin: 30px 0;
}

.faq-question {
    background-color: #f8f9fa;
    padding: 15px;
    border-radius: 5px;
    margin-bottom: 5px;
    cursor: pointer;
    position: relative;
    font-weight: 600;
    color: #2a3f54;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background-color: #e9ecef;
}

.faq-question:after {
    content: "+";
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 20px;
    color: #3498db;
}

.faq-question.active:after {
    content: "-";
}

.faq-answer {
    padding: 15px;
    background-color: #fff;
    border-radius: 0 0 5px 5px;
    margin-bottom: 15px;
    display: none;
    border-left: 2px solid #3498db;
}

/* Estilo para notas de versão */
.version-history {
    background-color: #f8f9fa;
    border-radius: 8px;
    padding: 20px;
    margin: 30px 0;
}

.version-item {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #ddd;
}

.version-number {
    font-size: 18px;
    font-weight: 600;
    color: #2a3f54;
    margin-bottom: 10px;
}

.version-date {
    font-size: 14px;
    color: #777;
    margin-bottom: 15px;
}

.version-changes {
    list-style-type: none;
    padding-left: 0;
}

.version-changes li {
    margin-bottom: 8px;
    padding-left: 20px;
    position: relative;
}

.version-changes li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #3498db;
    font-weight: bold;
}

/* Estilos para menu lateral fixo */
.sidebar-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 280px;
    height: 100vh;
    background-color: #2a3f54;
    padding-top: 20px;
    z-index: 1000;
    overflow-y: auto;
    transition: all 0.3s ease;
    box-shadow: 3px 0 10px rgba(0,0,0,0.1);
    scrollbar-width: thin;
    scrollbar-color: #1a2d40 #2a3f54;
}

.sidebar-menu .logo-container {
    text-align: center;
    padding: 10px 20px;
    margin-bottom: 20px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.sidebar-menu .logo-container img {
    max-width: 120px;
    height: auto;
}

.sidebar-menu .menu-title {
    color: #fff;
    padding: 15px 20px;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
    border-bottom: 1px solid rgba(255,255,255,0.15);
    text-align: center;
    letter-spacing: 0.5px;
    text-shadow: 1px 1px 2px rgba(255, 249, 249, 0.2);
}

.sidebar-menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sidebar-menu ul li {
    width: 100%;
}

.sidebar-menu ul li a {
    display: block;
    color: #fff;
    padding: 12px 20px;
    text-decoration: none;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
    font-size: 15px;
    position: relative;
    margin: 2px 0;
}

.sidebar-menu ul li a:hover {
    background-color: rgba(255,255,255,0.1);
    border-left-color: #3498db;
    padding-left: 25px;
    color: #3498db;
}

.sidebar-menu ul li a.active {
    background-color: rgba(255,255,255,0.15);
    border-left-color: #3498db;
    color: #3498db;
    font-weight: bold;
}

.sidebar-menu ul li i {
    margin-right: 10px;
    width: 20px;
    text-align: center;
}

.sidebar-menu .btn-toggle {
    display: none;
    position: fixed;
    top: 20px;
    left: 20px;
    background-color: #3498db;
    color: white;
    border: none;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    text-align: center;
    line-height: 45px;
    font-size: 18px;
    cursor: pointer;
    z-index: 1001;
    box-shadow: 0 3px 8px rgba(0,0,0,0.3);
    transition: all 0.3s ease;
}

.content-wrapper {
    margin-left: 280px;
    padding: 20px;
    transition: all 0.3s ease;
    min-height: 100vh;
}

/* Personalização da barra de rolagem do menu */
.sidebar-menu::-webkit-scrollbar {
    width: 6px;
}

.sidebar-menu::-webkit-scrollbar-track {
    background: #2a3f54;
}

.sidebar-menu::-webkit-scrollbar-thumb {
    background-color: #1a2d40;
    border-radius: 3px;
}

.sidebar-menu::-webkit-scrollbar-thumb:hover {
    background-color: #3498db;
}

/* Estilos para telas menores */
@media (max-width: 991px) {
    .sidebar-menu {
        width: 250px;
        transform: translateX(-100%);
        box-shadow: 5px 0 15px rgba(0,0,0,0.2);
    }
    
    .sidebar-menu.active {
        transform: translateX(0);
    }
    
    .content-wrapper {
        margin-left: 0;
        width: 100%;
    }
    
    .sidebar-menu .btn-toggle {
        display: block;
        position: fixed;
        top: 20px;
        left: 20px;
        background-color: #3498db;
        color: white;
        border: none;
        width: 45px;
        height: 45px;
        border-radius: 50%;
        text-align: center;
        line-height: 45px;
        cursor: pointer;
        z-index: 1001;
        box-shadow: 0 3px 8px rgba(0,0,0,0.3);
        transition: all 0.3s ease;
    }
    
    .sidebar-menu .btn-toggle.active {
        left: 260px;
        transform: rotate(90deg);
    }
}

/* Botão voltar ao topo */
.back-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #3498db;
    color: white;
    width: 40px;
    height: 40px;
    text-align: center;
    line-height: 40px;
    border-radius: 50%;
    cursor: pointer;
    opacity: 0.8;
    transition: all 0.3s;
    display: none;
    z-index: 999;
}

.back-to-top:hover {
    opacity: 1;
    transform: translateY(-3px);
}
