/* USER GUIDE ADDON STYLES */
/* Estilos para os elementos do guia do usuário */

/* Botão do User Guide no cabeçalho */
.user-guide-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1rem;
    margin-right: 1rem;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 8px;
    color: white;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    font-family: inherit;
    line-height: 1;
    vertical-align: middle;
}

.user-guide-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-1px);
}

.user-guide-btn svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

/* Seção de ajuda */
.help-section {
    margin: 3rem auto 2rem auto;
    padding: 0 1rem;
    max-width: 1200px;
    width: 100%;
    box-sizing: border-box;
}

.help-card {
    display: flex;
    align-items: flex-start;
    gap: 1.3rem;
    background: linear-gradient(135deg, ##f2f2f2 0%, #d7fade 100%);
    border: 1px solid #00B04F;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    font-family: inherit;
}

.help-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.help-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background: #00B04F;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    margin-top: 0.25rem;
}

.help-content {
    flex: 1;
}

.help-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: #00B04F;
    margin: 0 0 1rem 0;
    font-family: inherit;
    line-height: 1.1;
}

.help-description {
    font-size: 0.9rem;
    line-height: 1.4;
    color: #424242;
    margin: 0 0 1.5rem 0;
    font-family: inherit;
}

.help-download-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: #00B04F;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    font-family: inherit;
    line-height: 1;
}

.help-download-btn:hover {
    background: #00B04F;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 176, 79, 0.3);
}

.help-download-btn svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

/* Responsividade */
@media (max-width: 768px) {
    .user-guide-btn span {
        display: none;
    }
    
    .user-guide-btn {
        padding: 0.6rem;
        margin-right: 0.5rem;
    }
    
    .help-card {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem;
    }
    
    .help-icon {
        align-self: center;
        margin-top: 0;
    }
    
    .help-title {
        font-size: 1.25rem;
    }
    
    .help-description {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .help-section {
        margin: 2rem auto 1rem auto;
        padding: 0 0.5rem;
    }
    
    .help-card {
        padding: 1rem;
    }
    
    .help-download-btn {
        width: 100%;
        justify-content: center;
    }
}
